|
|
Řádek 10: |
Řádek 10: |
|
| |
|
| === '''Rozcestník''' === | | === '''Rozcestník''' === |
| <div id="mainpage-content" class="mainpage-cell-wrapper">
| |
| <div class="mainpage-cell mainpage-cell-double">
| |
| <h2><span id="Current_release:_.E2.80.9CLunar_New_Year.E2.80.9D"></span><span class="mw-headline" id="Current_release:_“Lunar_New_Year”">Current release: “<a href="/wiki/Lunar_New_Year_2024" title="Lunar New Year 2024">Lunar New Year</a>”</span></h2>
| |
| <div class="mainpage-featured-images nomobile center"><a href="/wiki/Lunar_New_Year_2024" title="Lunar New Year 2024"><img alt="Lunar New Year 2024 banner.jpg" src="/images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/650px-Lunar_New_Year_2024_banner.jpg" decoding="async" width="650" height="214" srcset="/images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/975px-Lunar_New_Year_2024_banner.jpg 1.5x, /images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/1300px-Lunar_New_Year_2024_banner.jpg 2x" data-file-width="1612" data-file-height="530"></a></div>
| |
| <div class="mainpage-featured-images mobileonly center"><a href="/wiki/Lunar_New_Year_2024" title="Lunar New Year 2024"><img alt="Lunar New Year 2024 banner.jpg" src="/images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/650px-Lunar_New_Year_2024_banner.jpg" decoding="async" width="650" height="214" srcset="/images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/975px-Lunar_New_Year_2024_banner.jpg 1.5x, /images/thumb/8/8e/Lunar_New_Year_2024_banner.jpg/1300px-Lunar_New_Year_2024_banner.jpg 2x" data-file-width="1612" data-file-height="530"></a></div>
| |
| <p>It’s time for the first <a href="/wiki/Festival" title="Festival">festival</a> of 2024, so head over to <a href="/wiki/Divinity%27s_Reach" title="Divinity's Reach">Divinity's Reach</a> and enjoy the annual <a href="/wiki/Lunar_New_Year" title="Lunar New Year">Lunar New Year</a> celebration. During the Year of the Dragon, you can enjoy fireworks displays, participate in games, sample delicious <a href="/wiki/Cantha" title="Cantha">Canthan</a> food, and earn new rewards. This yearly festival is live now and will be available until February 20.
| |
| </p><p>Another new year dawns on Tyria—join the festivities in Divinity's Reach! The Year of the Dragon is once more upon us, and the Lunar New Year Festival returns with new rewards. Collect and open Lucky Envelopes to earn Essences of Luck, delicious foods, fireworks, valuable items, and a chance to find the new Lucky Dragon Lantern and Lucky Great Dragon Lantern backpacks!
| |
| </p>
| |
| <dl><dt><a href="/wiki/Lunar_New_Year_2024" title="Lunar New Year 2024">LEARN MORE</a></dt></dl>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span id="News_.26_updates"></span><span class="mw-headline" id="News_&_updates">News & updates</span></h2>
| |
| <dl><dt>Current game status</dt>
| |
| <dd>▪ <a href="/wiki/Game_updates" title="Game updates">Game updates</a> - <a href="/wiki/Game_updates/2024-02-07" title="Game updates/2024-02-07">Wednesday, 7 February 2024</a></dd>
| |
| <dd>▪ <a href="/wiki/Upcoming_changes_and_features" title="Upcoming changes and features">Upcoming changes and features</a></dd>
| |
| <dd>▪ <a href="/wiki/Release" title="Release">Releases</a> ▪ <a href="/wiki/Release_calendar" title="Release calendar">Release calendar</a></dd>
| |
| <dd>▪ <a href="/wiki/Event_timers" title="Event timers">Event timers</a> ▪ <a href="/wiki/Server_reset" title="Server reset">Server reset</a></dd></dl>
| |
| <div id="mainpagenews" style="position:relative;">
| |
| <script>
| |
| (function() {
| |
|
| |
| function getChild(xmlElement, tag) {
| |
| if (xmlElement) {
| |
| for (var i=0;i < xmlElement.childNodes.length;i++) {
| |
| var elem = xmlElement.childNodes[i];
| |
| if (elem.tagName === tag) {
| |
| return elem;
| |
| }
| |
| }
| |
| }
| |
| return undefined;
| |
| }
| |
| function getChildren(xmlElement, tag) {
| |
| var childElements = [];
| |
| if (xmlElement) {
| |
| for (var i=0;i < xmlElement.childNodes.length;i++) {
| |
| var elem = xmlElement.childNodes[i];
| |
| if (elem.tagName === tag) {
| |
| childElements.push(elem);
| |
| }
| |
| }
| |
| }
| |
| return childElements;
| |
| }
| |
|
| |
| var options = JSON.parse('{ \"count\": 10, \"min\": 3, \"add\": [ ]}');
| |
|
| |
| function addList(target, newsData, heightReference) {
| |
| if (window.getComputedStyle(heightReference, null).boxSizing !== 'border-box') {
| |
| setTimeout(function() {
| |
| addList(target, newsData, heightReference);
| |
| }, 1000/4);
| |
| return;
| |
| }
| |
| var initialHeight = heightReference.clientHeight;
| |
| var dl = document.createElement('dl');
| |
| target.appendChild(dl);
| |
| var previousDateHeading = undefined;
| |
| var count = options.count || 10;
| |
| var min = options.min || 3;
| |
| var i = 0;
| |
| for (;i < newsData.length && i !== count && (heightReference.clientHeight === initialHeight || i < min);i++) {
| |
| var news = newsData[i];
| |
| var currentDateHeading = news.date + (news.sticky ? ' \u2605' : '');
| |
| if (currentDateHeading !== previousDateHeading) {
| |
| previousDateHeading = currentDateHeading;
| |
|
| |
| var dt = document.createElement('dt');
| |
| dt.textContent = currentDateHeading;
| |
| dl.appendChild(dt);
| |
| }
| |
| if (news.link && news.title) {
| |
| var dd = document.createElement('dd');
| |
| var bulletNbsp = document.createTextNode('\u25AA\u00A0');
| |
| dd.appendChild(bulletNbsp);
| |
|
| |
| var a = document.createElement('a');
| |
| a.textContent = news.title;
| |
| a.classList.add('external');
| |
| a.classList.add('text');
| |
| a.rel = 'nofollow';
| |
| a.href = news.link;
| |
| dd.appendChild(a);
| |
|
| |
| dl.appendChild(dd);
| |
| }
| |
| }
| |
| var addedAtMostTheMinimumQuantity = i <= min;
| |
| if (heightReference.clientHeight !== initialHeight && !addedAtMostTheMinimumQuantity) {
| |
| dl.removeChild(dl.lastChild);
| |
| switch (dl.lastChild.tagName.toLowerCase()) {
| |
| case 'dt':
| |
| dl.removeChild(dl.lastChild);
| |
| break;
| |
| case 'dd':
| |
| break;
| |
| default:
| |
| console.error('Widget:News | Unexpected tag name "' + dl.lastChild.tagName + '".');
| |
| break;
| |
| }
| |
| }
| |
| }
| |
| var request = new XMLHttpRequest();
| |
| request.addEventListener('load', function () {
| |
| if (request.readyState === 4) {
| |
| if (request.status == 200) {
| |
| var response = request.responseXML;
| |
| var rss = getChild(response, 'rss');
| |
| var channel = getChild(rss, 'channel');
| |
| var items = getChildren(channel, 'item');
| |
| // Only include items with the News category.
| |
| items = items.filter(function(item) {
| |
| var categories = getChildren(item, 'category');
| |
| return categories.filter(function(category) {
| |
| return category.textContent === 'News';
| |
| }).length === 1;
| |
| });
| |
| var monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
| |
| var newsData = items.map(function(item) {
| |
| var pubDate = new Date(getChild(item, 'pubDate').textContent);
| |
| var news = {};
| |
| news.title = getChild(item, 'title').textContent;
| |
| news.link = getChild(item, 'link').textContent;
| |
| var i = news.link.indexOf('?');
| |
| if (i !== -1) {
| |
| news.link = news.link.substring(0, i);
| |
| }
| |
| news.date = monthNames[pubDate.getUTCMonth()] + ' ' + pubDate.getUTCDate() + ', ' + pubDate.getUTCFullYear();
| |
| var categories = getChildren(item, 'category');
| |
| news.sticky = categories.filter(function(category) {
| |
| return category.textContent === 'Sticky';
| |
| }).length === 1;
| |
| return news;
| |
| });
| |
| // Add entries from the options object.
| |
| if (options.add) {
| |
| var forumUrl = 'https://en-forum.guildwars2.com/';
| |
| for (var i=0;i < options.add.length;i++) {
| |
| var toAdd = options.add[i];
| |
| if (toAdd.text && toAdd.link && toAdd.date) {
| |
| // Allow only forum links.
| |
| if (forumUrl.length <= toAdd.link.length && toAdd.link.substring(0, forumUrl.length) === forumUrl) {
| |
| var news = {};
| |
| news.title = toAdd.text;
| |
| news.link = toAdd.link;
| |
| news.date = toAdd.date;
| |
| newsData.push(news);
| |
| }
| |
| }
| |
| }
| |
| }
| |
| // Hide entries specified in the options object.
| |
| if (options.hide) {
| |
| newsData = newsData.filter(function(news) {
| |
| return options.hide.indexOf(news.title) === -1;
| |
| });
| |
| }
| |
| // Sort entries by date.
| |
| var pattern = new RegExp('^(' + monthNames.join('|') + ')[ ]{1}([0-9]{1,2})[,]{1}[ ]{1}([0-9]{4})$');
| |
| newsData = newsData.sort(function(a, b) {
| |
| var matchA = pattern.exec(a.date);
| |
| var matchB = pattern.exec(b.date);
| |
| if (!matchA && !matchB) {
| |
| return 0;
| |
| }
| |
| return (matchA === null) - (matchB === null)
| |
| || parseInt(matchB[3], 10) - parseInt(matchA[3], 10)
| |
| || monthNames.indexOf(matchB[1]) - monthNames.indexOf(matchA[1])
| |
| || parseInt(matchB[2], 10) - parseInt(matchA[2], 10);
| |
| });
| |
| // Sort sticky news to top.
| |
| newsData = newsData.sort(function(a, b) {
| |
| return b.sticky - a.sticky;
| |
| });
| |
| var target = document.getElementById('mainpagenews');
| |
| if (target) {
| |
| addList(target, newsData, target.parentNode);
| |
| } else {
| |
| console.error('Widget:News | No target element with #mainpagenews found.');
| |
| }
| |
| } else {
| |
| console.error('Widget:News | Could not retrieve the current news from the rss feed.', request.status + ' ' + request.statusText);
| |
| }
| |
| }
| |
| });
| |
| request.open('GET', 'https://www.guildwars2.com/en/feed/', true);
| |
| request.send();
| |
|
| |
| })();
| |
| </script><div id="newseditlink" class="plainlinks" style="font-size: 0.8em; font-style: italic; position:absolute; right:0; top:0;"><a rel="nofollow" class="external text" href="//wiki.guildwars2.com/index.php?title=Template:News&action=edit">Edit</a></div><dl><dt>January 25, 2024 ★</dt><dd>▪ <a class="external text" rel="nofollow" href="https://www.guildwars2.com/en/news/legendary-relics-are-coming-soon/">Legendary Relics Are Coming Soon</a></dd><dt>February 13, 2024</dt><dd>▪ <a class="external text" rel="nofollow" href="https://www.guildwars2.com/en/news/dress-in-high-style-with-the-elegant-nobles-backpack-and-glider-combo/">Dress in High Style with the Elegant Noble’s Backpack and Glider Combo</a></dd><dt>February 6, 2024</dt><dd>▪ <a class="external text" rel="nofollow" href="https://www.guildwars2.com/en/news/upgrade-your-jackal-mount-into-a-synergetics-cyberhound/">Upgrade Your Jackal Mount into a Synergetics Cyberhound</a></dd><dt>January 30, 2024</dt><dd>▪ <a class="external text" rel="nofollow" href="https://www.guildwars2.com/en/news/lunar-new-year-2024-begins-today/">Lunar New Year 2024 Begins Today</a></dd><dd>▪ <a class="external text" rel="nofollow" href="https://www.guildwars2.com/en/news/delight-in-a-serene-respite-with-the-peaceful-shrine-chair/">Delight in a Serene Respite with the Peaceful Shrine Chair</a></dd></dl></div>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span class="mw-headline" id="Basics">Basics</span></h2>
| |
| <dl><dt><a href="/wiki/Running_the_game" title="Running the game">Running the game</a></dt>
| |
| <dd>▪ <a href="/wiki/Controls" title="Controls">Controls</a> ▪ <a href="/wiki/Graphical_user_interface" title="Graphical user interface">User interface</a> ▪ <a href="/wiki/World" title="World">Worlds</a></dd>
| |
| <dt><a href="/wiki/Character" title="Character">Characters</a></dt>
| |
| <dd>▪ <a href="/wiki/Character_creation" title="Character creation">Character creation</a> ▪ <a href="/wiki/Playable_races" title="Playable races">Races</a> ▪ <a href="/wiki/Profession" title="Profession">Professions</a></dd>
| |
| <dd>▪ <a href="/wiki/Skill" title="Skill">Skills</a> ▪ <a href="/wiki/Trait" title="Trait">Traits</a> ▪ <a href="/wiki/Attribute" title="Attribute">Attributes</a></dd>
| |
| <dd>▪ <a href="/wiki/Specialization" title="Specialization">Specializations</a> ▪ <a href="/wiki/Level_rewards" title="Level rewards">Level rewards</a></dd>
| |
| <dt><a href="/wiki/Account" title="Account">Account</a></dt>
| |
| <dd>▪ <a href="/wiki/Achievement" title="Achievement">Achievements</a> ▪ <a href="/wiki/Daily" title="Daily">Dailies</a> ▪ <a href="/wiki/Wizard%27s_Vault" title="Wizard's Vault">Wizard's Vault</a> ▪ <a href="/wiki/Mastery" title="Mastery">Masteries</a> ▪ <a href="/wiki/Account#Free_accounts" title="Account">Free account restrictions</a></dd>
| |
| <dt>Features</dt>
| |
| <dd>▪ <a href="/wiki/Gliding" title="Gliding">Gliding</a> ▪ <a href="/wiki/Mount" title="Mount">Mounts</a> ▪ <a href="/wiki/Fishing" title="Fishing">Fishing</a> ▪ <a href="/wiki/Jade_Bot" title="Jade Bot">Jade Bot</a> ▪ <a href="/wiki/Skiff" title="Skiff">Skiffs</a></dd>
| |
| <dt><a href="/wiki/Cooperation" title="Cooperation">Cooperation</a></dt>
| |
| <dd>▪ <a href="/wiki/Party" title="Party">Party</a> ▪ <a href="/wiki/Squad" title="Squad">Squads</a> ▪ <a href="/wiki/Contacts_and_LFG_panel" title="Contacts and LFG panel">Friends</a> ▪ <a href="/wiki/Guild" title="Guild">Guilds</a></dd>
| |
| <dt><a href="/wiki/Map" title="Map">Map</a></dt>
| |
| <dd>▪ <a href="/wiki/Zone" title="Zone">Zones</a> ▪ <a href="/wiki/City" title="City">Cities</a> ▪ <a href="/wiki/Home_instance" title="Home instance">Home instance</a> ▪ <a href="/wiki/Jumping_puzzle" title="Jumping puzzle">Jumping puzzles</a></dd>
| |
| <dt><a href="/wiki/Category:Glossary" title="Category:Glossary">Glossary</a> ▪ <a href="/wiki/Abbreviations" title="Abbreviations">Abbreviations</a></dt></dl>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span class="mw-headline" id="Gameplay">Gameplay</span></h2>
| |
| <dl><dt><a href="/wiki/Combat" title="Combat">Combat</a></dt>
| |
| <dd>▪ <a href="/wiki/Damage" title="Damage">Damage</a> ▪ <a href="/wiki/Effect" title="Effect">Effects</a> ▪ <a href="/wiki/Defiance_bar" title="Defiance bar">Defiance bar</a> ▪ <a href="/wiki/Combo" title="Combo">Combos</a> ▪ <a href="/wiki/Dynamic_level_adjustment" title="Dynamic level adjustment">Dynamic level adjustment</a></dd>
| |
| <dt><a href="/wiki/Player_versus_Environment" title="Player versus Environment">Player versus Environment</a></dt>
| |
| <dd>▪ <a href="/wiki/Story_Journal" title="Story Journal">Story Journal</a> ▪ <a href="/wiki/Dynamic_event" title="Dynamic event">Dynamic events</a> ▪ <a href="/wiki/World_boss#Current_events" title="World boss">World bosses</a> ▪ <a href="/wiki/Dungeon" title="Dungeon">Dungeons</a> ▪ <a href="/wiki/Fractals_of_the_Mists" title="Fractals of the Mists">Fractals</a> ▪ <a href="/wiki/Strike_Mission" title="Strike Mission">Strike Missions</a> ▪ <a href="/wiki/Raid" title="Raid">Raids</a></dd>
| |
| <dt><a href="/wiki/Map_completion" title="Map completion">Map completion</a></dt>
| |
| <dd>▪ <a href="/wiki/Renown_Heart" title="Renown Heart">Renown Hearts</a> ▪ <a href="/wiki/Point_of_Interest" title="Point of Interest">Points of interest</a> ▪ <a href="/wiki/Hero_challenge" title="Hero challenge">Hero challenges</a> ▪ <a href="/wiki/Vista" title="Vista">Vistas</a> ▪ <a href="/wiki/Waypoint" title="Waypoint">Waypoints</a></dd>
| |
| <dt><a href="/wiki/Structured_PvP" title="Structured PvP">Structured PvP</a></dt>
| |
| <dd>▪ <a href="/wiki/Conquest" title="Conquest">Conquest</a> ▪ <a href="/wiki/PvP_Reward_Track" title="PvP Reward Track">PvP Reward Tracks</a> ▪ <a href="/wiki/PvP_Rank" title="PvP Rank">PvP Rank</a> ▪ <a href="/wiki/PvP_League" title="PvP League">PvP League</a> ▪ <a href="/wiki/Automated_Tournaments" title="Automated Tournaments">Automated Tournaments</a></dd>
| |
| <dt><a href="/wiki/World_versus_World" title="World versus World">World vs World</a></dt>
| |
| <dd>▪ <a href="/wiki/Objective" title="Objective">Objectives</a> ▪ <a href="/wiki/Siege_weapon" title="Siege weapon">Siege weapons</a> ▪ <a href="/wiki/Skirmish_reward_track" title="Skirmish reward track">Skirmishes</a> ▪ <a href="/wiki/WvW_Reward_Track" title="WvW Reward Track">WvW Reward Tracks</a> ▪ <a href="/wiki/World_Experience" title="World Experience">World Experience</a></dd></dl>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span class="mw-headline" id="Gear_and_equipment">Gear and equipment</span></h2>
| |
| <dl><dt><a href="/wiki/Equipment" title="Equipment">Equipment</a></dt>
| |
| <dd>▪ <a href="/wiki/Armor" title="Armor">Armor</a> ▪ <a href="/wiki/Relic" title="Relic">Relics</a> ▪ <a href="/wiki/Trinket" title="Trinket">Trinkets</a> ▪ <a href="/wiki/Weapon" title="Weapon">Weapons</a></dd>
| |
| <dd>▪ <a href="/wiki/Attribute_combinations" title="Attribute combinations">Prefixes</a> ▪ <a href="/wiki/Ascended_equipment" title="Ascended equipment">Ascended equipment</a></dd>
| |
| <dt><a href="/wiki/Item" title="Item">Items</a> and <a href="/wiki/Inventory" title="Inventory">Inventory</a></dt>
| |
| <dd>▪ <a href="/wiki/Consumable" title="Consumable">Consumables</a> (<a href="/wiki/Food" title="Food">Food</a>, <a href="/wiki/Utility_item" title="Utility item">Utility</a>) ▪ <a href="/wiki/Collections" title="Collections">Collections</a> ▪ <a href="/wiki/Upgrade_component" title="Upgrade component">Upgrades</a> (<a href="/wiki/Rune" title="Rune">Runes</a>, <a href="/wiki/Sigil" title="Sigil">Sigils</a>, <a href="/wiki/Infusion" title="Infusion">Infusions</a>)</dd>
| |
| <dt>Appearance</dt>
| |
| <dd>▪ <a href="/wiki/Wardrobe" title="Wardrobe">Wardrobe</a> ▪ <a href="/wiki/Dye" title="Dye">Dye</a> ▪ <a href="/wiki/Outfit" title="Outfit">Outfits</a> ▪ <a href="/wiki/Miniature" title="Miniature">Minis</a></dd>
| |
| <dt><a href="/wiki/Crafting" title="Crafting">Crafting</a></dt>
| |
| <dd>▪ <a href="/wiki/Recipe" title="Recipe">Recipes</a> ▪ <a href="/wiki/Crafting_material" title="Crafting material">Materials</a> ▪ <a href="/wiki/Mystic_Forge" title="Mystic Forge">Mystic Forge</a> ▪ <a href="/wiki/Legendary_equipment" title="Legendary equipment">Legendary equipment</a></dd>
| |
| <dt>Commerce and <a href="/wiki/Currency" title="Currency">currencies</a></dt>
| |
| <dd>▪ <a href="/wiki/Trading_Post" title="Trading Post">Trading Post</a> ▪ <a href="/wiki/Gem_Store" title="Gem Store">Gem Store</a> ▪ <a href="/wiki/Vendor" title="Vendor">Vendor</a> ▪ <a href="/wiki/Account_vault" title="Account vault">Vault</a></dd></dl>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span class="mw-headline" id="History_and_lore">History and lore </span></h2>
| |
| <dl><dt><a href="/wiki/Tyria_(world)" title="Tyria (world)">The world of Tyria</a></dt>
| |
| <dd>▪ <a href="/wiki/Tyria" title="Tyria">Tyria</a> ▪ <a href="/wiki/The_Mists" title="The Mists">The Mists</a> ▪ <a href="/wiki/Elona" title="Elona">Elona</a> ▪ <a href="/wiki/Cantha" title="Cantha">Cantha</a></dd>
| |
| <dd>▪ <a href="/wiki/Magic" title="Magic">Magic</a> ▪ <a href="/wiki/Bestiary" title="Bestiary">Bestiary</a> ▪ <a href="/wiki/Organizations" title="Organizations">Organizations</a></dd>
| |
| <dt><a href="/wiki/Story_Journal" title="Story Journal">Story</a>, <a href="/wiki/Expansion" title="Expansion">Expansions</a> and <a href="/wiki/Living_World" title="Living World">Living World</a></dt>
| |
| <dd>▪ <a href="/wiki/Personal_Story" class="mw-redirect" title="Personal Story">Personal Story</a> ▪ <a href="/wiki/Living_World_Season_1" title="Living World Season 1">Season One</a> ▪ <a href="/wiki/Living_World_Season_2" title="Living World Season 2">Season Two</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2:_Heart_of_Thorns" title="Guild Wars 2: Heart of Thorns"><img alt="HoT Texture Centered Trans.png" src="/images/thumb/5/52/HoT_Texture_Centered_Trans.png/30px-HoT_Texture_Centered_Trans.png" decoding="async" width="30" height="30" srcset="/images/thumb/5/52/HoT_Texture_Centered_Trans.png/45px-HoT_Texture_Centered_Trans.png 1.5x, /images/thumb/5/52/HoT_Texture_Centered_Trans.png/60px-HoT_Texture_Centered_Trans.png 2x" data-file-width="3000" data-file-height="3000"></a> <a href="/wiki/Heart_of_Thorns" class="mw-redirect" title="Heart of Thorns">Heart of Thorns</a> ▪ <a href="/wiki/Living_World_Season_3" title="Living World Season 3">Season Three</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2:_Path_of_Fire" title="Guild Wars 2: Path of Fire"><img alt="PoF Texture Trans.png" src="/images/thumb/a/a7/PoF_Texture_Trans.png/30px-PoF_Texture_Trans.png" decoding="async" width="30" height="30" srcset="/images/thumb/a/a7/PoF_Texture_Trans.png/45px-PoF_Texture_Trans.png 1.5x, /images/thumb/a/a7/PoF_Texture_Trans.png/60px-PoF_Texture_Trans.png 2x" data-file-width="350" data-file-height="350"></a> <a href="/wiki/Path_of_Fire" class="mw-redirect" title="Path of Fire">Path of Fire</a> ▪ <a href="/wiki/Living_World_Season_4" title="Living World Season 4">Season Four</a></dd>
| |
| <dd>▪ <a href="/wiki/The_Icebrood_Saga" title="The Icebrood Saga">The Icebrood Saga</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2:_End_of_Dragons" title="Guild Wars 2: End of Dragons"><img alt="EoD Texture Trans.png" src="/images/thumb/c/cc/EoD_Texture_Trans.png/30px-EoD_Texture_Trans.png" decoding="async" width="30" height="30" srcset="/images/thumb/c/cc/EoD_Texture_Trans.png/45px-EoD_Texture_Trans.png 1.5x, /images/thumb/c/cc/EoD_Texture_Trans.png/60px-EoD_Texture_Trans.png 2x" data-file-width="2000" data-file-height="2000"></a> <a href="/wiki/End_of_Dragons" class="mw-redirect" title="End of Dragons">End of Dragons</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2:_Secrets_of_the_Obscure" title="Guild Wars 2: Secrets of the Obscure"><img alt="Secrets of the Obscure logo.png" src="/images/thumb/4/44/Secrets_of_the_Obscure_logo.png/30px-Secrets_of_the_Obscure_logo.png" decoding="async" width="30" height="26" srcset="/images/thumb/4/44/Secrets_of_the_Obscure_logo.png/45px-Secrets_of_the_Obscure_logo.png 1.5x, /images/thumb/4/44/Secrets_of_the_Obscure_logo.png/60px-Secrets_of_the_Obscure_logo.png 2x" data-file-width="350" data-file-height="302"></a> <a href="/wiki/Secrets_of_the_Obscure" class="mw-redirect" title="Secrets of the Obscure">Secrets of the Obscure</a></dd>
| |
| <dt><a href="/wiki/Merchandise" title="Merchandise">Merchandise</a></dt>
| |
| <dd>▪ <a href="/wiki/Ghosts_of_Ascalon" title="Ghosts of Ascalon">Ghosts of Ascalon</a> ▪ <a href="/wiki/Edge_of_Destiny" title="Edge of Destiny">Edge of Destiny</a> ▪ <a href="/wiki/Sea_of_Sorrows_(book)" title="Sea of Sorrows (book)">Sea of Sorrows</a> ▪ <a href="/wiki/Soundtrack" title="Soundtrack">Soundtrack</a></dd>
| |
| <dt><a href="/wiki/Lore" title="Lore">Lore</a> ▪ <a href="/wiki/Timeline" title="Timeline">Timeline</a> ▪ <a href="/wiki/Short_story" title="Short story">Short stories</a></dt></dl>
| |
| </div>
| |
| <div class="mainpage-cell">
| |
| <h2><span class="mw-headline" id="Wiki_community">Wiki community</span></h2>
| |
| <p>We are currently maintaining <a href="/wiki/Special:Statistics" title="Special:Statistics">108,696</a> <a href="/wiki/Special:AllPages" title="Special:AllPages">articles</a>!<br>
| |
| </p>
| |
| <dl><dt><a href="/wiki/Guild_Wars_2_Wiki:Community_portal" title="Guild Wars 2 Wiki:Community portal">Community portal</a></dt>
| |
| <dd>▪ <a href="/wiki/Special:RecentChanges" title="Special:RecentChanges">Recent changes</a> ▪ <a href="/wiki/Special:NewPages" title="Special:NewPages">New pages</a> ▪ <a href="/wiki/Special:NewFiles" title="Special:NewFiles">New files</a></dd>
| |
| <dt><a href="/wiki/Help:Editing" title="Help:Editing">How to help</a></dt>
| |
| <dd>▪ <a href="/wiki/Category:Stubs" title="Category:Stubs">List of articles needing expansion</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2_Wiki:Projects/To_do_list" title="Guild Wars 2 Wiki:Projects/To do list">To do list</a></dd>
| |
| <dd>▪ <a href="/wiki/Coin" title="Gold coin"><img alt="Gold coin" src="/images/thumb/d/d1/Gold_coin.png/18px-Gold_coin.png" decoding="async" width="18" height="18" srcset="/images/d/d1/Gold_coin.png 1.5x" data-file-width="26" data-file-height="26"></a> <a href="/wiki/Guild_Wars_2_Wiki:Projects/On_Wiki_of_Gold" title="Guild Wars 2 Wiki:Projects/On Wiki of Gold">On Wiki of Gold</a> <span class="inline-icon"><a href="/wiki/Gem" title="Gem"><img alt="Gem" src="/images/thumb/a/aa/Gem.png/20px-Gem.png" decoding="async" width="20" height="18" srcset="/images/a/aa/Gem.png 1.5x" data-file-width="28" data-file-height="25"></a></span></dd>
| |
| <dt><a href="/wiki/Help:Contents" title="Help:Contents">Get help, or ask a question</a></dt>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2_Wiki:FAQ" title="Guild Wars 2 Wiki:FAQ">Frequently Asked Questions</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2_Wiki:Ask_a_wiki_question" title="Guild Wars 2 Wiki:Ask a wiki question">Ask a wiki question</a></dd>
| |
| <dd>▪ <a href="/wiki/Guild_Wars_2_Wiki:IRC" title="Guild Wars 2 Wiki:IRC">Join us on IRC</a> ▪ <a href="/wiki/Guild_Wars_2_Wiki:Discord" title="Guild Wars 2 Wiki:Discord">Join us on Discord</a></dd>
| |
| <dt><a href="/wiki/Guild_Wars_2_Wiki:Practices_and_processes" title="Guild Wars 2 Wiki:Practices and processes">Practices and processes</a></dt>
| |
| <dt><a href="/wiki/API:Main" title="API:Main">API Documentation</a></dt></dl>
| |
| </div>
| |
| </div>
| |
|
| |
|
| ===== <big>[[Postava]]</big> ===== | | ===== <big>[[Postava]]</big> ===== |