|
|
(7 intermediate revisions by the same user not shown) |
Line 15: |
Line 15: |
| * Edit the page where your guide link should live. | | * Edit the page where your guide link should live. |
| * Under any section, add a bullet using an asterisk (<nowiki>*</nowiki>). | | * Under any section, add a bullet using an asterisk (<nowiki>*</nowiki>). |
| * Name your guide in the Guides namespace (<nowiki>Guides:Your_Guide_Name</nowiki>). | | * Name your guide in the Guides namespace (<nowiki>Guides:Example Guide Name</nowiki>). |
| ** Example: <nowiki>Guides:Special_Setup_of_Gear</nowiki> | | ** Example: <nowiki>Guides:Example Guide Name</nowiki> |
| * Wrap the name in double brackets: | | * Wrap the name in double brackets: |
| ** Example: <nowiki>[[Guides:Special_Setup_of_Gear]]</nowiki> | | ** Example: <nowiki>[[Guides:Example Guide Name]]</nowiki> |
| * Save the page. | | * Save the page. |
|
| |
|
| The new link will appear in red (a “redlink”): [[Guides:Special Setup of Gear]]. Click it to start editing the new page. | | The new link will appear in red (a “redlink”): [[Guides:Example Guide Name]]. Click it to start editing the new page. |
|
| |
|
| === Naming Conventions === | | === Naming Conventions === |
| It's important for Wiki management to align with standard naming conventions in order to organize and sort pages into their correct locations. | | It's important for Wiki management to align with standard naming conventions in order to organize and sort pages into their correct locations. |
|
| |
|
| Please make sure that when creating a new guide, always format it as "Guides:Example_Name". The colon tells the wiki that these pages belong to the Guides namespace, and this is where all guides will be part of as they are created. | | Please make sure that when creating a new guide, always format it as "Guides:Example Name". The colon tells the wiki that these pages belong to the Guides namespace, and this is where all guides will be part of as they are created. |
|
| |
|
| == Understanding the Editor == | | == Understanding the Editor == |
Line 42: |
Line 42: |
|
| |
|
| == Templates and What They Do == | | == Templates and What They Do == |
| Templates are reusable page components that you “transclude” (which is a fancy word for "insert directly into a page") into another page. This lets you reuse complex formatting with simple parameters. | | Templates are reusable page pieces you can drop into any page. They save time by handling the fancy formatting for you—you just fill in the fields. |
| | |
| | === Option 1: Visual Editor (recommended) === |
| | Use this if you prefer forms and buttons. |
| | |
| | [[File:Edit Template Example.png|center|600px|alt=Editing a template in Visual Editor]] |
| | |
| | '''To insert a new template''' |
| | # Click '''Edit''' at the top of the page (not “Edit source”). |
| | # In the toolbar, choose '''Insert > Template''' (puzzle-piece icon). |
| | # Search for the template name (for example, '''ClassInfoBox'''), then click '''Add template'''. |
| | # A form opens with fields, examples, and short descriptions. Fill in what you know. |
| | # Click '''Insert''' (or '''Apply changes'''), then '''Publish changes'''. |
| | |
| | '''To edit an existing template on the page''' |
| | # In Visual Editor, double-click the template table/box, or click the small '''Edit''' button on it. |
| | # Update any fields you want. |
| | # Click '''Apply changes''', then '''Publish changes'''. |
| | |
| | ''You can leave fields blank as most templates hide empty info automatically.'' |
| | |
| | ---- |
| | |
| | === Option 2: Edit Source (advanced) === |
| | Use this if you like wikitext. |
|
| |
|
| A basic insert looks like this: | | A basic insert looks like this: |
| <nowiki>{{Example Insert | | <nowiki> |
| | {{Example Insert |
| | Example Parameter = Example Value | | | Example Parameter = Example Value |
| }} </nowiki> | | }} |
| | </nowiki> |
|
| |
|
| This will check for a template page called "Example Insert", and then you can fill in all the values. When you "Save changes" the insert transforms into the template, and automatically fills out all the empty fields.
| | When you save, the wiki turns that block into the styled template. |
|
| |
|
| It allows the creation of fancy tables like this, without any programming skills.
| | You can switch between editors any time: |
| | * In Visual Editor: you can switch in the menu at the top. |
| | * In Source Editor: click the normal '''Edit''' tab next time. |
|
| |
|
| Example: | | '''Example (source)''' |
| | | <nowiki> |
| <nowiki>{{ClassInfoBox | | {{ClassInfoBox |
| | Role = Melee <br> Poison | | | Role = Melee <br> Poison |
| | Weapons = Dagger | | | Weapons = Dagger |
| | STR = 9 | | | STR = 9 |
| | AGI = 12 | | | AGI = 12 |
| | VIT = 1 | | | VIT = 1 |
| | INT = 1 | | | INT = 1 |
| | DEX = 9 | | | DEX = 9 |
| | LUK = 1 | | | LUK = 1 |
| }} | | }} |
| </nowiki> | | </nowiki> |
| →
| | |
| | '''Result''' |
| | |
| | Look at the far right, and now you can see the infobox that populates on each class page. |
| {{ClassInfoBox | | {{ClassInfoBox |
| | Role = Melee <br> Poison | | | Role = Melee <br> Poison |
| | Weapons = Dagger | | | Weapons = Dagger |
| | STR = 9 | | | STR = 9 | AGI = 12 | VIT = 1 |
| | AGI = 12 | | | INT = 1 | DEX = 9 | LUK = 1 |
| | VIT = 1 | |
| | INT = 1 | |
| | DEX = 9 | |
| | LUK = 1 | |
| }} | | }} |
|
| |
|
| | | '''Tips''' |
| | | * Using the correct names for things is important, as some fields will try to do fancy things with the text. For example, it may try to link to the database. |
| You can also use the normal edit function to directly edit a table. Simply doubleclick on any inserted template, and a popup box will show up that will let you enter in all the individual fields:
| | * Use <nowiki><br/></nowiki> to add a new line inside a field. This will break up the text, making it look cleaner. |
| | | * If a link shows red, the page title might be misspelled or missing—double-check. |
| [[File:Edit Template Example.png|250px]]
| |
|
| |
|
| == Wiki Headers (Sections) == | | == Wiki Headers (Sections) == |
Line 171: |
Line 197: |
| * [[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] | | * [[File:NeutralIcon.png|15px]] [[Elements#Neutral|Neutral]] |
|
| |
|
| == Guide-Specific Section == | | == Linking to the Database == |
| This section explains how to approach different kinds of guides.
| |
|
| |
|
| === Class Build Guides ===
| | You can link an item directly from the database by using a special WikiLink called an external link. |
| Each class has its own set of build pages under a dedicated namespace. Use these to publish your favorite builds.
| |
|
| |
|
| '''Note: Wikis are collaborative.''' You can ask others not to edit your guide, but unless a page is locked, anyone may improve it.
| | In order to find items, please use the following link to directly access the database: [https://spiritvale.info/ https://spiritvale.info/] |
|
| |
|
| * [[Guides:Warrior Builds]]
| | <nowiki> |
| * [[Guides:Knight Builds]]
| | [https://www.example.com Example] |
| * [[Guides:Rogue Builds]]
| | </nowiki> |
| * [[Guides:Scout Builds]]
| |
| * [[Guides:Mage Builds]]
| |
| * [[Guides:Summoner Builds]]
| |
| * [[Guides:Acolyte Builds]]
| |
| | |
| '''Quick start'''
| |
| # Open your class page above and click '''Edit'''.
| |
| # Add a bullet link to your new page, e.g. <code>[[Guides:Your Build Name]]</code>, then save.
| |
| # Click the red link to create the page, and paste one of the templates below.
| |
| | |
| ''Tip: The gear box auto-links from the item '''Name''' fields. Don’t add separate “Link” parameters. Use Card1/2 (and up to Card4 for weapons).''
| |
| | |
| <div class="mw-collapsible mw-collapsed" style="width:100%; max-width:650px; overflow:auto;">
| |
| <div style="font-weight:bold; line-height:1.6;">Leveling Build Template</div>
| |
| <div class="mw-collapsible-content">
| |
| | |
| <nowiki>
| |
| <noinclude>[[Category:Guides]]</noinclude>
| |
| {{Template:PageHeader
| |
| | PageImage =
| |
| | PageHeader =
| |
| }}
| |
| | |
| == Early Game Leveling ==
| |
| | |
| === Levels 1–10 ===
| |
| Content here.
| |
|
| |
|
| Recommended Maps:
| | Which will then look like this: |
| *
| | [https://www.example.com Example] |
|
| |
|
| Stat Priority:
| | === Creating Database Link === |
| *
| |
|
| |
|
| ---- | | # Find the page that you wish to link to, and copy the URL at the top. |
| | ## https://spiritvale.info/equipment/tome-of-the-first-hymn |
| | # Add the brackets to each side of the URL. |
| | ## <nowiki> [https://spiritvale.info/equipment/tome-of-the-first-hymn]</nowiki> |
| | # Add a space at the end, and then put in the name of the item. |
| | ## <nowiki> [https://spiritvale.info/equipment/tome-of-the-first-hymn Tome of the First Hymn]</nowiki> |
|
| |
|
| === Levels 10–30 ===
| | If done correctly, you will have a like will look and function like this: [https://spiritvale.info/equipment/tome-of-the-first-hymn Tome of the First Hymn] |
| Content here.
| |
| | |
| Recommended Maps:
| |
| *
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| ----
| |
| | |
| === Levels 30–40 ===
| |
| Content here.
| |
| | |
| Recommended Maps:
| |
| *
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| === Recommended Low-Level Gear ===
| |
| {{RecommendedItemInfoBox
| |
| <!-- Main Hand -->
| |
| | WeaponOneName =
| |
| | WeaponOneMap =
| |
| | WeaponOneAttribute =
| |
| | WeaponOneModifierOne =
| |
| | WeaponOneModifierTwo =
| |
| | WeaponOneCard1 =
| |
| | WeaponOneCard2 =
| |
| | WeaponOneCard3 =
| |
| | WeaponOneCard4 =
| |
| | |
| <!-- Off-Hand -->
| |
| | WeaponTwoName =
| |
| | WeaponTwoMap =
| |
| | WeaponTwoAttribute =
| |
| | WeaponTwoModifierOne =
| |
| | WeaponTwoModifierTwo =
| |
| | WeaponTwoCard1 =
| |
| | WeaponTwoCard2 =
| |
| | WeaponTwoCard3 =
| |
| | WeaponTwoCard4 =
| |
| | |
| <!-- Chest -->
| |
| | ChestName =
| |
| | ChestMap =
| |
| | ChestAttribute =
| |
| | ChestModifierOne =
| |
| | ChestModifierTwo =
| |
| | ChestCard1 =
| |
| | ChestCard2 =
| |
| | |
| <!-- Legwear -->
| |
| | LegwearName =
| |
| | LegwearMap =
| |
| | LegwearAttribute =
| |
| | LegwearModifierOne =
| |
| | LegwearModifierTwo =
| |
| | LegwearCard1 =
| |
| | LegwearCard2 =
| |
| | |
| <!-- Shoes -->
| |
| | ShoeName =
| |
| | ShoeMap =
| |
| | ShoeAttribute =
| |
| | ShoeModifierOne =
| |
| | ShoeModifierTwo =
| |
| | ShoeCard1 =
| |
| | ShoeCard2 =
| |
| | |
| <!-- Headgear -->
| |
| | HeadgearName =
| |
| | HeadgearMap =
| |
| | HeadgearAttribute =
| |
| | HeadgearCard1 =
| |
| | HeadgearCard2 =
| |
| | |
| <!-- Face -->
| |
| | FaceName =
| |
| | FaceMap =
| |
| | FaceAttribute =
| |
| | FaceCard1 =
| |
| | FaceCard2 =
| |
| | |
| <!-- Utility -->
| |
| | UtilityName =
| |
| | UtilityMap =
| |
| | UtilityAttribute =
| |
| | UtilityCard1 =
| |
| | UtilityCard2 =
| |
| | |
| <!-- Accessory 1 -->
| |
| | AccessoryOneName =
| |
| | AccessoryOneMap =
| |
| | AccessoryOneAttribute=
| |
| | AccessoryOneCard1 =
| |
| | AccessoryOneCard2 =
| |
| | |
| <!-- Accessory 2 -->
| |
| | AccessoryTwoName =
| |
| | AccessoryTwoMap =
| |
| | AccessoryTwoAttribute=
| |
| | AccessoryTwoCard1 =
| |
| | AccessoryTwoCard2 =
| |
| | |
| <!-- Artifact -->
| |
| | ArtifactName =
| |
| | ArtifactMap =
| |
| | ArtifactAttribute =
| |
| | ArtifactModifier =
| |
| }}
| |
| | |
| == Mid Game Leveling ==
| |
| | |
| === Levels 40–60 ===
| |
| Content here.
| |
| | |
| Recommended Map:
| |
| *
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| === Levels 60–80 ===
| |
| Content here.
| |
| | |
| Recommended Map:
| |
| *
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| === Recommended Mid-Level Gear ===
| |
| {{RecommendedItemInfoBox
| |
| <!-- Main Hand -->
| |
| | WeaponOneName =
| |
| | WeaponOneMap =
| |
| | WeaponOneAttribute =
| |
| | WeaponOneModifierOne =
| |
| | WeaponOneModifierTwo =
| |
| | WeaponOneCard1 =
| |
| | WeaponOneCard2 =
| |
| | WeaponOneCard3 =
| |
| | WeaponOneCard4 =
| |
| | |
| <!-- Off-Hand -->
| |
| | WeaponTwoName =
| |
| | WeaponTwoMap =
| |
| | WeaponTwoAttribute =
| |
| | WeaponTwoModifierOne =
| |
| | WeaponTwoModifierTwo =
| |
| | WeaponTwoCard1 =
| |
| | WeaponTwoCard2 =
| |
| | WeaponTwoCard3 =
| |
| | WeaponTwoCard4 =
| |
| | |
| <!-- Chest -->
| |
| | ChestName =
| |
| | ChestMap =
| |
| | ChestAttribute =
| |
| | ChestModifierOne =
| |
| | ChestModifierTwo =
| |
| | ChestCard1 =
| |
| | ChestCard2 =
| |
| | |
| <!-- Legwear -->
| |
| | LegwearName =
| |
| | LegwearMap =
| |
| | LegwearAttribute =
| |
| | LegwearModifierOne =
| |
| | LegwearModifierTwo =
| |
| | LegwearCard1 =
| |
| | LegwearCard2 =
| |
| | |
| <!-- Shoes -->
| |
| | ShoeName =
| |
| | ShoeMap =
| |
| | ShoeAttribute =
| |
| | ShoeModifierOne =
| |
| | ShoeModifierTwo =
| |
| | ShoeCard1 =
| |
| | ShoeCard2 =
| |
| | |
| <!-- Headgear -->
| |
| | HeadgearName =
| |
| | HeadgearMap =
| |
| | HeadgearAttribute =
| |
| | HeadgearCard1 =
| |
| | HeadgearCard2 =
| |
| | |
| <!-- Face -->
| |
| | FaceName =
| |
| | FaceMap =
| |
| | FaceAttribute =
| |
| | FaceCard1 =
| |
| | FaceCard2 =
| |
| | |
| <!-- Utility -->
| |
| | UtilityName =
| |
| | UtilityMap =
| |
| | UtilityAttribute =
| |
| | UtilityCard1 =
| |
| | UtilityCard2 =
| |
| | |
| <!-- Accessory 1 -->
| |
| | AccessoryOneName =
| |
| | AccessoryOneMap =
| |
| | AccessoryOneAttribute=
| |
| | AccessoryOneCard1 =
| |
| | AccessoryOneCard2 =
| |
| | |
| <!-- Accessory 2 -->
| |
| | AccessoryTwoName =
| |
| | AccessoryTwoMap =
| |
| | AccessoryTwoAttribute=
| |
| | AccessoryTwoCard1 =
| |
| | AccessoryTwoCard2 =
| |
| | |
| <!-- Artifact -->
| |
| | ArtifactName =
| |
| | ArtifactMap =
| |
| | ArtifactAttribute =
| |
| | ArtifactModifier =
| |
| }}
| |
| | |
| == Late Game Leveling ==
| |
| | |
| === Levels 80–100 ===
| |
| Content here.
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| === Levels 100+ ===
| |
| Content here.
| |
| | |
| Stat Priority:
| |
| *
| |
| | |
| === Recommended High-Level Gear ===
| |
| {{RecommendedItemInfoBox
| |
| <!-- Main Hand -->
| |
| | WeaponOneName =
| |
| | WeaponOneMap =
| |
| | WeaponOneAttribute =
| |
| | WeaponOneModifierOne =
| |
| | WeaponOneModifierTwo =
| |
| | WeaponOneCard1 =
| |
| | WeaponOneCard2 =
| |
| | WeaponOneCard3 =
| |
| | WeaponOneCard4 =
| |
| | |
| <!-- Off-Hand -->
| |
| | WeaponTwoName =
| |
| | WeaponTwoMap =
| |
| | WeaponTwoAttribute =
| |
| | WeaponTwoModifierOne =
| |
| | WeaponTwoModifierTwo =
| |
| | WeaponTwoCard1 =
| |
| | WeaponTwoCard2 =
| |
| | WeaponTwoCard3 =
| |
| | WeaponTwoCard4 =
| |
| | |
| <!-- Chest -->
| |
| | ChestName =
| |
| | ChestMap =
| |
| | ChestAttribute =
| |
| | ChestModifierOne =
| |
| | ChestModifierTwo =
| |
| | ChestCard1 =
| |
| | ChestCard2 =
| |
| | |
| <!-- Legwear -->
| |
| | LegwearName =
| |
| | LegwearMap =
| |
| | LegwearAttribute =
| |
| | LegwearModifierOne =
| |
| | LegwearModifierTwo =
| |
| | LegwearCard1 =
| |
| | LegwearCard2 =
| |
| | |
| <!-- Shoes -->
| |
| | ShoeName =
| |
| | ShoeMap =
| |
| | ShoeAttribute =
| |
| | ShoeModifierOne =
| |
| | ShoeModifierTwo =
| |
| | ShoeCard1 =
| |
| | ShoeCard2 =
| |
| | |
| <!-- Headgear -->
| |
| | HeadgearName =
| |
| | HeadgearMap =
| |
| | HeadgearAttribute =
| |
| | HeadgearCard1 =
| |
| | HeadgearCard2 =
| |
| | |
| <!-- Face -->
| |
| | FaceName =
| |
| | FaceMap =
| |
| | FaceAttribute =
| |
| | FaceCard1 =
| |
| | FaceCard2 =
| |
| | |
| <!-- Utility -->
| |
| | UtilityName =
| |
| | UtilityMap =
| |
| | UtilityAttribute =
| |
| | UtilityCard1 =
| |
| | UtilityCard2 =
| |
| | |
| <!-- Accessory 1 -->
| |
| | AccessoryOneName =
| |
| | AccessoryOneMap =
| |
| | AccessoryOneAttribute=
| |
| | AccessoryOneCard1 =
| |
| | AccessoryOneCard2 =
| |
| | |
| <!-- Accessory 2 -->
| |
| | AccessoryTwoName =
| |
| | AccessoryTwoMap =
| |
| | AccessoryTwoAttribute=
| |
| | AccessoryTwoCard1 =
| |
| | AccessoryTwoCard2 =
| |
| | |
| <!-- Artifact -->
| |
| | ArtifactName =
| |
| | ArtifactMap =
| |
| | ArtifactAttribute =
| |
| | ArtifactModifier =
| |
| }}
| |
| | |
| == Endgame Overview ==
| |
| Content here.
| |
| | |
| === Recommended End Game Gear ===
| |
| {{RecommendedItemInfoBox
| |
| <!-- Main Hand -->
| |
| | WeaponOneName =
| |
| | WeaponOneMap =
| |
| | WeaponOneAttribute =
| |
| | WeaponOneModifierOne =
| |
| | WeaponOneModifierTwo =
| |
| | WeaponOneCard1 =
| |
| | WeaponOneCard2 =
| |
| | WeaponOneCard3 =
| |
| | WeaponOneCard4 =
| |
| | |
| <!-- Off-Hand -->
| |
| | WeaponTwoName =
| |
| | WeaponTwoMap =
| |
| | WeaponTwoAttribute =
| |
| | WeaponTwoModifierOne =
| |
| | WeaponTwoModifierTwo =
| |
| | WeaponTwoCard1 =
| |
| | WeaponTwoCard2 =
| |
| | WeaponTwoCard3 =
| |
| | WeaponTwoCard4 =
| |
| | |
| <!-- Chest -->
| |
| | ChestName =
| |
| | ChestMap =
| |
| | ChestAttribute =
| |
| | ChestModifierOne =
| |
| | ChestModifierTwo =
| |
| | ChestCard1 =
| |
| | ChestCard2 =
| |
| | |
| <!-- Legwear -->
| |
| | LegwearName =
| |
| | LegwearMap =
| |
| | LegwearAttribute =
| |
| | LegwearModifierOne =
| |
| | LegwearModifierTwo =
| |
| | LegwearCard1 =
| |
| | LegwearCard2 =
| |
| | |
| <!-- Shoes -->
| |
| | ShoeName =
| |
| | ShoeMap =
| |
| | ShoeAttribute =
| |
| | ShoeModifierOne =
| |
| | ShoeModifierTwo =
| |
| | ShoeCard1 =
| |
| | ShoeCard2 =
| |
| | |
| <!-- Headgear -->
| |
| | HeadgearName =
| |
| | HeadgearMap =
| |
| | HeadgearAttribute =
| |
| | HeadgearCard1 =
| |
| | HeadgearCard2 =
| |
| | |
| <!-- Face -->
| |
| | FaceName =
| |
| | FaceMap =
| |
| | FaceAttribute =
| |
| | FaceCard1 =
| |
| | FaceCard2 =
| |
| | |
| <!-- Utility -->
| |
| | UtilityName =
| |
| | UtilityMap =
| |
| | UtilityAttribute =
| |
| | UtilityCard1 =
| |
| | UtilityCard2 =
| |
| | |
| <!-- Accessory 1 -->
| |
| | AccessoryOneName =
| |
| | AccessoryOneMap =
| |
| | AccessoryOneAttribute=
| |
| | AccessoryOneCard1 =
| |
| | AccessoryOneCard2 =
| |
| | |
| <!-- Accessory 2 -->
| |
| | AccessoryTwoName =
| |
| | AccessoryTwoMap =
| |
| | AccessoryTwoAttribute=
| |
| | AccessoryTwoCard1 =
| |
| | AccessoryTwoCard2 =
| |
| | |
| <!-- Artifact -->
| |
| | ArtifactName =
| |
| | ArtifactMap =
| |
| | ArtifactAttribute =
| |
| | ArtifactModifier =
| |
| }}
| |
| </nowiki>
| |
| </div>
| |
| </div>
| |
| | |
| <div class="mw-collapsible mw-collapsed" style="width:100%; max-width:650px; overflow:auto;">
| |
| <div style="font-weight:bold; line-height:1.6;">Specialized Build Template</div>
| |
| <div class="mw-collapsible-content">
| |
| | |
| <nowiki>
| |
| <noinclude>[[Category:Guides]]</noinclude>
| |
| {{Template:PageHeader
| |
| | PageImage =
| |
| | PageHeader =
| |
| }}
| |
| | |
| == Build Overview ==
| |
| Briefly explain what the build does, how it functions, and whether it needs specific gear.
| |
| | |
| == Core Mechanics & Requirements ==
| |
| Describe how to play the build, what makes it viable, and how to obtain key pieces.
| |
| | |
| === Skills ===
| |
| * Primary Skill(s):
| |
| * Secondary/Support Skill(s):
| |
| * Key Passives/Talents:
| |
| | |
| === Equipment & Cards ===
| |
| * Weapon(s):
| |
| * Armor:
| |
| * Accessories:
| |
| * Cards:
| |
| | |
| === Stat Priorities & Breakpoints ===
| |
| *
| |
| | |
| === Acquisition Guide ===
| |
| * Skills (quests/vendors/drops):
| |
| * Weapons (maps/bosses/vendors):
| |
| * Cards (maps/bosses):
| |
| | |
| == Maps & Use Cases ==
| |
| Where the build shines (bossing, party support, farming).
| |
| | |
| === General Maps ===
| |
| *
| |
| | |
| === Bossing Targets ===
| |
| *
| |
| | |
| === Party vs. Solo Notes ===
| |
| *
| |
| | |
| == Recommended Gear ==
| |
| {{RecommendedItemInfoBox
| |
| <!-- Main Hand -->
| |
| | WeaponOneName =
| |
| | WeaponOneMap =
| |
| | WeaponOneAttribute =
| |
| | WeaponOneModifierOne =
| |
| | WeaponOneModifierTwo =
| |
| | WeaponOneCard1 =
| |
| | WeaponOneCard2 =
| |
| | WeaponOneCard3 =
| |
| | WeaponOneCard4 =
| |
| | |
| <!-- Off-Hand -->
| |
| | WeaponTwoName =
| |
| | WeaponTwoMap =
| |
| | WeaponTwoAttribute =
| |
| | WeaponTwoModifierOne =
| |
| | WeaponTwoModifierTwo =
| |
| | WeaponTwoCard1 =
| |
| | WeaponTwoCard2 =
| |
| | WeaponTwoCard3 =
| |
| | WeaponTwoCard4 =
| |
| | |
| <!-- Chest -->
| |
| | ChestName =
| |
| | ChestMap =
| |
| | ChestAttribute =
| |
| | ChestModifierOne =
| |
| | ChestModifierTwo =
| |
| | ChestCard1 =
| |
| | ChestCard2 =
| |
| | |
| <!-- Legwear -->
| |
| | LegwearName =
| |
| | LegwearMap =
| |
| | LegwearAttribute =
| |
| | LegwearModifierOne =
| |
| | LegwearModifierTwo =
| |
| | LegwearCard1 =
| |
| | LegwearCard2 =
| |
| | |
| <!-- Shoes -->
| |
| | ShoeName =
| |
| | ShoeMap =
| |
| | ShoeAttribute =
| |
| | ShoeModifierOne =
| |
| | ShoeModifierTwo =
| |
| | ShoeCard1 =
| |
| | ShoeCard2 =
| |
| | |
| <!-- Headgear -->
| |
| | HeadgearName =
| |
| | HeadgearMap =
| |
| | HeadgearAttribute =
| |
| | HeadgearCard1 =
| |
| | HeadgearCard2 =
| |
| | |
| <!-- Face -->
| |
| | FaceName =
| |
| | FaceMap =
| |
| | FaceAttribute =
| |
| | FaceCard1 =
| |
| | FaceCard2 =
| |
| | |
| <!-- Utility -->
| |
| | UtilityName =
| |
| | UtilityMap =
| |
| | UtilityAttribute =
| |
| | UtilityCard1 =
| |
| | UtilityCard2 =
| |
| | |
| <!-- Accessory 1 -->
| |
| | AccessoryOneName =
| |
| | AccessoryOneMap =
| |
| | AccessoryOneAttribute=
| |
| | AccessoryOneCard1 =
| |
| | AccessoryOneCard2 =
| |
| | |
| <!-- Accessory 2 -->
| |
| | AccessoryTwoName =
| |
| | AccessoryTwoMap =
| |
| | AccessoryTwoAttribute=
| |
| | AccessoryTwoCard1 =
| |
| | AccessoryTwoCard2 =
| |
| | |
| <!-- Artifact -->
| |
| | ArtifactName =
| |
| | ArtifactMap =
| |
| | ArtifactAttribute =
| |
| | ArtifactModifier =
| |
| }}
| |
| </nowiki>
| |
| </div>
| |
| </div>
| |