'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Deck13 Interactive

Deck13 Interactive is a German video game company based in Frankfurt, Germany. They are best known for adventure games like Ankh, Ankh: Heart of Osiris and Jack Keane.

History

Prior to the founding of Deck13, the company's founders had been active in the games market for four years with the company Artex Software which focused on the development of games for RISC OS. After Deck13 Interactive was founded in 2001, the tactical action shooter Stealth Combat was released for Microsoft Windows. The label Artex Software is still being used for the publishing of low budget and special interest games.

In 2005, the humorous adventure game Ankh was released, which was a remake of the 1997 game Ankh: The Tales of Mystery by Artex Software. As the product sold very well and won several awards (especially in Germany), the sequel Ankh: The Heart of Osiris was produced and released almost exactly one year later, reusing elements of the previous title. In August 2007, the adventure game Jack Keane was released which was similar to the Ankh series in terms of graphics and gameplay but which was set in England and colonial India. The third part of the Ankh series, The Battle of the Gods, was released in Germany on November 19, 2007. One of their latest games, the role-playing game called Venetica was released in September 2009 and was the first RPG to be published by the company. Afterwards, Deck13 Interactive was working on Blood Knights, a comic hack and slash for Microsoft Windows and Xbox 360 which was released in 2013 as well as on a yet not announced multiplatform title.

Podcasts:

  • 【Atlas Fallen】初見攻略 セロスの災難(ハード) | PS5

    発売から一年間寝かせてついに始動 ■ゲーム情報 タイトル:Atlas Fallen(アトラスフォールン) ジャンル:アクションRPG プレイ人数:1人(オンライン時1~2人) © 2023 Atlas Fallen, a game developed by Deck13 Interactive and published by Focus Entertainment. Atlas Fallen, Focus Entertainment, Deck13 Interactive and their respective logos are trademarks or registered trademarks. All other trademarks, registered trademarks or their logos belong to their respective owners. All rights reserved. ★メンバーシップ導入しました(2024/5/30~) メンバー加入して応援して頂けると嬉しいです。

    published: 02 Sep 2024
  • The Making of Atlas Fallen - Behind the Scenes of Deck13 Interactive

    Meet the team behind Atlas Fallen, learn about our creative journey and the vast desert world of Atlas. We let you in on our inspirations and share our favorite aspects of the game! Pre-Order Atlas Fallen and get the Ruin Rising Pack Steam: https://store.steampowered.com/app/1230530/Atlas_Fallen/ PlayStation: https://store.playstation.com/de-de/concept/10002689/ Xbox: https://www.xbox.com/de-DE/games/store/atlas-fallen/9pcq7jrjvbvd ________________________________________________________________________________________ Deck13 on Social Media: Twitch - https://www.twitch.tv/deck13interactive Twitter: https://twitter.com/Deck13_de Indie Twitter: https://twitter.com/Deck13Spotlight Instagram: https://www.instagram.com/deck13interactive/ Facebook: https://www.facebook.com/deck13.interactive...

    published: 13 Jul 2023
  • Focus Home Interactive / Deck13 Interactive

    Taken from The Surge.

    published: 05 Jan 2019
  • The Surge | The Good, the Bad, and the Augmented Trailer | Deck13 Interactive

    This is the launch trailer for The Good, the Bad, and the Augmented - the latest DLC expansion for action role-playing game The Surge. The Good, the Bad, and the Augmented expansion is available now. The Surge - Augmented Edition includes the game and all its DLC (A Walk in the Park, and The Good, the Bad, and the Augmented) and is scheduled to be released on 16th October. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge is available for PlayStation 4, Xbox One, and PC. The Surge: Website | http://thesurge-game.com/en Game page | https://www.deck13.de/company/games/the-surge/ Game page | https://focus-home.com/games/the-surge Twitter | https://twitter.com/thesurgegame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.faceboo...

    published: 02 Oct 2018
  • CI Games / Deck13 Interactive

    Taken from Lords of the Fallen.

    published: 11 Oct 2016
  • The Surge 2 | The Kraken Expansion Trailer | Deck13 Interactive

    This is a trailer for action role-playing game The Surge 2 and the Kraken expansion. The Surge 2, developed by Deck13 Interactive and published by Focus Home Interactive, is available for PlayStation 4, Xbox One, and Windows. The Kraken expansion is available now and the Premium Edition of The Surge 2 includes the game and all DLC. The Surge 2: Website | http://thesurge-game.com/en Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter....

    published: 16 Jan 2020
  • The Surge 2 | Story Trailer | Deck13 Interactive

    This is a story trailer for upcoming action role-playing game The Surge 2. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge 2 will be released worldwide on 24th September for PlayStation 4, Xbox One, and Windows. The Surge 2: Website | http://thesurge-game.com/en Game page | https://focus-home.com/games/the-surge-2 Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.facebook.com/deck13.interactive Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitte...

    published: 13 Sep 2019
  • The Surge 2 | 'Essential Tips' Trailer | Deck13 Interactive

    This is an 'essential tips' trailer for action role-playing game The Surge 2. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge 2 is available for PlayStation 4, Xbox One, and Windows. The Surge 2: Website | http://thesurge-game.com/en Game page | https://focus-home.com/games/the-surge-2 Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.facebook.com/deck13.interactive Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter.com/Gamin...

    published: 02 Oct 2019
  • LIVE - #xbox Atlas Fallen #7

    Canal Twitch : / 5euross Plataforma X: / playdojoo ┌───── •✧✧• ─────┐ Atlas Fallen └───── •✧✧• ─────┘ Atlas Fallen é um videogame RPG de ação desenvolvido pela Deck13 Interactive e publicado pela Focus Entertainment. O jogo foi lançado para PlayStation 5, Windows e Xbox Series X/S em 10 de agosto de 2023. Recebeu críticas mistas dos críticos.

    published: 02 Sep 2024
  • GAMESCOM 2020?! PLAY our GAMES from HOME! - Deck13 Inside: Episode 25

    Come visit our booths at this years gamescom! All from the comfort of your homes - pants are optional. We're looking forward to you getting your hands on Chained Echoes and Vesper for the first time ever. Also our gems CrossCode and The Shattering are making an appearance, so you'll have another shoot to check them out! Visit our booths between August 27th and 30th: https://online.indiearenabooth.com/ Play the Demos between August 26th and September 7th! Vesper Demo: https://store.steampowered.com/app/1187840/Vesper/ Chained Echoes Demo: https://store.steampowered.com/app/1229240/Chained_Echoes/ The Shattering Demo: https://store.steampowered.com/app/596000/The_Shattering/ CrossCode Demo: https://store.steampowered.com/app/368340/CrossCode/ Twitch: https://www.twitch.tv/deck13interactiv...

    published: 26 Aug 2020
【Atlas Fallen】初見攻略 セロスの災難(ハード) | PS5
0:00

【Atlas Fallen】初見攻略 セロスの災難(ハード) | PS5

  • Order:
  • Duration: 0:00
  • Uploaded Date: 02 Sep 2024
  • views: 834
発売から一年間寝かせてついに始動 ■ゲーム情報 タイトル:Atlas Fallen(アトラスフォールン) ジャンル:アクションRPG プレイ人数:1人(オンライン時1~2人) © 2023 Atlas Fallen, a game developed by Deck13 Interactive and published by Focus Entertainment. Atlas Fallen, Focus Entertainment, Deck13 Interactive and their respective logos are trademarks or registered trademarks. All other trademarks, registered trademarks or their logos belong to their respective owners. All rights reserved. ★メンバーシップ導入しました(2024/5/30~) メンバー加入して応援して頂けると嬉しいです。
https://wn.com/【Atlas_Fallen】初見攻略_セロスの災難(ハード)_|_Ps5
The Making of Atlas Fallen - Behind the Scenes of Deck13 Interactive
7:38

The Making of Atlas Fallen - Behind the Scenes of Deck13 Interactive

  • Order:
  • Duration: 7:38
  • Uploaded Date: 13 Jul 2023
  • views: 1755
Meet the team behind Atlas Fallen, learn about our creative journey and the vast desert world of Atlas. We let you in on our inspirations and share our favorite aspects of the game! Pre-Order Atlas Fallen and get the Ruin Rising Pack Steam: https://store.steampowered.com/app/1230530/Atlas_Fallen/ PlayStation: https://store.playstation.com/de-de/concept/10002689/ Xbox: https://www.xbox.com/de-DE/games/store/atlas-fallen/9pcq7jrjvbvd ________________________________________________________________________________________ Deck13 on Social Media: Twitch - https://www.twitch.tv/deck13interactive Twitter: https://twitter.com/Deck13_de Indie Twitter: https://twitter.com/Deck13Spotlight Instagram: https://www.instagram.com/deck13interactive/ Facebook: https://www.facebook.com/deck13.interactive/ Discord - https://discord.gg/9SUYSSh
https://wn.com/The_Making_Of_Atlas_Fallen_Behind_The_Scenes_Of_Deck13_Interactive
Focus Home Interactive / Deck13 Interactive
0:15

Focus Home Interactive / Deck13 Interactive

  • Order:
  • Duration: 0:15
  • Uploaded Date: 05 Jan 2019
  • views: 238
Taken from The Surge.
https://wn.com/Focus_Home_Interactive_Deck13_Interactive
The Surge | The Good, the Bad, and the Augmented Trailer | Deck13 Interactive
1:19

The Surge | The Good, the Bad, and the Augmented Trailer | Deck13 Interactive

  • Order:
  • Duration: 1:19
  • Uploaded Date: 02 Oct 2018
  • views: 15
This is the launch trailer for The Good, the Bad, and the Augmented - the latest DLC expansion for action role-playing game The Surge. The Good, the Bad, and the Augmented expansion is available now. The Surge - Augmented Edition includes the game and all its DLC (A Walk in the Park, and The Good, the Bad, and the Augmented) and is scheduled to be released on 16th October. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge is available for PlayStation 4, Xbox One, and PC. The Surge: Website | http://thesurge-game.com/en Game page | https://www.deck13.de/company/games/the-surge/ Game page | https://focus-home.com/games/the-surge Twitter | https://twitter.com/thesurgegame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.facebook.com/deck13.interactive Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge #Deck13Interactive #FocusHomeInteractive #Deck13 ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter.com/GamingAudioNews/ ----------
https://wn.com/The_Surge_|_The_Good,_The_Bad,_And_The_Augmented_Trailer_|_Deck13_Interactive
CI Games / Deck13 Interactive
0:27

CI Games / Deck13 Interactive

  • Order:
  • Duration: 0:27
  • Uploaded Date: 11 Oct 2016
  • views: 321
Taken from Lords of the Fallen.
https://wn.com/Ci_Games_Deck13_Interactive
The Surge 2 | The Kraken Expansion Trailer | Deck13 Interactive
1:22

The Surge 2 | The Kraken Expansion Trailer | Deck13 Interactive

  • Order:
  • Duration: 1:22
  • Uploaded Date: 16 Jan 2020
  • views: 39
This is a trailer for action role-playing game The Surge 2 and the Kraken expansion. The Surge 2, developed by Deck13 Interactive and published by Focus Home Interactive, is available for PlayStation 4, Xbox One, and Windows. The Kraken expansion is available now and the Premium Edition of The Surge 2 includes the game and all DLC. The Surge 2: Website | http://thesurge-game.com/en Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter.com/GamingAudioNews/ ----------
https://wn.com/The_Surge_2_|_The_Kraken_Expansion_Trailer_|_Deck13_Interactive
The Surge 2 | Story Trailer | Deck13 Interactive
0:59

The Surge 2 | Story Trailer | Deck13 Interactive

  • Order:
  • Duration: 0:59
  • Uploaded Date: 13 Sep 2019
  • views: 8
This is a story trailer for upcoming action role-playing game The Surge 2. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge 2 will be released worldwide on 24th September for PlayStation 4, Xbox One, and Windows. The Surge 2: Website | http://thesurge-game.com/en Game page | https://focus-home.com/games/the-surge-2 Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.facebook.com/deck13.interactive Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter.com/GamingAudioNews/ ----------
https://wn.com/The_Surge_2_|_Story_Trailer_|_Deck13_Interactive
The Surge 2 | 'Essential Tips' Trailer | Deck13 Interactive
2:37

The Surge 2 | 'Essential Tips' Trailer | Deck13 Interactive

  • Order:
  • Duration: 2:37
  • Uploaded Date: 02 Oct 2019
  • views: 3
This is an 'essential tips' trailer for action role-playing game The Surge 2. Developed by Deck13 Interactive and published by Focus Home Interactive, The Surge 2 is available for PlayStation 4, Xbox One, and Windows. The Surge 2: Website | http://thesurge-game.com/en Game page | https://focus-home.com/games/the-surge-2 Twitter | https://twitter.com/TheSurgeGame Deck13 Interactive: Website | https://www.deck13.com/ Facebook | https://www.facebook.com/deck13.interactive Twitter | https://twitter.com/Deck13_de Focus Home Interactive: Website | http://www.focus-home.com/ Twitter | https://twitter.com/FocusHome #TheSurge2 #Deck13Interactive #FocusHomeInteractive ---------- Gaming Audio News: Visit our website | https://gamingaudionews.com/ Follow us on Twitter | https://twitter.com/GamingAudioNews/ ----------
https://wn.com/The_Surge_2_|_'Essential_Tips'_Trailer_|_Deck13_Interactive
LIVE - #xbox  Atlas Fallen #7
7:37:16

LIVE - #xbox Atlas Fallen #7

  • Order:
  • Duration: 7:37:16
  • Uploaded Date: 02 Sep 2024
  • views: 33
Canal Twitch : / 5euross Plataforma X: / playdojoo ┌───── •✧✧• ─────┐ Atlas Fallen └───── •✧✧• ─────┘ Atlas Fallen é um videogame RPG de ação desenvolvido pela Deck13 Interactive e publicado pela Focus Entertainment. O jogo foi lançado para PlayStation 5, Windows e Xbox Series X/S em 10 de agosto de 2023. Recebeu críticas mistas dos críticos.
https://wn.com/Live_Xbox_Atlas_Fallen_7
GAMESCOM 2020?! PLAY our GAMES from HOME! - Deck13 Inside: Episode 25
7:37

GAMESCOM 2020?! PLAY our GAMES from HOME! - Deck13 Inside: Episode 25

  • Order:
  • Duration: 7:37
  • Uploaded Date: 26 Aug 2020
  • views: 1335
Come visit our booths at this years gamescom! All from the comfort of your homes - pants are optional. We're looking forward to you getting your hands on Chained Echoes and Vesper for the first time ever. Also our gems CrossCode and The Shattering are making an appearance, so you'll have another shoot to check them out! Visit our booths between August 27th and 30th: https://online.indiearenabooth.com/ Play the Demos between August 26th and September 7th! Vesper Demo: https://store.steampowered.com/app/1187840/Vesper/ Chained Echoes Demo: https://store.steampowered.com/app/1229240/Chained_Echoes/ The Shattering Demo: https://store.steampowered.com/app/596000/The_Shattering/ CrossCode Demo: https://store.steampowered.com/app/368340/CrossCode/ Twitch: https://www.twitch.tv/deck13interactive Twitter: https://twitter.com/Deck13_de Indie Twitter: https://twitter.com/Deck13Spotlight Instagram: https://www.instagram.com/deck13interactive/ Facebook: https://www.facebook.com/deck13.interactive/ 00:00 Kick-off 00:34 Super serious Deck13 news 01:51 Gamescom plans 02:27 Chained Echoes 03:02 Vesper 03:35 CrossCode 04:12 The Shattering 04:40 Gamescom Guide 05:58 Farewell
https://wn.com/Gamescom_2020_Play_Our_Games_From_Home_Deck13_Inside_Episode_25
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 7:59:30

【Atlas Fallen】初見攻略 セロスの災難(ハード) | PS5

発売から一年間寝かせてついに始動 ■ゲーム情報 タイトル:Atlas Fallen(アトラスフォールン) ジャンル:アクションRPG プレイ人数:1人(オンライン時1~2人) © 2023 Atlas Fallen, a game developed by Deck13 Interactive and published by Focus Entertainment. Atlas Fallen, Focus Entertainment, Deck13 Interactive and their respective logos are trademarks or registered trademarks. All other trademarks, registered trademarks or their logos belong to their respective owners. All rights reserved. ★メンバーシップ導入しました(2024/5/30~) メンバー加入して応援して頂けると嬉しいです。
0:00
【Atlas Fallen】初見攻略 セロスの災難(ハード) | PS5
発売から一年間寝かせてついに始動 ■ゲーム情報 タイトル:Atlas Fallen(アトラスフォールン) ジャンル:アクションRPG プレイ人数:1人(オンライン時1~2人) ...
published: 02 Sep 2024
Play in Full Screen
7:38
The Making of Atlas Fallen - Behind the Scenes of Deck13 Interactive
Meet the team behind Atlas Fallen, learn about our creative journey and the vast desert wo...
published: 13 Jul 2023
Play in Full Screen
0:15
Focus Home Interactive / Deck13 Interactive
Taken from The Surge.
published: 05 Jan 2019
Play in Full Screen
1:19
The Surge | The Good, the Bad, and the Augmented Trailer | Deck13 Interactive
This is the launch trailer for The Good, the Bad, and the Augmented - the latest DLC expan...
published: 02 Oct 2018
Play in Full Screen
0:27
CI Games / Deck13 Interactive
Taken from Lords of the Fallen.
published: 11 Oct 2016
Play in Full Screen
1:22
The Surge 2 | The Kraken Expansion Trailer | Deck13 Interactive
This is a trailer for action role-playing game The Surge 2 and the Kraken expansion. The ...
published: 16 Jan 2020
Play in Full Screen
0:59
The Surge 2 | Story Trailer | Deck13 Interactive
This is a story trailer for upcoming action role-playing game The Surge 2. Developed by D...
published: 13 Sep 2019
Play in Full Screen
2:37
The Surge 2 | 'Essential Tips' Trailer | Deck13 Interactive
This is an 'essential tips' trailer for action role-playing game The Surge 2. Developed b...
published: 02 Oct 2019
Play in Full Screen
7:37:16
LIVE - #xbox Atlas Fallen #7
Canal Twitch : / 5euross Plataforma X: / playdojoo ┌───── •✧✧...
published: 02 Sep 2024
Play in Full Screen
7:37
GAMESCOM 2020?! PLAY our GAMES from HOME! - Deck13 Inside: Episode 25
Come visit our booths at this years gamescom! All from the comfort of your homes - pants a...
published: 26 Aug 2020
Play in Full Screen

Deck13 Interactive

Deck13 Interactive is a German video game company based in Frankfurt, Germany. They are best known for adventure games like Ankh, Ankh: Heart of Osiris and Jack Keane.

History

Prior to the founding of Deck13, the company's founders had been active in the games market for four years with the company Artex Software which focused on the development of games for RISC OS. After Deck13 Interactive was founded in 2001, the tactical action shooter Stealth Combat was released for Microsoft Windows. The label Artex Software is still being used for the publishing of low budget and special interest games.

In 2005, the humorous adventure game Ankh was released, which was a remake of the 1997 game Ankh: The Tales of Mystery by Artex Software. As the product sold very well and won several awards (especially in Germany), the sequel Ankh: The Heart of Osiris was produced and released almost exactly one year later, reusing elements of the previous title. In August 2007, the adventure game Jack Keane was released which was similar to the Ankh series in terms of graphics and gameplay but which was set in England and colonial India. The third part of the Ankh series, The Battle of the Gods, was released in Germany on November 19, 2007. One of their latest games, the role-playing game called Venetica was released in September 2009 and was the first RPG to be published by the company. Afterwards, Deck13 Interactive was working on Blood Knights, a comic hack and slash for Microsoft Windows and Xbox 360 which was released in 2013 as well as on a yet not announced multiplatform title.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×