'+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; })); }); -->

List of war deities

A war deity is a god or goddess in mythology associated with war, combat, or bloodshed. They occur commonly in both monotheistic and polytheistic religions.

Unlike most gods and goddesses in polytheistic religions, monotheistic deities have traditionally been portrayed in their mythologies as commanding war in order to spread their religion. (The intimate connection between "holy war" and the "one true god" belief of monotheism has been noted by many scholars; including Jonathan Kirsch in his book God Against The Gods: The History of the War Between Monotheism and Polytheism and Joseph Campbell in The Masks of God, Vol. 3: Occidental Mythology.)

The following is a partial list of war deities.

African mythology

  • Agurzil, Berber god of war
  • Apedemak, Nubian lion-headed warrior god
  • Kokou, powerful Yoruba warrior god
  • Maher, Ethiopian god of war
  • Ogoun, Yoruba deity who presides over fire, iron, hunting, politics, and war
  • Oya, Yoruba warrior-goddess of the Niger River
  • Armenian mythology

    God of War (video game)

    God of War is a third-person action-adventure video game developed by Santa Monica Studio and published by Sony Computer Entertainment (SCE). First released on March 22, 2005, for the PlayStation 2 (PS2) console, it is the first installment in the series of the same name and the third chronologically. Loosely based on Greek mythology, it is set in ancient Greece with vengeance as its central motif. The player controls the protagonist Kratos, a Spartan warrior who serves the Olympian Gods. The goddess Athena tasks Kratos with killing Ares, the God of War, who tricked Kratos into killing his own wife and child. As Ares besieges Athens out of hatred for Athena, Kratos embarks on a quest to find the one object capable of stopping the god: the legendary Pandora's Box.

    The gameplay of God of War focuses on combo-based combat, achieved through the player's main weapon—the Blades of Chaos—and a secondary weapon acquired later in the game. It features quick time events that require the player to complete various game controller actions in a timed sequence to defeat stronger enemies and bosses. The player can use up to four magical attacks and a power-enhancing ability as alternative combat options. It also features puzzles and platforming elements.

    God of War: Chains of Olympus

    God of War: Chains of Olympus is a third-person action-adventure video game developed by Ready at Dawn and Santa Monica Studio, and published by Sony Computer Entertainment (SCE). It was first released for the PlayStation Portable (PSP) handheld console on March 4, 2008. The game is the fourth installment in the God of War series, the second chronologically, and a prequel to the original God of War. It is loosely based on Greek mythology and set in ancient Greece, with vengeance as its central motif. The player controls Kratos, a Spartan warrior who serves the Olympian Gods. Kratos is guided by the goddess Athena, who instructs him to find the Sun God Helios, as the Dream God Morpheus has caused many of the gods to slumber in Helios' absence. With the power of the Sun and the aid of the Titan Atlas, Morpheus and the Queen of the Underworld Persephone intend to destroy the Pillar of the World and in turn Olympus.

    The gameplay is similar to the previous installments, with a focus on combo-based combat, achieved through the player's main weapon—the Blades of Chaos—and secondary weapons acquired throughout the game. It features quick time events that require the player to complete game controller actions in a timed sequence to defeat stronger enemies and bosses. The player can use up to three magical attacks as alternative combat options. The game also features puzzles and platforming elements. The control setup was reconfigured for the PSP, as it has fewer buttons than the PlayStation 2's controller. Ready at Dawn's solution for the controls received praise from critics.

    Retrospective (disambiguation)

    A retrospective looks back at events that have taken place. The term may also refer to:

    Albums

  • Retrospective: The Best of Buffalo Springfield, a 1969 album
  • Retrospective: the Music of Mad Men
  • Retrospective (Rosanne Cash album), 1995 compilation
  • Retrospective (Ghoti Hook album)
  • Retrospective (Indigo Girls album)
  • Retrospective: 1995–2005 by Natalie Merchant
  • Retrospective (Poco album)
  • Retrospective (Red House Painters album)
  • Retrospective (Rinôçérôse album), 1997
  • Retrospective I and Retrospective II by Rush
  • Retrospective (X Marks the Pedwalk album)
  • Retrospective (Bunny Wailer album), 1995
  • Retrospective (Leaether Strip album)
  • A Retrospective may refer to:

  • A Retrospective (KRS-One album)
  • A Retrospective (EP), a 2004 EP with songs written by Pamela Moore and, among others, Radar
  • A Retrospective (Lou Reed album)
  • A Retrospective (Saetia album), 2001
  • A Retrospective (Lynyrd Skynyrd album)
  • A Retrospective (Pink Martini album), 2011
  • A Retrospective, a 1977 album by Linda Ronstadt
  • See also

  • Retrospective aspect, another name for perfect aspect in linguistics
  • A Retrospective (Lynyrd Skynyrd album)

    A Retrospective is a compilation album by American rock group Lynyrd Skynyrd.

    Reception

    The Allmusic review by Thom Jurek awarded the album 3 stars stating "As single-disc budget compilations go, this is a solid one so far as it goes. It contains most of the band's biggest hits and only contains two notorious omissions, since "Tuesday's Gone," and "That Smell" aren't here. Other than that, it's got what most casual listeners need of their biggest songs: "Sweet Home Alabama," the nine-minute studio version of "Free Bird," "Saturday Night Special," "You've Got That Right," "Gimme Three Steps." and "What's Your Name." Of course there have been better comps issued since 1999, but this is OK, and a cheap stopgap. ".

    Track listing

  • "Sweet Home Alabama" (Ed King, Gary Rossington, Ronnie Van Zant) - 4:45
  • "Free Bird" (Allen Collins, Ronnie Van Zant) - 9:10
  • "Saturday Night Special" (Ed King, Ronnie Van Zant) - 5:09
  • "Double Trouble" (Allen Collins, Ronnie Van Zant) - 2:50
  • Linda Ronstadt

    Linda Maria Ronstadt (born July 15, 1946) is an American popular music singer. She has earned 11 Grammy Awards, three American Music Awards, two Academy of Country Music awards, an Emmy Award, an ALMA Award, and numerous United States and internationally certified gold, platinum and multiplatinum albums. She has also earned nominations for a Tony Award and a Golden Globe award. Ronstadt was inducted into the Rock and Roll Hall of Fame in April 2014. On July 28, 2014, she was awarded the National Medal of Arts and Humanities.

    In total, she has released over 30 studio albums and 15 compilation or greatest hits albums. Ronstadt charted 38 Billboard Hot 100 singles, with 21 reaching the top 40, 10 in the top 10, three at number 2, and "You're No Good" at number 1. This success did not translate to the UK, with only her single "Blue Bayou" reaching the UK Top 40. Her duet with Aaron Neville, "Don't Know Much", peaked at number 2 in December 1989. In addition, she has charted 36 albums, 10 top-10 albums and three number 1 albums on the Billboard Pop Album Chart. Her autobiography, Simple Dreams: A Musical Memoir, was released in September 2013. It debuted in the Top 10 on The New York Times Best Sellers List.

    Podcasts:

    • 11 Gods of War from 11 Different Mythologies

      Today I will introduce you to 11 gods of war, from 11 different mythologies: Buluc Chabtan - Mayan Mythology Ares - Greek Mythology Huitzilopochtli - Aztec Mythology Montu - Egyptian Mythology Tyr - Norse Mythology Svetovid - Slavic Mythology Camulus - Celtic Mythology Guan Yu (Guandi) - Chinese Mythology Ku - Hawaiian Mythology ISHTAR - Sumerian Mythology Hachiman - Japanese Mythology Subscribe to my channel for more mythology related videos: https://www.youtube.com/c/MythosTheHistorian/?sub_confirmation=1 Follow Mythos The Historian also on Facebook: https://www.facebook.com/MythosTheHistorian Music: Martian Cowboy by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 licence. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty...

      published: 28 Nov 2021
    • the complete list of war deities pt 2 - Greek Gods

      published: 13 May 2020
    • Roman Gods vs Greek Gods - Similarities and Differences

      This is an incursion through Roman mythology and Greek mythology to see the similarties and differences between Roman Gods and Greek Gods. I am gonna make a comparison between the following Gods and Goddesses from Roman and Greek Pantheon: Juno vs Hera; Jupiter vs Zeus; Neptune vs Poseidon; Venus vs Aphrodite; Diana vs Artemis; Mars vs Ares; Mercury vs Hermes; Pluto vs Hades; Vulcan vs Hephaestus; Bacchus vs Dionysus; Minerva vs Athena; and.. Apollo. If You are interested in other Gods from Greek Pantheon, check these videos: https://www.youtube.com/watch?v=Z7FH4zFmLBE https://www.youtube.com/watch?v=kRXnFqISZ44 https://www.youtube.com/watch?v=iRQtQcQ0eu0 https://www.youtube.com/watch?v=R5vx9aeG6Lc https://www.youtube.com/watch?v=2MXGq88qu8s https://www.youtube.com/watch?v=TJ22lXU8E3...

      published: 05 Jun 2022
    • Top 10 Egyptian Gods and Goddesses

      Top 10 Egyptian Gods and Goddesses Subscribe http://goo.gl/Q2kKrD The list of famous Egyptian gods and goddesses you might learn about in history class includes Amun-Ra, king of the gods; Ra, god of the sun; Osiris, god of the underworld and afterlife; Isis, goddess of magic, marriage, healing and protection; Horus, god of war; and Anubis, god of the dead. Ancient Egyptians worshipped many gods and goddesses in their temples and shrines; the civilization based their religious beliefs and rituals around these deities and prayed to them for good fortune in all aspects of life. The Nile god Hapi was in charge of making sure the Nile River flooded every year, for example, while Hathor helped with women’s fertility. Lesser-known gods and goddesses from Ancient Egyptian mythology are Sekhmet...

      published: 03 Aug 2016
    • Most Powerful Greek Gods (Ranked)

      You've heard their names before, Zeus, Hades, but what do you really know about the Greek gods, and who is the most powerful of them? Check out today's epic new video about the most powerful gods in Greek mythology. 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/sXCCRWuz All videos are based on publicly available information unless otherwise noted.

      published: 28 Jul 2022
    • Historians React to God Of War III

      In this episode of Experts React, Historians and mythology experts Brad and Kyle are here to cast their well-trained eyes over God of War III. They'll fill us in on how close the developers came to the 'real' Greek mythology and how likely it is that Kratos could cause this amount of havoc among the Pantheon. As with previous games, God of War III is set in an alternate version of ancient Greece populated by Olympian gods, Titans, heroes, and other characters from Greek mythology. The events of the game are set between 2007's God of War II and 2018's God of War. The game is set across several locations on Mount Olympus, including the Tomb of Ares, the ancient city of Olympia, the Path of Eos, the Labyrinth, several areas of the Palace of the Gods, such as the Forum and Hera's Gardens, and...

      published: 26 Jan 2022
    • Oldest Gods in GOW Franchise | Yours Mythically

      In this video, we're going to explore the oldest gods in the GOW Franchise! These gods date back to the beginning of time and will play a big role in the upcoming sequel to the game, God of War. If you're a fan of the GOW Franchise, be sure to check out this video! In it, we'll explore the history of the oldest gods in the game, and find out what role they'll play in the upcoming sequel. Don't miss out on this exciting video! Join our membership to get access to perks: https://www.youtube.com/channel/UC-bmkur852vEy6JuBHXlXDg/join Check out our new merch!! 👍 https://yours-mythically.creator-spring.com Support our channel 😎😁 -- Join our Patreon and check out exclusive content and get access to early releases https://www.patreon.com/yoursmythically -- Looking for great products. Have a lo...

      published: 08 Feb 2023
    • War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of game

      Complete Review of game,and show every part of how looks game: War of Deities ,with Tips for Beginners.With more advanced tips,tricks,guides,tutorials i will try to make more videos of this game.😊 If you like and find my videos helpful, useful, entertaining You can support my channel as donation on: https://ko-fi.com/igremangaming , to reward me so to i see if i done Good videos, and You can use super Thanks button on my videos, Subscribe to grow channel,hit Like, Every support is nice, Thank You. 💞✌🙂🖖 Check my videos of other interesting made games that i find out to be good to play. 😊 I hope you will find this video useful and helpful so you to see if you wanna start playing this game and with my tips and tricks to you be successful in this game. 😊 You can play this game on every mobi...

      published: 15 Jan 2022
    • Greek Gods Explained In 12 Minutes

      The Greek Gods represent humanity at its best and worst, from the violent and destructive Ares to the beautiful and seductive Aphrodite, Greek mythology demonstrates the epic power struggle between parents and children in an endless quest to gain control over the world. Tales pass down from each generation showing them to be some of the most influential deities in human history, that continue to have a significant impact to this day. Thanks for watching! Make sure to LIKE and SUBSCRIBE and comment down below what video you would like us to do next! Intro and Outro Music by: https://soundcloud.com/ryantothec Background Music: Derek & Brandon Fiechter: https://www.youtube.com/channel/UCjMZjGhrFq_4llVS_x2XJ_w https://www.youtube.com/user/dfiechter2 Stock footage by: https://www.youtub...

      published: 29 Sep 2017
    • Deities and Gods of Healing - The Complete List

      A health deity is a god or goddess in mythology or religion associated with health, healing and wellbeing. They may also be related to childbirth or Mother Goddesses. They are a common feature of polytheistic religions. African Jengu, water spirits that bring good fortune and cure disease !Xu, sky god of the Bushmen of southern Africa who is invoked in illness Sonzwaphi, deity of healing, Zulu mythology Yoruba and Afro-American Aja, spirit of the forest, the animals within it and herbal healers Babalú-Ayé, b aba lu I yeah spirit of illness and disease Erinlẹ, spirit of abundance, the healer, and Physician to the Orisha Loco, patron of healers and plants Mami Wata, a pantheon of water deities associated with healing and fertility Ọsanyìn, spirit of herbalism Sopona, god of smallpox Armen...

      published: 05 Apr 2021
    11 Gods of War from 11 Different Mythologies
    9:19

    11 Gods of War from 11 Different Mythologies

    • Order:
    • Duration: 9:19
    • Uploaded Date: 28 Nov 2021
    • views: 8300
    Today I will introduce you to 11 gods of war, from 11 different mythologies: Buluc Chabtan - Mayan Mythology Ares - Greek Mythology Huitzilopochtli - Aztec Mythology Montu - Egyptian Mythology Tyr - Norse Mythology Svetovid - Slavic Mythology Camulus - Celtic Mythology Guan Yu (Guandi) - Chinese Mythology Ku - Hawaiian Mythology ISHTAR - Sumerian Mythology Hachiman - Japanese Mythology Subscribe to my channel for more mythology related videos: https://www.youtube.com/c/MythosTheHistorian/?sub_confirmation=1 Follow Mythos The Historian also on Facebook: https://www.facebook.com/MythosTheHistorian Music: Martian Cowboy by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 licence. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100349 Artist: http://incompetech.com/ #godsofwar #godofwar #mythology
    https://wn.com/11_Gods_Of_War_From_11_Different_Mythologies
    the complete list of war deities pt 2 -  Greek Gods
    5:34

    the complete list of war deities pt 2 - Greek Gods

    • Order:
    • Duration: 5:34
    • Uploaded Date: 13 May 2020
    • views: 195
    https://wn.com/The_Complete_List_Of_War_Deities_Pt_2_Greek_Gods
    Roman Gods vs Greek Gods - Similarities and Differences
    8:50

    Roman Gods vs Greek Gods - Similarities and Differences

    • Order:
    • Duration: 8:50
    • Uploaded Date: 05 Jun 2022
    • views: 270548
    This is an incursion through Roman mythology and Greek mythology to see the similarties and differences between Roman Gods and Greek Gods. I am gonna make a comparison between the following Gods and Goddesses from Roman and Greek Pantheon: Juno vs Hera; Jupiter vs Zeus; Neptune vs Poseidon; Venus vs Aphrodite; Diana vs Artemis; Mars vs Ares; Mercury vs Hermes; Pluto vs Hades; Vulcan vs Hephaestus; Bacchus vs Dionysus; Minerva vs Athena; and.. Apollo. If You are interested in other Gods from Greek Pantheon, check these videos: https://www.youtube.com/watch?v=Z7FH4zFmLBE https://www.youtube.com/watch?v=kRXnFqISZ44 https://www.youtube.com/watch?v=iRQtQcQ0eu0 https://www.youtube.com/watch?v=R5vx9aeG6Lc https://www.youtube.com/watch?v=2MXGq88qu8s https://www.youtube.com/watch?v=TJ22lXU8E3g https://www.youtube.com/watch?v=IaCmqFSKpws https://www.youtube.com/watch?v=8QSOobjuJXI https://www.youtube.com/watch?v=SebrCcUFfdg https://www.youtube.com/watch?v=t-SueUxP8TI https://www.youtube.com/watch?v=8hNsmH4qRf0 https://www.youtube.com/watch?v=7ilVx5JmI54 https://www.youtube.com/watch?v=fND02Ywu-o0 Subscribe to my channel for more mythology related videos: https://www.youtube.com/c/MythosTheHistorian/?sub_confirmation=1 Follow Mythos The Historian also on Facebook: https://www.facebook.com/MythosTheHistorian Special thanks for the very talented artists and their artwork: https://www.deviantart.com/emmanueljulian/art/War-of-the-Gods-Hades-Throne-571525216 https://www.deviantart.com/broken-icon/art/Mars-Roman-God-of-War-323224851 If your artwork is found here, please contact me for proper credits. #mythology #greekgods #greemythology
    https://wn.com/Roman_Gods_Vs_Greek_Gods_Similarities_And_Differences
    Top 10 Egyptian Gods and Goddesses
    9:51

    Top 10 Egyptian Gods and Goddesses

    • Order:
    • Duration: 9:51
    • Uploaded Date: 03 Aug 2016
    • views: 10557078
    Top 10 Egyptian Gods and Goddesses Subscribe http://goo.gl/Q2kKrD The list of famous Egyptian gods and goddesses you might learn about in history class includes Amun-Ra, king of the gods; Ra, god of the sun; Osiris, god of the underworld and afterlife; Isis, goddess of magic, marriage, healing and protection; Horus, god of war; and Anubis, god of the dead. Ancient Egyptians worshipped many gods and goddesses in their temples and shrines; the civilization based their religious beliefs and rituals around these deities and prayed to them for good fortune in all aspects of life. The Nile god Hapi was in charge of making sure the Nile River flooded every year, for example, while Hathor helped with women’s fertility. Lesser-known gods and goddesses from Ancient Egyptian mythology are Sekhmet, Bastet, Thoth, Set, Sobek, Geb and Ptah. If you want more information about gods and goddesses, check out WatchMojo's Top 10 Greek Gods and Goddesses https://youtu.be/RId6Sv2ZAKA and Top 10 Norse Gods https://youtu.be/2njJOV76iNQ WatchMojo’s social media pages: http://www.Twitter.com/WatchMojo http://instagram.com/watchmojo http://www.Facebook.com/WatchMojo Watch on WatchMojo: http://watchmojo.com/video/id/16388/ Check out the voting page here: http://watchmojo.com/suggest/Top+10+Egyptian+Gods+and+Godesses Get WatchMojo merchandise at http://watchmojo.com/store/ WatchMojo’s ten thousand videos on Top 10 lists, Origins, Biographies, Tips, How To’s, Reviews, Commentary and more on Pop Culture, Celebrity, Movies, Music, TV, Film, Video Games, Politics, News, Comics, Superheroes. Your trusted authority on ranking Pop Culture.
    https://wn.com/Top_10_Egyptian_Gods_And_Goddesses
    Most Powerful Greek Gods (Ranked)
    25:25

    Most Powerful Greek Gods (Ranked)

    • Order:
    • Duration: 25:25
    • Uploaded Date: 28 Jul 2022
    • views: 2044846
    You've heard their names before, Zeus, Hades, but what do you really know about the Greek gods, and who is the most powerful of them? Check out today's epic new video about the most powerful gods in Greek mythology. 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/sXCCRWuz All videos are based on publicly available information unless otherwise noted.
    https://wn.com/Most_Powerful_Greek_Gods_(Ranked)
    Historians React to God Of War III
    11:17

    Historians React to God Of War III

    • Order:
    • Duration: 11:17
    • Uploaded Date: 26 Jan 2022
    • views: 299622
    In this episode of Experts React, Historians and mythology experts Brad and Kyle are here to cast their well-trained eyes over God of War III. They'll fill us in on how close the developers came to the 'real' Greek mythology and how likely it is that Kratos could cause this amount of havoc among the Pantheon. As with previous games, God of War III is set in an alternate version of ancient Greece populated by Olympian gods, Titans, heroes, and other characters from Greek mythology. The events of the game are set between 2007's God of War II and 2018's God of War. The game is set across several locations on Mount Olympus, including the Tomb of Ares, the ancient city of Olympia, the Path of Eos, the Labyrinth, several areas of the Palace of the Gods, such as the Forum and Hera's Gardens, and the Underworld and Tartarus. The Tomb of Ares—housing the former God of War's remains—and the city of Olympia lie on the sides of Mount Olympus. Just beyond the city is the Path of Eos, a hidden cavern near the foot of Olympus. The Palace of the Gods is the home of the Olympians, and features the Forum (a small coliseum), Hera's Gardens, and the chambers of Aphrodite and Poseidon. The Labyrinth is a large aerial puzzle constructed by the architect Daedalus to imprison Pandora in the Caverns of Olympus, home of Skorpius and its offspring. The Underworld, ruled by Hades and divided by the River Styx, is the realm of the dead. Hades' palace contains the remains of his wife, Persephone, whom Kratos killed in Chains of Olympus. The Underworld is also home to statues of the three Judges of the Underworld, who hold the Chain of Balance connecting the Underworld to Olympus. Tartarus is the prison of the dead where the Titan Cronos was banished after Kratos retrieved Pandora's Box from Pandora's Temple in 2005's God of War. -------------------- Kyle's Twitter: https://twitter.com/kylesmithlaird?lang=fi -------------------- 0:00 Intro 0:32 What's Up? 0:48 Gameplay 1:36 Hephaestus 2:35 Daedalus and Pandora 4:55 The Gods Unite 5:59 Cronos 7:28 Hades 7:59 Killing Helios 9:08 Hercules 10:38 Conclusion -------------------- Check out some of our past videos! Historians REACT to Omaha Beach from Call of Duty WWII | Experts React https://youtu.be/HCTdJLSicZg Experts React Playlist: https://youtube.com/playlist?list=PLGzvIvmnk2hSimNROcgMPJtZXynE8HoDI -------------------- Thanks to Video Games Source for the gameplay: https://www.youtube.com/c/VideoGamesSource -------------------- Up In My Jam (All Of A Sudden) by - Kubbi https://soundcloud.com/kubbi Creative Commons — Attribution-ShareAlike 3.0 Unported— CC BY-SA 3.0 Free Download / Stream: http://bit.ly/2JnDfCE Music promoted by Audio Library https://youtu.be/tDexBj46oNI -------------------- Stay in the loop with us on social media! Facebook: https://www.facebook.com/thebestofgaming1/ Instagram: https://www.instagram.com/gamology/?hl=en Twitter: https://twitter.com/gamologyus Subscribe to our other YouTube channels: Gamology Forecast - Watch out for new exciting games reviews, tips and hacks and MORE https://bit.ly/GamoForecast Send Noobs - If you enjoy discovering Free games and VR content, you should definitely subscribe to this channel! https://bit.ly/SendNoobs Gamology Shorts will provide you with your daily dose of short gaming content! https://bit.ly/GamoShorts -------------------- #GodOfWar #Historian #ExpertsReact
    https://wn.com/Historians_React_To_God_Of_War_Iii
    Oldest Gods in GOW Franchise | Yours Mythically
    0:47

    Oldest Gods in GOW Franchise | Yours Mythically

    • Order:
    • Duration: 0:47
    • Uploaded Date: 08 Feb 2023
    • views: 66787
    In this video, we're going to explore the oldest gods in the GOW Franchise! These gods date back to the beginning of time and will play a big role in the upcoming sequel to the game, God of War. If you're a fan of the GOW Franchise, be sure to check out this video! In it, we'll explore the history of the oldest gods in the game, and find out what role they'll play in the upcoming sequel. Don't miss out on this exciting video! Join our membership to get access to perks: https://www.youtube.com/channel/UC-bmkur852vEy6JuBHXlXDg/join Check out our new merch!! 👍 https://yours-mythically.creator-spring.com Support our channel 😎😁 -- Join our Patreon and check out exclusive content and get access to early releases https://www.patreon.com/yoursmythically -- Looking for great products. Have a look at some of our favourites ✨✨ https://www.amazon.co.uk/shop/yoursmythically/ -- Are you looking for talented freelancers for your next project. Check out Fiverr Click the link below ✔✔ https://go.fiverr.com/visit/?bta=466553&brand=fiverrhybrid If you like mythical content, don't forget to smash the like button and subscribe to Yours Mythically! While you're at it, check out some of our other videos from different mythologies : Christian : https://www.youtube.com/playlist?list=PLGoA0EpzDsTchXYBbQDA2kXuhrm0KSyag Chinese : https://www.youtube.com/playlist?list=PLGoA0EpzDsTeObgSXwbtsK80gqLHXujhg Egyptian : https://www.youtube.com/playlist?list=PLGoA0EpzDsTcZVXs3XRQhaLXXV8m1QYKW Hindu Mythology: https://www.youtube.com/playlist?list=PLGoA0EpzDsTfcwdFpp7oq1G1vaZKIuH-n Slavic : https://www.youtube.com/playlist?list=PLGoA0EpzDsTeWgGEB1wTc6gdL6YP4ep4A Greek : https://www.youtube.com/watch?v=UIr8J1ogxkg&list=PLGoA0EpzDsTenfvu43x-H--E4-Q-Nc4F9 Japanese : https://www.youtube.com/playlist?list=PLGoA0EpzDsTeWgGEB1wTc6gdL6YP4ep4A Movies: https://www.youtube.com/watch?v=8WvLNqtJec8&list=PLGoA0EpzDsTcAlF6t6auDFImHLlI5VYSx Mixture of Mythologies: https://www.youtube.com/playlist?list=PLGoA0EpzDsTcnG37Z8kkhsBNJPj22O30_ TV Shows: https://www.youtube.com/playlist?list=PLGoA0EpzDsTdxRzWWiPis10kufIVl4w3x ABOUT MY CHANNEL: Welcome to Yours Mythically, where we make videos on mythical deities, monsters from mythology, horror stories, and scary movies from all the mythology around the globe. Be it from any mythology we have got it all covered for you. So just sit back and relax. Feel free to drop some suggestions in the comment box so we can improve and better provide whatever you guys want. FOR BUSINESS ENQUIRIES Yoursmythically666@gmail.com FTC- **This video is NOT sponsored. With all Amazon and affiliate links I do earn a small commission when you purchase through these links or when using affiliate codes at checkout. This helps me improve my channel & content. ** We would like to express our gratitude to all the artists that contributed to the creation of this video. We have made an effort to include links to the sources of the photographs. If you are the owner of any of the photographs used, please get in touch with us; we'll be pleased to give you credit. Thank you once again! #yoursmythically #kratos #father #atreus #godofwar #gow #gowragnarok #godofwarragnarok #shorts #viral #trending #youtubevideos #kratosgow #atreusgow #norsemythology #greekmythology #gaming #gamingvideos #mythologyexplained #shortvideo #godofwar3 #godofwar2018 #godofwarmyths #godofwargameplay #godofwargame #gowkratos #gowatreus #gowoldest #oldestgow #gowplayers #godofwarplayers #gowfranchise Copyright Use Disclaimer - This video is for educational purposes only. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. In case you feel your rights are violated, kindly email me at yoursmythically666@gmail.com and I will be quite eager to take down my video.
    https://wn.com/Oldest_Gods_In_Gow_Franchise_|_Yours_Mythically
    War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of game
    23:37

    War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of game

    • Order:
    • Duration: 23:37
    • Uploaded Date: 15 Jan 2022
    • views: 489
    Complete Review of game,and show every part of how looks game: War of Deities ,with Tips for Beginners.With more advanced tips,tricks,guides,tutorials i will try to make more videos of this game.😊 If you like and find my videos helpful, useful, entertaining You can support my channel as donation on: https://ko-fi.com/igremangaming , to reward me so to i see if i done Good videos, and You can use super Thanks button on my videos, Subscribe to grow channel,hit Like, Every support is nice, Thank You. 💞✌🙂🖖 Check my videos of other interesting made games that i find out to be good to play. 😊 I hope you will find this video useful and helpful so you to see if you wanna start playing this game and with my tips and tricks to you be successful in this game. 😊 You can play this game on every mobile devices or you can play on computer using some emulators for mobile phones and so play mobile games on computer , just type there its name: War of Deities Also check my other videos on this my youtube channel of other games that i find out that is good to play but maybe not well known. 😊 And if you have any questions about what i said in any of my videos and if you maybe didn't understood something in my videos or need any help about games in any of my videos just ask as comments on my videos and i will try to help you. 💞😊 And if you want You can leave some Like , Share video , Subscribe to grow the channel and You can use super Thanks button on my videos as some little support for what i am doing or You can support me on: https://ko-fi.com/igremangaming ,Every support is nice,Thank You. 💞✌🙂🖖 Please leave like and comments if you want so i get some feedback from you and of course subscribe to my channel because i will make more videos of this and other games that i found are pearls in oceans of games and so worth of spend time playing them. 😊 @GamerPhilosophy #warofdeities #androidgames2023 #mobilegames2023
    https://wn.com/War_Of_Deities_Complete_Review_With_Tips_For_Beginners_And_Explained_Every_Part_Of_Game
    Greek Gods Explained In 12 Minutes
    12:24

    Greek Gods Explained In 12 Minutes

    • Order:
    • Duration: 12:24
    • Uploaded Date: 29 Sep 2017
    • views: 13509091
    The Greek Gods represent humanity at its best and worst, from the violent and destructive Ares to the beautiful and seductive Aphrodite, Greek mythology demonstrates the epic power struggle between parents and children in an endless quest to gain control over the world. Tales pass down from each generation showing them to be some of the most influential deities in human history, that continue to have a significant impact to this day. Thanks for watching! Make sure to LIKE and SUBSCRIBE and comment down below what video you would like us to do next! Intro and Outro Music by: https://soundcloud.com/ryantothec Background Music: Derek & Brandon Fiechter: https://www.youtube.com/channel/UCjMZjGhrFq_4llVS_x2XJ_w https://www.youtube.com/user/dfiechter2 Stock footage by: https://www.youtube.com/user/Beachfrontprod Other Videos: Nikola Tesla Explained In 16 Minutes | Nikola Tesla Documentary https://www.youtube.com/watch?v=Ok8JDXSYw1U Sun Tzu - The Art of War Explained In 5 Minutes https://www.youtube.com/watch?v=Hz4FNBj1APA&t The Fall of Rome Explained In 13 Minutes https://www.youtube.com/watch?v=KJz15Y6hKMM Norse Mythology Explained In 15 Minutes https://www.youtube.com/watch?v=2oxzmJPoRu8&t Left vs Right: Political Spectrum - Explained In 4 Minutes https://www.youtube.com/watch?v=JlQ5fGECmsA Genghis Khan and The Mongol Empire Explained In 8 Minutes: https://www.youtube.com/watch?v=pDyece8CQF8&t Fall of The Soviet Union Explained In 5 Minutes: https://www.youtube.com/watch?v=M16RMXZDG_g&t World War 2 Explained | Best WW2 Documentary | Part 1: https://www.youtube.com/watch?v=yLHPLWDyHio The Vietnam War Explained In 25 Minutes | Vietnam War Documentary: https://www.youtube.com/watch?v=7tNTh6KlXXU Egyptian Gods Explained In 13 Minutes: https://www.youtube.com/watch?v=bURNgGA2lzM&t The Life Guide is a channel dedicated to providing interesting and educational content about a range of political, philosophical, economic and historical topics. Whether you are interested in a simplified explanation of complicated modern ideas or detailed information on ancient civilizations and philosophical schools of thought, The Life Guide is the channel for you.
    https://wn.com/Greek_Gods_Explained_In_12_Minutes
    Deities and Gods of Healing - The Complete List
    12:23

    Deities and Gods of Healing - The Complete List

    • Order:
    • Duration: 12:23
    • Uploaded Date: 05 Apr 2021
    • views: 681
    A health deity is a god or goddess in mythology or religion associated with health, healing and wellbeing. They may also be related to childbirth or Mother Goddesses. They are a common feature of polytheistic religions. African Jengu, water spirits that bring good fortune and cure disease !Xu, sky god of the Bushmen of southern Africa who is invoked in illness Sonzwaphi, deity of healing, Zulu mythology Yoruba and Afro-American Aja, spirit of the forest, the animals within it and herbal healers Babalú-Ayé, b aba lu I yeah spirit of illness and disease Erinlẹ, spirit of abundance, the healer, and Physician to the Orisha Loco, patron of healers and plants Mami Wata, a pantheon of water deities associated with healing and fertility Ọsanyìn, spirit of herbalism Sopona, god of smallpox Armenian Anahit, goddess of fertility and healing, wisdom and water in Armenian mythology. Baltic Aušrinė, Baltic pagan deity of medicine, health and beauty. Ragana, witch deity protecting healers and wisdom holders. Celtic Airmed, Irish goddess associated with healing and resurrection. Alaunus, Gaulish god of the sun, healing and prophecy associated with Greek god Helios-Apollo Atepomarus, Gaulish healing god associated with the Greek god Apollo Dian Cecht, Irish god of healing
    https://wn.com/Deities_And_Gods_Of_Healing_The_Complete_List
    • God Of War Ragnarök - PlayStation Showcase 2021 Reveal Trailer | PS5 Games

      https://www.playstation.com/en-us/games/god-of-war-ragnarok/ From Santa Monica Studio comes God of War Ragnarök, the sequel to the critically acclaimed God of War (2018). Kratos and Atreus must journey to each of the Nine Realms in search of answers as they prepare for the prophesied battle that will end the world. Together, Kratos and Atreus venture deep into the Nine Realms in search of answers as Asgardian forces prepare for war. Along the way they will explore stunning, mythical landscapes, gather allies from across the realms, and face fearsome enemies in the form of Norse gods and monsters. As the threat of Ragnarök grows ever closer, Kratos and Atreus find themselves choosing between the safety of their family and the safety of the realms... #ps5 #ps4 #godofwarragnarok #ps4ga...

      published: 09 Sep 2021
    • GOD OF WAR 1 Remastered - Full Walkthrough Complete Game [1080p 60fps]

      God Of War Remastered ver 60fps [with subtitles] Gameplay Walkthrough Complete Game God of War Gameplay Walkthrough Complete Game for Playstation 2, Playstation 3 this god of war will also include a full Review and the Ending GOD OF WAR 3 Remastered: https://bit.ly/3tEpEg0

      published: 16 Dec 2018
    • God of War Ragnarök - "Father and Son" Cinematic Trailer | PS5 & PS4 Games

      https://www.playstation.com/en-us/games/god-of-war-ragnarok/ God of War Ragnarök launches on 11.09.2022. In God of War Ragnarök, join Kratos and Atreus on a mythic journey for answers before the prophesied, world-ending battle. All the while, the eyes of Asgard watch their every move... Find out more: https://play.st/GOWR Watch the PlayStation Showcase 2021 Gameplay Reveal: https://www.youtube.com/watch?v=EE-4GvjKcfs ©2022 Sony Interactive Entertainment LLC. God of War is a registered trademark of Sony Interactive Entertainment LLC and related companies in the U.S. and other countries. “PlayStation Family Mark”, “PlayStation”, “PlayStation Studios logo”, "PS4", and “PS5” are registered trademarks or trademarks of Sony Interactive Entertainment Inc. #PS5Games #PS4Games #ps5 #ps4 #god...

      published: 06 Jul 2022
    • God of War – Story Trailer | PS4

      https://www.playstation.com/games/god-of-war/?emcid=or-1s-412983/ From Santa Monica Studio and creative director Cory Barlog comes a new beginning for one of gaming’s most recognizable icons. Living as a man outside the shadow of the gods, Kratos must adapt to unfamiliar lands, unexpected threats, and a second chance at being a father. Together with his son Atreus, the pair will venture into the brutal Norse wilds and fight to fulfill a deeply personal quest. Available April 20, 2018 Visit the official site: http://godofwar.com Follow on Twitter: http://twitter.com/sonysantamonica Engage on Facebook: http://facebook.com/godofwar  Our Best Fan Art: http://instagram.com/santamonicastudio  ©2018 Sony Interactive Entertainment LLC. God of War is a trademark of Sony Interactive Entertainmen...

      published: 23 Jan 2018
    • God of War 2: Colossus of Rhodes Boss Fight (4K 60fps)

      Subscribe for more! ⇨ https://www.youtube.com/channel/UCdaluuQuE5GoOlULA2PGKmA?sub_confirmation=1 ☆ God of War 2 Colossus of Rhodes boss fight on hard mode in 4k and 60fps using the PCSX2 emulator. See ALL the boss fights from the God of War series: https://youtu.be/AMgkDsXanQQ?list=PL7bwjwx5Wwde-NdqynjJvQMlpH7nO4NTP ✪ Subscribe! http://bit.ly/Subscriiiibe God of War 2 Statue Boss / First Boss Battle Gameplay Walkthrough

      published: 17 Aug 2016
    • God of War - Original Saga Story Summary - What You Need to Know!

      Watch Part 2 covering God of War 2018! https://youtu.be/Aczqz6B68fc Support me on Patreon! https://www.patreon.com/suggestivegaming Follow me on Twitter! https://twitter.com/SuggestiveGames Catch up on Kratos' life and his battle against the Greek Pantheon with our summary covering the God of War series so far in chronological order. 0:00 Intro 0:19 God of War Ascension 1:04 God of War Ghost of Sparta 1:47 God of War Comic Series 2:41 God of War 4:02 God of War Ascension 5:20 God of War Chains of Olympus 7:59 God of War 9:40 God of War Ghost of Sparta 11:41 God of War 2 14:39 God of War 3 All game footage captured and edited by Suggestive Gaming; please do not use without expressed permission. Suggest a game/series for us to cover on What You Need to Know! #godofwar Follow us on Twit...

      published: 14 Jul 2017
    • God Of War Ragnarok - PlayStation Showcase 2021 Reveal Trailer | PS5

      From Santa Monica Studio comes the sequel to the critically acclaimed God of War (2018). Kratos and Atreus must journey to each of the Nine Realms in search of answers as they prepare for the prophesied battle that will end the world. Together, Kratos and Atreus venture deep into the Nine Realms in search of answers as Asgardian forces prepare for war. Along the way they will explore stunning, mythical landscapes, gather allies from across the realms, and face fearsome enemies in the form of Norse gods and monsters. As the threat of Ragnarök grows ever closer, Kratos and Atreus find themselves choosing between the safety of their family and the safety of the realms... Follow us on Facebook: https://www.facebook.com/PlayStationAsia

      published: 10 Sep 2021
    • Evolution of GOD OF WAR Games 2005-2023

      Evolution of GOD OF WAR Games 2005-2023 God of War is an action-adventure game franchise created by David Jaffe at Sony's Santa Monica Studio. It began in 2005 on the PlayStation 2 (PS2) video game console, and has become a flagship title for the PlayStation brand, consisting of nine fully fledged games across multiple platforms. The series follows the Spartan warrior, Kratos, who is born a demigod and became the God of War. God of War (2005) God of War 2 (2007) God of War: Betrayal (2007) God of War: Chains of Olympus (2008) God of War: Ghost of Sparta (2010) God of War 3 (2010) God of War: Ascension (2013) God of War (2018) God of War Ragnarök (2022)

      published: 09 Nov 2022
    • (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR]

      (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR] Thanks For Watching... ▶All the video was played, recorded, and edited by me in 4K HDR 2160p, YouTube takes time to process 4K HDR, Be Patient. ▶Subscribe and Stay Connected - https://www.youtube.com/channel/UCRU9vwwARx8jEACqNpi_KFA ▶Join Discord - https://discord.gg/vGajPGX ▶Follow FB Page - https://www.facebook.com/champssquad ▶Business Inquiries Only - champsquad1006@gmail.com #ps5 #playstation5

      published: 14 Nov 2022
    • I Played Every God Of War Ever In ONE VIDEO!

      My First Ever Merch is available now : https://www.AdamAsta.Store I Played every god of war game ever in one video ! in this video i played every god of war game ever starting from god of war 1 that came out during ps2 , all the way to god of war ragnarok that came out in the ps5! the video was absolutely insane , hope you enjoy it. - REACH OUT TO ME HERE! 📧 Contact Me: adamasta.brands@gmail.com 👾 Discord Server: https://discord.gg/37hezkYK Subscribe For Even More Insane Content In The Future ! Love u ❤️ i played all of them including god of war 2 , god of war 3 , god of war 2018 , god of war ascension , god of war chains of olympus , god of war ghost of sparta , and god of war ragnarok the video was insane , i also will be uploading future videos on things like these that are rel...

      published: 10 Mar 2023
    God Of War Ragnarök - PlayStation Showcase 2021 Reveal Trailer | PS5 Games
    3:17

    God Of War Ragnarök - PlayStation Showcase 2021 Reveal Trailer | PS5 Games

    • Order:
    • Duration: 3:17
    • Uploaded Date: 09 Sep 2021
    • views: 19806950
    https://www.playstation.com/en-us/games/god-of-war-ragnarok/ From Santa Monica Studio comes God of War Ragnarök, the sequel to the critically acclaimed God of War (2018). Kratos and Atreus must journey to each of the Nine Realms in search of answers as they prepare for the prophesied battle that will end the world. Together, Kratos and Atreus venture deep into the Nine Realms in search of answers as Asgardian forces prepare for war. Along the way they will explore stunning, mythical landscapes, gather allies from across the realms, and face fearsome enemies in the form of Norse gods and monsters. As the threat of Ragnarök grows ever closer, Kratos and Atreus find themselves choosing between the safety of their family and the safety of the realms... #ps5 #ps4 #godofwarragnarok #ps4games #ps5games May contain content inappropriate for children. Visit www.esrb.org for rating information.
    https://wn.com/God_Of_War_Ragnarök_Playstation_Showcase_2021_Reveal_Trailer_|_Ps5_Games
    GOD OF WAR 1 Remastered - Full Walkthrough Complete Game [1080p 60fps]
    5:26:46

    GOD OF WAR 1 Remastered - Full Walkthrough Complete Game [1080p 60fps]

    • Order:
    • Duration: 5:26:46
    • Uploaded Date: 16 Dec 2018
    • views: 13414589
    God Of War Remastered ver 60fps [with subtitles] Gameplay Walkthrough Complete Game God of War Gameplay Walkthrough Complete Game for Playstation 2, Playstation 3 this god of war will also include a full Review and the Ending GOD OF WAR 3 Remastered: https://bit.ly/3tEpEg0
    https://wn.com/God_Of_War_1_Remastered_Full_Walkthrough_Complete_Game_1080P_60Fps
    God of War Ragnarök - "Father and Son" Cinematic Trailer | PS5 & PS4 Games
    0:31

    God of War Ragnarök - "Father and Son" Cinematic Trailer | PS5 & PS4 Games

    • Order:
    • Duration: 0:31
    • Uploaded Date: 06 Jul 2022
    • views: 11611702
    https://www.playstation.com/en-us/games/god-of-war-ragnarok/ God of War Ragnarök launches on 11.09.2022. In God of War Ragnarök, join Kratos and Atreus on a mythic journey for answers before the prophesied, world-ending battle. All the while, the eyes of Asgard watch their every move... Find out more: https://play.st/GOWR Watch the PlayStation Showcase 2021 Gameplay Reveal: https://www.youtube.com/watch?v=EE-4GvjKcfs ©2022 Sony Interactive Entertainment LLC. God of War is a registered trademark of Sony Interactive Entertainment LLC and related companies in the U.S. and other countries. “PlayStation Family Mark”, “PlayStation”, “PlayStation Studios logo”, "PS4", and “PS5” are registered trademarks or trademarks of Sony Interactive Entertainment Inc. #PS5Games #PS4Games #ps5 #ps4 #godofwarragnarok
    https://wn.com/God_Of_War_Ragnarök_Father_And_Son_Cinematic_Trailer_|_Ps5_Ps4_Games
    God of War – Story Trailer | PS4
    2:57

    God of War – Story Trailer | PS4

    • Order:
    • Duration: 2:57
    • Uploaded Date: 23 Jan 2018
    • views: 10904247
    https://www.playstation.com/games/god-of-war/?emcid=or-1s-412983/ From Santa Monica Studio and creative director Cory Barlog comes a new beginning for one of gaming’s most recognizable icons. Living as a man outside the shadow of the gods, Kratos must adapt to unfamiliar lands, unexpected threats, and a second chance at being a father. Together with his son Atreus, the pair will venture into the brutal Norse wilds and fight to fulfill a deeply personal quest. Available April 20, 2018 Visit the official site: http://godofwar.com Follow on Twitter: http://twitter.com/sonysantamonica Engage on Facebook: http://facebook.com/godofwar  Our Best Fan Art: http://instagram.com/santamonicastudio  ©2018 Sony Interactive Entertainment LLC. God of War is a trademark of Sony Interactive Entertainment LLC.
    https://wn.com/God_Of_War_–_Story_Trailer_|_Ps4
    God of War 2: Colossus of Rhodes Boss Fight (4K 60fps)
    13:14

    God of War 2: Colossus of Rhodes Boss Fight (4K 60fps)

    • Order:
    • Duration: 13:14
    • Uploaded Date: 17 Aug 2016
    • views: 15815636
    Subscribe for more! ⇨ https://www.youtube.com/channel/UCdaluuQuE5GoOlULA2PGKmA?sub_confirmation=1 ☆ God of War 2 Colossus of Rhodes boss fight on hard mode in 4k and 60fps using the PCSX2 emulator. See ALL the boss fights from the God of War series: https://youtu.be/AMgkDsXanQQ?list=PL7bwjwx5Wwde-NdqynjJvQMlpH7nO4NTP ✪ Subscribe! http://bit.ly/Subscriiiibe God of War 2 Statue Boss / First Boss Battle Gameplay Walkthrough
    https://wn.com/God_Of_War_2_Colossus_Of_Rhodes_Boss_Fight_(4K_60Fps)
    God of War - Original Saga Story Summary - What You Need to Know!
    20:10

    God of War - Original Saga Story Summary - What You Need to Know!

    • Order:
    • Duration: 20:10
    • Uploaded Date: 14 Jul 2017
    • views: 9000202
    Watch Part 2 covering God of War 2018! https://youtu.be/Aczqz6B68fc Support me on Patreon! https://www.patreon.com/suggestivegaming Follow me on Twitter! https://twitter.com/SuggestiveGames Catch up on Kratos' life and his battle against the Greek Pantheon with our summary covering the God of War series so far in chronological order. 0:00 Intro 0:19 God of War Ascension 1:04 God of War Ghost of Sparta 1:47 God of War Comic Series 2:41 God of War 4:02 God of War Ascension 5:20 God of War Chains of Olympus 7:59 God of War 9:40 God of War Ghost of Sparta 11:41 God of War 2 14:39 God of War 3 All game footage captured and edited by Suggestive Gaming; please do not use without expressed permission. Suggest a game/series for us to cover on What You Need to Know! #godofwar Follow us on Twitch: http://www.twitch.tv/suggestivegaming Follow us on Twitter: https://twitter.com/SuggestiveGames Chat with us on Discord: https://discord.gg/bv8Ney3 Subscribe to us on Reddit: https://www.reddit.com/r/suggestivegaming
    https://wn.com/God_Of_War_Original_Saga_Story_Summary_What_You_Need_To_Know
    God Of War Ragnarok - PlayStation Showcase 2021 Reveal Trailer | PS5
    3:17

    God Of War Ragnarok - PlayStation Showcase 2021 Reveal Trailer | PS5

    • Order:
    • Duration: 3:17
    • Uploaded Date: 10 Sep 2021
    • views: 17384
    From Santa Monica Studio comes the sequel to the critically acclaimed God of War (2018). Kratos and Atreus must journey to each of the Nine Realms in search of answers as they prepare for the prophesied battle that will end the world. Together, Kratos and Atreus venture deep into the Nine Realms in search of answers as Asgardian forces prepare for war. Along the way they will explore stunning, mythical landscapes, gather allies from across the realms, and face fearsome enemies in the form of Norse gods and monsters. As the threat of Ragnarök grows ever closer, Kratos and Atreus find themselves choosing between the safety of their family and the safety of the realms... Follow us on Facebook: https://www.facebook.com/PlayStationAsia
    https://wn.com/God_Of_War_Ragnarok_Playstation_Showcase_2021_Reveal_Trailer_|_Ps5
    Evolution of GOD OF WAR Games 2005-2023
    8:29

    Evolution of GOD OF WAR Games 2005-2023

    • Order:
    • Duration: 8:29
    • Uploaded Date: 09 Nov 2022
    • views: 370839
    Evolution of GOD OF WAR Games 2005-2023 God of War is an action-adventure game franchise created by David Jaffe at Sony's Santa Monica Studio. It began in 2005 on the PlayStation 2 (PS2) video game console, and has become a flagship title for the PlayStation brand, consisting of nine fully fledged games across multiple platforms. The series follows the Spartan warrior, Kratos, who is born a demigod and became the God of War. God of War (2005) God of War 2 (2007) God of War: Betrayal (2007) God of War: Chains of Olympus (2008) God of War: Ghost of Sparta (2010) God of War 3 (2010) God of War: Ascension (2013) God of War (2018) God of War Ragnarök (2022)
    https://wn.com/Evolution_Of_God_Of_War_Games_2005_2023
    (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR]
    15:28

    (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR]

    • Order:
    • Duration: 15:28
    • Uploaded Date: 14 Nov 2022
    • views: 1396750
    (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR] Thanks For Watching... ▶All the video was played, recorded, and edited by me in 4K HDR 2160p, YouTube takes time to process 4K HDR, Be Patient. ▶Subscribe and Stay Connected - https://www.youtube.com/channel/UCRU9vwwARx8jEACqNpi_KFA ▶Join Discord - https://discord.gg/vGajPGX ▶Follow FB Page - https://www.facebook.com/champssquad ▶Business Inquiries Only - champsquad1006@gmail.com #ps5 #playstation5
    https://wn.com/(Ps5)_God_Of_War_3_Remastered_Kratos_Vs_Helios_|_Ultra_High_Graphics_Gameplay_4K_60Fps_Hdr
    I Played Every God Of War Ever In ONE VIDEO!
    26:32

    I Played Every God Of War Ever In ONE VIDEO!

    • Order:
    • Duration: 26:32
    • Uploaded Date: 10 Mar 2023
    • views: 2389400
    My First Ever Merch is available now : https://www.AdamAsta.Store I Played every god of war game ever in one video ! in this video i played every god of war game ever starting from god of war 1 that came out during ps2 , all the way to god of war ragnarok that came out in the ps5! the video was absolutely insane , hope you enjoy it. - REACH OUT TO ME HERE! 📧 Contact Me: adamasta.brands@gmail.com 👾 Discord Server: https://discord.gg/37hezkYK Subscribe For Even More Insane Content In The Future ! Love u ❤️ i played all of them including god of war 2 , god of war 3 , god of war 2018 , god of war ascension , god of war chains of olympus , god of war ghost of sparta , and god of war ragnarok the video was insane , i also will be uploading future videos on things like these that are related to playstation games , like platinum trophy games like I Platinum'd GTA , I Platinum'd God Of War , challenges , cool stories and much more , hit the subscribe button so u don't miss out
    https://wn.com/I_Played_Every_God_Of_War_Ever_In_One_Video
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • 11 Gods of War from 11 Different Mythologies
      9:19
      11 Gods of War from 11 Different Mythologiesremove from playlist
    • Roman Gods vs Greek Gods - Similarities and Differences
      8:50
      Roman Gods vs Greek Gods - Similarities and Differencesremove from playlist
    • Top 10 Egyptian Gods and Goddesses
      9:51
      Top 10 Egyptian Gods and Goddessesremove from playlist
    • Most Powerful Greek Gods (Ranked)
      25:25
      Most Powerful Greek Gods (Ranked)remove from playlist
    • Historians React to God Of War III
      11:17
      Historians React to God Of War IIIremove from playlist
    • Oldest Gods in GOW Franchise | Yours Mythically
      0:47
      Oldest Gods in GOW Franchise | Yours Mythicallyremove from playlist
    • War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of game
      23:37
      War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of gameremove from playlist
    • Greek Gods Explained In 12 Minutes
      12:24
      Greek Gods Explained In 12 Minutesremove from playlist
    • Deities and Gods of Healing - The Complete List
      12:23
      Deities and Gods of Healing - The Complete Listremove from playlist
    PLAYLIST TIME: 0:00 / 1:59:27

    11 Gods of War from 11 Different Mythologies

    Today I will introduce you to 11 gods of war, from 11 different mythologies: Buluc Chabtan - Mayan Mythology Ares - Greek Mythology Huitzilopochtli - Aztec Mythology Montu - Egyptian Mythology Tyr - Norse Mythology Svetovid - Slavic Mythology Camulus - Celtic Mythology Guan Yu (Guandi) - Chinese Mythology Ku - Hawaiian Mythology ISHTAR - Sumerian Mythology Hachiman - Japanese Mythology Subscribe to my channel for more mythology related videos: https://www.youtube.com/c/MythosTheHistorian/?sub_confirmation=1 Follow Mythos The Historian also on Facebook: https://www.facebook.com/MythosTheHistorian Music: Martian Cowboy by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 licence. https://creativecommons.org/licenses/by/4.0/ Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100349 Artist: http://incompetech.com/ #godsofwar #godofwar #mythology
    9:19
    11 Gods of War from 11 Different Mythologies
    Today I will introduce you to 11 gods of war, from 11 different mythologies: Buluc Chabta...
    published: 28 Nov 2021
    Play in Full Screen
    5:34
    the complete list of war deities pt 2 - Greek Gods
    published: 13 May 2020
    Play in Full Screen
    8:50
    Roman Gods vs Greek Gods - Similarities and Differences
    This is an incursion through Roman mythology and Greek mythology to see the similarties an...
    published: 05 Jun 2022
    Play in Full Screen
    9:51
    Top 10 Egyptian Gods and Goddesses
    Top 10 Egyptian Gods and Goddesses Subscribe http://goo.gl/Q2kKrD The list of famous Egy...
    published: 03 Aug 2016
    Play in Full Screen
    25:25
    Most Powerful Greek Gods (Ranked)
    You've heard their names before, Zeus, Hades, but what do you really know about the Greek ...
    published: 28 Jul 2022
    Play in Full Screen
    11:17
    Historians React to God Of War III
    In this episode of Experts React, Historians and mythology experts Brad and Kyle are here ...
    published: 26 Jan 2022
    Play in Full Screen
    0:47
    Oldest Gods in GOW Franchise | Yours Mythically
    In this video, we're going to explore the oldest gods in the GOW Franchise! These gods dat...
    published: 08 Feb 2023
    Play in Full Screen
    23:37
    War of Deities - Complete REVIEW with Tips for Beginners and Explained every part of game
    Complete Review of game,and show every part of how looks game: War of Deities ,with Tips f...
    published: 15 Jan 2022
    Play in Full Screen
    12:24
    Greek Gods Explained In 12 Minutes
    The Greek Gods represent humanity at its best and worst, from the violent and destructive ...
    published: 29 Sep 2017
    Play in Full Screen
    12:23
    Deities and Gods of Healing - The Complete List
    A health deity is a god or goddess in mythology or religion associated with health, healin...
    published: 05 Apr 2021
    Play in Full Screen

    List of war deities

    A war deity is a god or goddess in mythology associated with war, combat, or bloodshed. They occur commonly in both monotheistic and polytheistic religions.

    Unlike most gods and goddesses in polytheistic religions, monotheistic deities have traditionally been portrayed in their mythologies as commanding war in order to spread their religion. (The intimate connection between "holy war" and the "one true god" belief of monotheism has been noted by many scholars; including Jonathan Kirsch in his book God Against The Gods: The History of the War Between Monotheism and Polytheism and Joseph Campbell in The Masks of God, Vol. 3: Occidental Mythology.)

    The following is a partial list of war deities.

    African mythology

  • Agurzil, Berber god of war
  • Apedemak, Nubian lion-headed warrior god
  • Kokou, powerful Yoruba warrior god
  • Maher, Ethiopian god of war
  • Ogoun, Yoruba deity who presides over fire, iron, hunting, politics, and war
  • Oya, Yoruba warrior-goddess of the Niger River
  • Armenian mythology

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 7:00:41

    God Of War Ragnarök - PlayStation Showcase 2021 Reveal Trailer | PS5 Games

    https://www.playstation.com/en-us/games/god-of-war-ragnarok/ From Santa Monica Studio comes God of War Ragnarök, the sequel to the critically acclaimed God of War (2018). Kratos and Atreus must journey to each of the Nine Realms in search of answers as they prepare for the prophesied battle that will end the world. Together, Kratos and Atreus venture deep into the Nine Realms in search of answers as Asgardian forces prepare for war. Along the way they will explore stunning, mythical landscapes, gather allies from across the realms, and face fearsome enemies in the form of Norse gods and monsters. As the threat of Ragnarök grows ever closer, Kratos and Atreus find themselves choosing between the safety of their family and the safety of the realms... #ps5 #ps4 #godofwarragnarok #ps4games #ps5games May contain content inappropriate for children. Visit www.esrb.org for rating information.
    3:17
    God Of War Ragnarök - PlayStation Showcase 2021 Reveal Trailer | PS5 Games
    https://www.playstation.com/en-us/games/god-of-war-ragnarok/ From Santa Monica Studio co...
    published: 09 Sep 2021
    Play in Full Screen
    5:26:46
    GOD OF WAR 1 Remastered - Full Walkthrough Complete Game [1080p 60fps]
    God Of War Remastered ver 60fps [with subtitles] Gameplay Walkthrough Complete Game God of...
    published: 16 Dec 2018
    Play in Full Screen
    0:31
    God of War Ragnarök - "Father and Son" Cinematic Trailer | PS5 & PS4 Games
    https://www.playstation.com/en-us/games/god-of-war-ragnarok/ God of War Ragnarök launches...
    published: 06 Jul 2022
    Play in Full Screen
    2:57
    God of War – Story Trailer | PS4
    https://www.playstation.com/games/god-of-war/?emcid=or-1s-412983/ From Santa Monica Studi...
    published: 23 Jan 2018
    Play in Full Screen
    13:14
    God of War 2: Colossus of Rhodes Boss Fight (4K 60fps)
    Subscribe for more! ⇨ https://www.youtube.com/channel/UCdaluuQuE5GoOlULA2PGKmA?sub_confirm...
    published: 17 Aug 2016
    Play in Full Screen
    20:10
    God of War - Original Saga Story Summary - What You Need to Know!
    Watch Part 2 covering God of War 2018! https://youtu.be/Aczqz6B68fc Support me on Patreon!...
    published: 14 Jul 2017
    Play in Full Screen
    3:17
    God Of War Ragnarok - PlayStation Showcase 2021 Reveal Trailer | PS5
    From Santa Monica Studio comes the sequel to the critically acclaimed God of War (2018). ...
    published: 10 Sep 2021
    Play in Full Screen
    8:29
    Evolution of GOD OF WAR Games 2005-2023
    Evolution of GOD OF WAR Games 2005-2023 God of War is an action-adventure game franchise ...
    published: 09 Nov 2022
    Play in Full Screen
    15:28
    (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS HDR]
    (PS5) GOD OF WAR 3 REMASTERED - Kratos vs Helios | ULTRA High Graphics Gameplay [4K 60FPS ...
    published: 14 Nov 2022
    Play in Full Screen
    26:32
    I Played Every God Of War Ever In ONE VIDEO!
    My First Ever Merch is available now : https://www.AdamAsta.Store I Played every god of w...
    published: 10 Mar 2023
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×