Game Overview

Equip NFTs, Battle, Earn & Evolve

WHATIF Battles For Riches: Discord Bot Specification

๐ŸŽฎ Core Command Structure

Primary Commands

  • /menu – Opens interactive button-based game menu
  • /attack @user – Initiate PvP combat
  • /defend – Refresh deed protection (30-minute timer)
  • /quest
  • /quest start – Begin PvE adventure
  • /quest status – Check current progress
  • /quest abandon – Forfeit current quest
  • /equip – Equipment management interface
  • /stats – View player statistics
  • /leaderboard – Rankings display
  • /revive – Use emblem for revival
  • /wallet
  • /wallet link <address> – Connect WAX wallet
  • /wallet sync – Update NFT inventory

Command Prerequisites

  • Wallet connection required for NFT operations
  • Equipment checks before combat
  • HP/stamina validation for actions
  • Cooldown enforcement between actions
  • Quest state validation for PvE

โš”๏ธ Combat System

PvP Mechanics

  • Attack Validation:
  • Attacker must have Fireman NFT equipped
  • Attacker HP > 0
  • Sufficient stamina (max 5/day)
  • Not in active quest
  • Damage Calculation:
  • Active Deed: 50% to Deed HP, 50% to Player HP
  • Expired Deed: 2x damage to Player HP
  • No Deed: Full damage to Player HP

PvE Quest System

  1. Minion Phase:
  • 1-3 randomized enemies
  • Scaled HP/DEF/ATK based on player level
  • Counter-attacks after each player action
  1. Risk Event:
  • Random challenge with risk/reward choice
  • Options: Cracked Core, Ember Ambush, Beacon of Valor
  • Impacts boss fight difficulty
  1. Boss Phase:
  • Level-scaled boss encounter
  • Enhanced rewards for completion
  • Failure = quest termination

๐ŸŽ Equipment System

NFT Categories

  1. Fireman (Attack):
  • Template-based attack power
  • Daily stamina limit (5)
  • Rarity affects base stats
  1. Deeds (Defense):
  • Passive protection
  • 30-minute active window
  • HP based on template
  1. Emblems (Revival):
  • Limited weekly uses
  • HP restoration on use
  • Three tiers available
  1. Gear (Boosts):
  • Six equipment slots:
    • Crest: Points boost
    • Book: XP boost
    • Charm: NFT drop boost
    • Boots: Stamina boost
    • Shield: Defense boost
    • Sword: Attack boost
  • Percentage-based enhancements
  • Stackable bonuses

Equipment Rules

  • One item per slot
  • Real-time blockchain verification
  • Automatic stat recalculation
  • Gear persists through combat

๐Ÿ“Š Progression System

Leveling

  • Base HP: 500 (Level 1)
  • XP Requirements:
  • Level 2: 1000 XP
  • +50% per subsequent level
  • HP Growth: +10% per level (compound)

Points & Rewards

  • Points from actual HP damage
  • Separate PvP/PvE tracking
  • Daily reward eligibility (top 50%)
  • Seasonal token distribution

โฐ Reset Schedule

Daily (12:00 AM EST)

  • Fireman stamina refresh
  • PvE counter reset
  • Defense timer clear
  • Reward distribution

Weekly (Fridays 12:00 AM EST)

  • Revive counter reset
  • Quest completion tallies
  • Gear bonus recalculation

Monthly (1st 12:00 AM EST)

  • Leaderboard reset
  • Winner announcements
  • Token distribution
  • Season transition

๐Ÿ” Security & Validation

Blockchain Integration

  • Real-time WAX ownership verification
  • Exponential backoff for API calls
  • Fallback systems for connectivity issues
  • Transaction logging and verification

Data Integrity

  • Transaction-based updates
  • Concurrent action prevention
  • State validation before operations
  • Automatic error recovery

๐Ÿ† Leaderboard System

Season Format

  • 45-day active competition
  • 7-day inter-season break
  • Point accumulation tracking
  • Proportional reward distribution

Daily Rankings

  • Real-time updates
  • Separate PvP/PvE tracking
  • Gear boost consideration
  • Automatic daily posts

๐Ÿ“ฑ UI/UX Features

Button Navigation

  • Main menu interface
  • Equipment selection
  • Battle controls
  • Quest progression
  • Status displays

Embed Formatting

  • Color-coded messages
  • Progress indicators
  • Battle summaries
  • Equipment displays
  • Status updates

๐Ÿ”„ Error Handling

Recovery Systems

  • Transaction rollback
  • State restoration
  • Connection retry logic
  • User feedback

Validation Chain

  1. Command prerequisites
  2. Resource availability
  3. State consistency
  4. Action execution
  5. Result verification

๐Ÿ› ๏ธ Administrative Tools

Command Access

  • Role-based permissions
  • System reset capabilities
  • Player management
  • NFT verification

Monitoring

  • Activity logging
  • Error tracking
  • Performance metrics
  • State validation

โœ… Integration Plan: eosjs for NFT Transfers
๐Ÿ”ง Step 1: Setup (Add to your bot’s service layer)

const fetch = require('node-fetch');
const { Api, JsonRpc } = require('eosjs');
const { JsSignatureProvider } = require('eosjs/dist/eosjs-jssig');

const signatureProvider = new JsSignatureProvider([process.env.WAX_PRIVATE_KEY]);  // Securely stored
const rpc = new JsonRpc('https://api.wax.alohaeos.com', { fetch });
const api = new Api({ rpc, signatureProvider, textDecoder: new TextDecoder(), textEncoder: new TextEncoder() });

๐Ÿ”’ Use .env to store WAX_PRIVATE_KEY. Never hardcode it.

๐Ÿงฑ Step 2: Add Transfer Function (modular, reusable)

async function transferNFT({ from, to, asset_ids, memo = '' }) {
  try {
    const result = await api.transact({
      actions: [{
        account: 'atomicassets',
        name: 'transfer',
        authorization: [{
          actor: from,
          permission: 'active',
        }],
        data: {
          from,
          to,
          asset_ids,
          memo,
        },
      }]
    }, {
      blocksBehind: 3,
      expireSeconds: 300,
    });

    console.log('Transfer successful:', result.transaction_id);
    return result;
  } catch (err) {
    console.error('Transfer failed:', err);
    throw new Error('Transfer failed');
  }
}

๐Ÿ“ฆ Step 3: Use This in Existing Bot Logic
Daily Rewards:
Replace manual sending with:

await transferNFT({
  from: 'whatifreward',
  to: user.wallet,
  asset_ids: [nftId],
  memo: 'WHATIF Battle For Riches  daily reward!'
});

Admin Panel โ†’ “Grant NFT”:
Use button handler to trigger transferNFT() function after selecting a wallet and template ID.

๐Ÿค– Bot Name: WHATIF Battle Glory

  • Platform: Discord Bot (Node.js + Sequelize + PostgreSQL)
  • Blockchain Integration: WAX (AtomicAssets API)
  • Collection: whatifreward
  • Version: 2.1.0 (May 2025)

โœจ Latest Improvements (2.1.0)

  • Enhanced NFT Selection: NFTs are now clearly displayed with unique asset IDs in selection dropdowns
  • Robust WAX API Integration: Implemented exponential backoff retry system with 5 attempts for all blockchain operations
  • Error Handling Improvements: Centralized error handling system with informative user messages
  • Interaction Management: Fixed “already acknowledged” errors with safe reply mechanism
  • Asset ID Verification: Added asset ID validation to prevent confusion with similar NFTs

๐Ÿš€ Bot Purpose

Create a fully automated, strategic NFT-powered PvP + PvE battle system inside Discord. Players connect WAX wallets, equip Fireman NFTs (attackers) and Deed NFTs (defenders), battle other players or AI enemies, earn XP and leaderboard points, and embark on randomized, story-driven questlines. All gameplay is governed by fairness, structured cooldowns, token ownership, NFT stamina, defense rules, and leaderboard resets.

๐ŸŒ Supported Schemas

  • fireman (Attackers)
  • deeds (Defenders)
  • emblems (Revive Coins)
  • gear (Player Boost)

๐Ÿ’ป Technical Architecture

  • Frontend: Discord.js slash commands and interactions
  • Backend:
  • Node.js application with sequelize ORM
  • PostgreSQL database for persistent storage
  • WAX API integration for blockchain operations
  • Scheduled tasks using node-schedule
  • Core Services:
  • WAX Blockchain Service: NFT verification and data retrieval
  • Battle Service: Combat calculations and rewards
  • Quest Service: PvE progression tracking
  • Reward Service: XP and points distribution
  • NFT Service: Asset categorization and stat calculation
  • Reset Service: Scheduled game maintenance
  • Reliability Features:
  • Exponential backoff retry mechanisms with 5 attempts for blockchain operations
  • Automatic data persistence with file-based backups
  • Memory-backed wallet connections for connectivity issues
  • Comprehensive error handling and user feedback

๐Ÿงฑ Core Gameplay Mechanics

Battle Type: PvP and PvE (quest)

Attackers: Fireman NFTs

Defenders: Deed NFTs (passively protect player)

Damage Rules:

  • If Deed is active: 50% to Deed HP, 50% to Player HP
  • If Deed expired (no defend in 30 minutes): 2x full damage to Player HP

Stamina:

  • All Fireman NFTs have 5 stamina/day (1 per attack)
  • Resets daily at 12:00 AM EST

Revives: Only usable at 0 HP using Emblem NFTs (weekly limit)

XP & Points: Earned only for real HP damage (not defense)

Leveling:

  • Start at Level 1: 500 HP
  • XP to Level 2: 1000 XP
  • XP increases 50% per level
  • HP increases 10% per level (compounded)

Leaderboard:

  • Points = total HP damage to players (PvP) or enemies (PvE)
  • Reset monthly @ 12:00 AM EST (1st)
  • Leaderboard post made with winners before reset

๐Ÿ›ก๏ธ Deed Mechanics

  • Player can equip one Deed
  • Deeds have max HP and absorb 50% of incoming damage
  • Must use /defend to keep active
  • If not refreshed in 30 minutes, considered expired

๐Ÿ“† Reset Schedule (All Times EST)

Daily @ 12:00 AM:

  • Fireman stamina reset
  • PvE attack counters reset
  • Defense timers cleared

Weekly @ 12:00 AM Fridays:

  • Revive usage counters reset

Monthly @ 12:00 AM on 1st:

  • Leaderboard points reset
  • Discord post showing top 10 players, best PvP score, top questers

โš”๏ธ PvP System

  • Command: /attack @user
  • System checks attacker stamina, defender Deed status
  • Applies correct damage split
  • XP and points awarded for HP damage only

๐ŸŽญ PvE Quest System

  • Command: /quest start
  • Locks player in PvE mode (no PvP attacking)
  • Player can still be attacked
  • Must complete full quest to earn XP/Points
  • shield have max HP and absorb 50% of incoming damage

Each quest has:

  • 1โ€“3 randomized minion fights
  • 1 randomized risk event (choice based)
  • 1 randomized boss
LevelMinion (HP/DEF/ATK)SubminionsBoss (HP/SHLD/ATK)Boss Options
1+50 / 25 / 16Ember Bug, Lava Mite, Firebat250 / 125 / 30Ash Hound, Pyre Troll, Ember Golem
3+150 / 75 / 24Flame Rat, Heat Leech, Torchling750 / 375 / 45Furnace Lord, Ember Serpent, Ash Giant
5+250 / 125 / 32Charred Goblin, Blaze Imp, Firefly Swarm1250 / 625 / 60Magma Drake, Cinder King, Volcanic Ghoul
8+400 / 200 / 40Ash Wraith, Smolderling, Rift Toad2000 / 1000 / 80Rift Phoenix, Embercore Behemoth, Hellshade
10+500 / 250 / 48Fire Ghoul, Pyro Knight, Infernal Cub2500 / 1250 / 95Ignis Prime, Obsidian Hydra, Lava Warlock
15+750 / 375 / 56Scorch Beast, Void Ember, Soot Brute3750 / 1875 / 115Flame Tyrant, Cursed Titan, Rift Revenant
20+1000 / 500 / 64Rift Titanling, Inferno Mage, Ember Shade5000 / 2500 / 135Coreborn Warlord, Pyrosoul Leviathan, Infernal Devourer

Risk Event Options:

  • Cracked Core: Massive bonus or damage trap
  • Ember Ambush: Optional elite minion for high reward
  • Beacon of Valor: Heal 25% or face enraged boss

๐Ÿ“Š Backend Tracking

  • NFT stamina usage per asset ID
  • Fireman/NFT battle logs (PvP/PvE)
  • Revive status per wallet
  • PvE quest progression (active quest, boss, enemy HP)
  • Player stats: HP, XP, level, equipped NFTs
  • Deed HP and refresh status
  • Leaderboard tracking and winner history

๐Ÿ”ง Technical Reliability Features

  • Asset ID Based Equipping: NFTs are selected by unique asset ID rather than template ID to prevent confusion
  • Automatic Data Persistence: Player data is automatically backed up and restored between bot restarts
  • WAX API Resilience:
  • Exponential backoff retry system for all blockchain interactions
  • Graceful handling of rate limits and temporary errors
  • 5 retry attempts for critical operations
  • Defensive Error Handling:
  • Centralized error response system
  • Detailed user feedback for troubleshooting
  • Logging of all critical operations and failures
  • Interaction Management:
  • Prevention of “already acknowledged” errors
  • Graceful handling of expired interactions
  • Safe reply mechanisms for all commands

๐Ÿ† Leaderboard System

๐Ÿ“… Seasonal Format

  • Season Length: 45 days of active competition
  • Break Period: 7 days between seasons
  • Seasonal Leaderboard: Total points are accumulated from daily performance
  • Emphasis on consistency and strategic play across the full season
  • A fixed total reward pool (e.g. 1,000,000 tokens) is allocated for the season
  • Tokens are distributed proportionally based on each playerโ€™s total points relative to all players

๐Ÿ“Š Daily Leaderboard Mechanics

  • Each day, players earn points for:
  • โœ… Real HP damage dealt in PvP
  • โœ… Enemy HP damage dealt in PvE quests (minions and bosses)
  • โŒ Points are not awarded for:
  • Damage absorbed by Deeds (PvP)
  • Enemy Defense (PvE quests – minions and bosses)
  • Incomplete quests or PvP forfeits
  • Daily points are added to the player’s seasonal total
  • Final leaderboard posted publicly in Discord Channel ID: 1367978324843954199 before daily reset
  • Leaderboard is visible via /leaderboard daily and /leaderboard season

๐ŸŽ Daily Rewards โ€“ NFT Boost Packs

  • At the end of each day (12:00 AM EST):
  • The top 50% of active players receive a daily reward pack (Gear NFTs)
  • ๐Ÿ“ฆ Reward Pack Logic:
  • Random Gear NFT from approved templates
  • Better rewards for higher daily placement
  • Gear that increases ๐ŸŽ NFT Gain boosts loot chance
  • Rewards are sent manually via wallet delivery (based on linked WAX wallet)

๐Ÿฅ‡ End-of-Season Wrap-Up

  • After 45 days:
  • Seasonal points are totaled for all players
  • Each playerโ€™s token reward is calculated based on their point share:
    playerTokens = (playerPoints / totalSeasonPoints) ร— totalTokenPool
  • Example: If Player A earns 4,000 points out of a total 80,000, and the pool is 1,000,000 tokens:
    4,000 / 80,000 ร— 1,000,000 = 50,000 tokens
  • Final leaderboard posted publicly in Discord Channel ID: 1366447747732996116 before reset
  • Winners rewarded with tokens, special NFTs, or exclusive status roles
  • The leaderboard then resets, and a 7-day cooldown period begins before the next season

๐Ÿง  Backend Tracking

  • Daily points per user
  • Cumulative seasonal points
  • Historical leaderboard standings
  • PvP and PvE battle logs with timestamps
  • NFT reward eligibility and drop history
  • Boost gear effectiveness (gear influence on rewards)
  • Participation tracking for fairness audits
  • Token payout calculations based on seasonal performance

๐Ÿงญ Core Game Navigation (Using Buttons)
All core features are now accessible with buttons instead of slash commands:

Feature Button Label / Action Behavior
๐Ÿ“œ Main Menu ๐Ÿ“‹ Open Menu Sends buttons for: Battle, Quest, Equip, Status, Rewards
โš”๏ธ Battle PvP ๐Ÿ†š Challenge Player Dropdown to select user > Button to Confirm
๐ŸŒ‹ PvE Quest ๐Ÿ”ฅ Start Quest Begins PvE flow: Minions โ†’ Risk Event โ†’ Boss
๐Ÿ›ก๏ธ Equip NFTs ๐Ÿงฉ Equip NFT Dropdown for Fireman/Deed NFTs > Confirm Button
๐Ÿ… Leaderboards ๐Ÿ“Š View Leaderboard Sub-buttons: Daily / Seasonal
๐ŸŽ Claim Rewards ๐ŸŽ Daily Rewards Shows eligibility and allows claiming with button
๐Ÿฉบ Revive ๐Ÿ’– Use Emblem If HP = 0, show eligible Emblem NFTs to revive
โš™๏ธ Admin Panel ๐Ÿ” Admin Tools Only shows for Admins with relevant permissions

๐ŸŽฎ In-Game Actions (Buttons During Battles)
๐Ÿง‘โ€๐Ÿš’ PvP Battle Flow
Player selects “๐Ÿ†š Challenge Player”

Dropdown shows eligible users

After selecting, buttons display:

โœ… Confirm Battle

โŒ Cancel

During battle:

๐Ÿ—ก๏ธ Attack

๐Ÿ›ก๏ธ Defend

๐Ÿƒ Retreat
Buttons dynamically update based on stamina, status, etc.

๐ŸŒ‹ PvE Quest Flow
Click ๐Ÿ”ฅ Start Quest

Receive minion with buttons:

๐Ÿ—ก๏ธ Fight Minion

๐Ÿ”„ Skip (Penalty)

After minions:

Risk Event: 3 Option Buttons (e.g. โ€œOpen Cracked Coreโ€, โ€œFace Ambushโ€, โ€œBlessing Beaconโ€)

Then:

๐Ÿ—ก๏ธ Fight Boss (with boss HP and stats shown)

๐ŸŽ›๏ธ Equip Flow (NFT UI Overhaul)
๐Ÿงฉ Equip Fireman โ†’ Dropdown of owned asset IDs

๐Ÿฐ Equip Deed โ†’ Dropdown

๐Ÿ“ฟ Equip Boost Gear โ†’ Gear slot-by-slot interactive menu

Confirm all equipped NFTs with:

โœ… Finalize Loadout

๐Ÿ“Ÿ Wallet Connection + Verification
On join: Bot shows โ€œ๐Ÿ”— Link Walletโ€ button

Clicking triggers modal or DM asking for wallet address

Confirm with signed message (future update) or bot saves mapping

๐Ÿ› ๏ธ Admin Button System
Admins see extra buttons under /admin panel or via reaction:

๐Ÿ†• Add Template

๐Ÿง  Update Stats

๐Ÿ” Reset Stamina

๐Ÿงฌ Force Reset Game

๐Ÿ“จ Send NFT Reward

Actions launch forms or modals to input data

๐Ÿง  Data Tracking (Unchanged from original):
Stamina/HP/XPs/Levels

Leaderboard points (daily/seasonal)

NFT equipping via asset IDs

Battle results, quest logs

Emblem revives & cooldowns

Token payouts and drop logs

๐Ÿ“ฆ Daily Reward Pack Flow
At reset (12 AM EST), bot checks top 50%:

Eligible players get โ€œ๐ŸŽ Claim Daily Rewardโ€ button

Clicking confirms wallet + sends NFT via transferNFT() function

๐Ÿ End-of-Season Summary
Player gets DM or channel alert:

โ€œSeason Ending โ€“ View Rewards?โ€

Button: ๐Ÿ“Š Show My Ranking โ†’ Displays:

Points, rank, token reward

Button: ๐ŸŽ Claim Season Reward

๐Ÿงฉ NFT Template List

fireman schemaTemplate IDRarityAttack Power
Fireheart Mystic878281Mystic160
Ember Godking878279Legendary80
WHATIF Flame Lord878274Epic40
Inferno Titan878273Rare20
Blaze Warden878270Uncommon10
WHATIF Flameborn878268Common5
Phoenix Mystic880461Mystic160
Serpent880460Legendary80
Dragon880456Epic40
Chimera880455Rare20
Kraken880454Uncommon10
Cyclops880453Common5
Phoenix + WTFWUF881084Mystic160
Serpent + WTFWUF881083Legendary80
Dragon + WTFWUF881082Epic40
Chimera + WTFWUF881081Rare20
Kraken + WTFWUF881080Uncommon10
Cyclops + WTFWUF881079Common5
FIREMAN PHOENIX + WTFWUF884624Super Mystic320
Ascended FIREMAN PHOENIX + WTFWUF884627Ascended Super Mystic640
deeds schemaTemplate IDRarityDeed HP
Blueprint Specs834331Common50
Blueprint Layout834332Rare100
WHATIF Rewards Steel Beam834333Epic200
WHATIF Deeds Foundation834345Legendary400
Dan Deed834391Mystic500
WTF It’s A Blue Bill818455Common1000
The House That WUF Built818254Common1000
Mossy Peaks Haven811270Common1000
A Curious Case of WHATIF818457Rare2000
Pawsibilities818258Rare2000
Pinewood Estates811274Rare2000
Sunsetting Shoebill818459Epic3000
Doggy Dreamhouse818259Epic3000
The Guarded Castle Of Profits811275Epic3000
King of What If818460Legendary4000
Barkitecture of the Future818261Legendary4000
WHATIF It Was Evermore Estates811276Legendary4000
The Feathered Fortune Teller818462Mystic5000
The Shrine of Infinite Pawsibilities818262Mystic5000
The Timekeeper’s Tower811278Mystic5000

๐Ÿ”ฎ Emblems (Revive Coins) ::ONLY THESE TEMPLATES::

NameTemplate IDRevives Allowed
Gateway Coin8868481 revive per coin
Ascension Coin8868493 revives per coin
Omniverse Coin8868509 revives per coin
Boost TypeEffectPack Gear NameSuggested Slot
๐Ÿง  Points GainBoosts the number of leaderboard points earned in PvE/PvP battles.Crest of Glory PackBadge / Crest
๐Ÿ“˜ XP GainIncreases XP earned from battles, events, and quests.Library PackBook / Tome
๐ŸŽ NFT GainRaises the chance of receiving a random NFT during the daily 50% drop.Charm of Fire PackCharm / Amulet
๐Ÿ—ก๏ธ Attack BoostAdds flat or % bonus to player’s attack power.Blade Of Rage PackSword / Weapon
๐Ÿ›ก๏ธ Defense BoostAdds flat or % bonus to player’s defense (or reduces incoming damage).Flamewall Shield PackShield / Aegis
๐Ÿ’จ Stamina BoostAdds to max stamina or reduces stamina cost per action.Stamina Boot Boost PackBoots / Wings
  • There are no NFTs for Boosts at this moment we just need the feature implemented
Gear NameBoost Type% BonusTemplate IDSlot
Ashen Badge Of EffortPoints Gain+5%889137Crest
Flare Sigil Of PromisePoints Gain+12.5%889138Crest
Crest Of Rising FlamePoints Gain+25%889139Crest
Insignia Of Blazing MightPoints Gain+50%889140Crest
Ember Crest Of GloryPoints Gain+100%889141Crest
Halo Of The Eternal FlamePoints Gain+200%889142Crest
Gear NameBoost Type% BonusTemplate IDSlot
Singed Pages Of MemoryXP Gain+5%889143Book
Flickering GrimoireXP Gain+12.5%889144Book
Seared Codex Of InsightXP Gain+25%889147Book
Volcanic Lexicon Of LoreXP Gain+50%889148Book
Tome Of Blazing KnowledgeXP Gain+100%889149Book
Grimoire Of The Flame SeerXP Gain+200%889150Book
Gear NameBoost Type% BonusTemplate IDSlot
Coal Trinket Of ChanceNFT Gain+5%889153Charm
Ignited MedallionNFT Gain+12.5%889154Charm
Charm Of The Ember WindNFT Gain+25%889155Charm
Lucky Flame RelicNFT Gain+50%889156Charm
Charm Of Fortune’s FireNFT Gain+100%889157Charm
Phoenix Eye TalismanNFT Gain+200%889158Charm
Gear NameBoost Type% BonusTemplate IDSlot
Scorched Step SandalsStamina Boost+5%889078Boots
Ember-Tread BootsStamina Boost+12.5%889079Boots
Flame-Hardened BootsStamina Boost+25%889080Boots
Magmastride GreavesStamina Boost+50%889081Boots
Embercore WarbootsStamina Boost+100%889082Boots
Solarstride BootsStamina Boost+200%889083Boots
Gear NameBoost Type% BonusTemplate IDSlot
Ember-Cracked BucklerDefense Gain+5%889048Shield
Ember-Runed ShieldDefense Gain+12.5%889049Shield
Flamewall AegisDefense Gain+25%889050Shield
Lava Sentinel PlateDefense Gain+50%889051Shield
Firewarden’s WallDefense Gain+100%889052Shield
Aegis Of The Flame SentinelDefense Gain+200%889053Shield
Gear NameBoost Type% BonusTemplate IDSlot
Emberkind Training SwordAttack Boost+5%889015Sword
Blade Of The Molten PathAttack Boost+12.5%889016Sword
Inferno EdgeAttack Boost+25%889017Sword
Embersteel FlamefangAttack Boost+50%889043Sword
Sword Of Raging FireAttack Boost+100%889046Sword
Heartblade Of The Fire KingAttack Boost+200%889047Sword