Android build v1.0.27
This commit is contained in:
+1179
-20
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -328,7 +328,7 @@ function App() {
|
||||
: a.sequence - b.sequence)
|
||||
|
||||
return (
|
||||
<main className={`game-shell ${screen === 'dungeons' || screen === 'raids' ? 'dungeon-shell' : ''}`}>
|
||||
<main className={`game-shell ${screen === 'dungeons' || screen === 'raids' ? 'dungeon-shell' : ''} ${screen === 'customize' ? 'workshop-shell' : ''}`}>
|
||||
<header className="topbar app-header">
|
||||
<button
|
||||
className="brand-button"
|
||||
|
||||
@@ -386,6 +386,11 @@ export function CombatScreen({
|
||||
const nextFloatingTextId = useRef(1)
|
||||
const combatRef = useRef(initialCombatState)
|
||||
const selectedIdRef = useRef(partyTemplate[0].id)
|
||||
const runCombatTickRef = useRef<() => void>(() => {})
|
||||
const combatClockActiveRef = useRef(false)
|
||||
const lastCombatTickAtRef = useRef(performance.now())
|
||||
const statusRef = useRef(status)
|
||||
const pausedRef = useRef(paused)
|
||||
const { party, resource, enemyHealth, cooldowns, freeCastReady } = combatState
|
||||
const encounter = encounters[encounterIndex]
|
||||
const currentPart = getCurrentPart(encounterIndex)
|
||||
@@ -415,6 +420,9 @@ export function CombatScreen({
|
||||
enabled: dualScreenEnabled,
|
||||
} = useDualScreen()
|
||||
|
||||
statusRef.current = status
|
||||
pausedRef.current = paused
|
||||
|
||||
useEffect(() => {
|
||||
const now = Date.now()
|
||||
runStartedAtRef.current = now
|
||||
@@ -846,9 +854,7 @@ export function CombatScreen({
|
||||
if (spell) castSpell(spell)
|
||||
})
|
||||
|
||||
useEffect(() => {
|
||||
if (status !== 'playing' || paused) return
|
||||
const timer = window.setInterval(() => {
|
||||
const runCombatTick = useCallback(() => {
|
||||
const current = combatRef.current
|
||||
const nextElapsedTicks = current.elapsedTicks + 1
|
||||
const nextCooldowns = Object.fromEntries(
|
||||
@@ -1042,8 +1048,6 @@ export function CombatScreen({
|
||||
enemyHealth: nextEncounter.maxHealth,
|
||||
})
|
||||
addLog(`${encounter.enemyName} defeated. ${nextEncounter.enemyName} approaches.`, 'system')
|
||||
}, TICK_MS)
|
||||
return () => window.clearInterval(timer)
|
||||
}, [
|
||||
addLog,
|
||||
addFloatingHeal,
|
||||
@@ -1065,11 +1069,43 @@ export function CombatScreen({
|
||||
profile.character.name,
|
||||
setCombat,
|
||||
startPart,
|
||||
status,
|
||||
currentPart,
|
||||
paused,
|
||||
])
|
||||
|
||||
useEffect(() => {
|
||||
runCombatTickRef.current = runCombatTick
|
||||
}, [runCombatTick])
|
||||
|
||||
useEffect(() => {
|
||||
if (status === 'playing' && !paused) {
|
||||
if (!combatClockActiveRef.current) {
|
||||
lastCombatTickAtRef.current = performance.now()
|
||||
combatClockActiveRef.current = true
|
||||
}
|
||||
return
|
||||
}
|
||||
combatClockActiveRef.current = false
|
||||
}, [paused, status])
|
||||
|
||||
useEffect(() => {
|
||||
const timer = window.setInterval(() => {
|
||||
if (
|
||||
!combatClockActiveRef.current
|
||||
|| statusRef.current !== 'playing'
|
||||
|| pausedRef.current
|
||||
) return
|
||||
const now = performance.now()
|
||||
const dueTicks = Math.min(4, Math.floor((now - lastCombatTickAtRef.current) / TICK_MS))
|
||||
if (dueTicks <= 0) return
|
||||
lastCombatTickAtRef.current += dueTicks * TICK_MS
|
||||
for (let index = 0; index < dueTicks; index += 1) {
|
||||
if (statusRef.current !== 'playing' || pausedRef.current) return
|
||||
runCombatTickRef.current()
|
||||
}
|
||||
}, 50)
|
||||
return () => window.clearInterval(timer)
|
||||
}, [])
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
!reward
|
||||
|
||||
@@ -385,9 +385,7 @@ function scaledPvpBossExperience(
|
||||
type ComponentTemplate = { id: number; slug: string; name: string; itemLevel: number; glyph: string; description: string }
|
||||
const COMPONENT_ITEMS: Record<number, ComponentTemplate> = {
|
||||
1: { id: 600, slug: 'minor-component', name: 'Minor Component', itemLevel: 1, glyph: '◆', description: 'A basic crafting component.' },
|
||||
5: { id: 601, slug: 'basic-component', name: 'Basic Component', itemLevel: 5, glyph: '◇', description: 'A standard crafting component.' },
|
||||
10: { id: 602, slug: 'refined-component', name: 'Refined Component', itemLevel: 10, glyph: '◈', description: 'A refined crafting component.' },
|
||||
15: { id: 603, slug: 'advanced-component', name: 'Advanced Component', itemLevel: 15, glyph: '◉', description: 'An advanced crafting component.' },
|
||||
20: { id: 604, slug: 'superior-component', name: 'Superior Component', itemLevel: 20, glyph: '◎', description: 'A superior crafting component.' },
|
||||
25: { id: 605, slug: 'primal-component', name: 'Primal Component', itemLevel: 25, glyph: '✦', description: 'A primal crafting component.' },
|
||||
}
|
||||
|
||||
@@ -1211,366 +1211,6 @@
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1004,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 4,
|
||||
"slug": "cinderstep-boots",
|
||||
"name": "Honed Yian Kut-Ku Boots",
|
||||
"slot": "boots",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 3,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "b",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281201,
|
||||
"slug": "yian-kut-ku-coin-ilvl-1",
|
||||
"name": "Raw Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1002,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 2,
|
||||
"slug": "wardens-cinderwrap",
|
||||
"name": "Honed Bulldrome Chest",
|
||||
"slot": "chest",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 3,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "C",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280301,
|
||||
"slug": "bulldrome-coin-ilvl-1",
|
||||
"name": "Raw Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1003,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 6,
|
||||
"slug": "furnace-tenders-wraps",
|
||||
"name": "Honed Bulldrome Gloves",
|
||||
"slot": "gloves",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 3,
|
||||
"maxResourceBonus": 2,
|
||||
"glyph": "g",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280301,
|
||||
"slug": "bulldrome-coin-ilvl-1",
|
||||
"name": "Raw Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1001,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 5,
|
||||
"slug": "adepts-hood",
|
||||
"name": "Honed Bulldrome Helmet",
|
||||
"slot": "helmet",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 3,
|
||||
"maxResourceBonus": 4,
|
||||
"glyph": "^",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280301,
|
||||
"slug": "bulldrome-coin-ilvl-1",
|
||||
"name": "Raw Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1009,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 9,
|
||||
"slug": "sootglass-pendant",
|
||||
"name": "Honed Rathian Necklace",
|
||||
"slot": "necklace",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 4,
|
||||
"maxResourceBonus": 4,
|
||||
"glyph": "n",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282201,
|
||||
"slug": "rathian-coin-ilvl-1",
|
||||
"name": "Raw Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1008,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 8,
|
||||
"slug": "ashwalker-legwraps",
|
||||
"name": "Honed Rathian Pants",
|
||||
"slot": "pants",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 3,
|
||||
"maxResourceBonus": 3,
|
||||
"glyph": "P",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282201,
|
||||
"slug": "rathian-coin-ilvl-1",
|
||||
"name": "Raw Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1005,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 1,
|
||||
"slug": "emberglass-sigil",
|
||||
"name": "Honed Yian Kut-Ku Ring",
|
||||
"slot": "ring",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 4,
|
||||
"maxResourceBonus": 5,
|
||||
"glyph": "o",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281201,
|
||||
"slug": "yian-kut-ku-coin-ilvl-1",
|
||||
"name": "Raw Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1006,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 7,
|
||||
"slug": "warden-ember",
|
||||
"name": "Honed Yian Kut-Ku Trinket",
|
||||
"slot": "trinket",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 4,
|
||||
"maxResourceBonus": 4,
|
||||
"glyph": "*",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281201,
|
||||
"slug": "yian-kut-ku-coin-ilvl-1",
|
||||
"name": "Raw Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1007,
|
||||
"difficultyId": 1,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 3,
|
||||
"slug": "ashwood-crook",
|
||||
"name": "Honed Rathian Weapon",
|
||||
"slot": "weapon",
|
||||
"rarity": "common",
|
||||
"itemLevel": 5,
|
||||
"healingPower": 5,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "/",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282201,
|
||||
"slug": "rathian-coin-ilvl-1",
|
||||
"name": "Raw Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "common",
|
||||
"itemLevel": 1,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 1 crafting."
|
||||
},
|
||||
"quantity": 5,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1104,
|
||||
"difficultyId": 2,
|
||||
@@ -1931,366 +1571,6 @@
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1204,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 304,
|
||||
"slug": "runed-cinderstep-boots",
|
||||
"name": "Blue Yian Kut-Ku Boots",
|
||||
"slot": "boots",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 9,
|
||||
"maxResourceBonus": 8,
|
||||
"glyph": "b",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281210,
|
||||
"slug": "yian-kut-ku-coin-ilvl-10",
|
||||
"name": "Green Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1202,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 302,
|
||||
"slug": "runed-cinderwrap",
|
||||
"name": "Blue Bulldrome Chest",
|
||||
"slot": "chest",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 11,
|
||||
"maxResourceBonus": 3,
|
||||
"glyph": "C",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280310,
|
||||
"slug": "bulldrome-coin-ilvl-10",
|
||||
"name": "Green Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1203,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 306,
|
||||
"slug": "runed-furnace-wraps",
|
||||
"name": "Blue Bulldrome Gloves",
|
||||
"slot": "gloves",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 11,
|
||||
"maxResourceBonus": 6,
|
||||
"glyph": "g",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280310,
|
||||
"slug": "bulldrome-coin-ilvl-10",
|
||||
"name": "Green Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1201,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 3,
|
||||
"item": {
|
||||
"id": 305,
|
||||
"slug": "runed-adepts-hood",
|
||||
"name": "Blue Bulldrome Helmet",
|
||||
"slot": "helmet",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 9,
|
||||
"maxResourceBonus": 9,
|
||||
"glyph": "^",
|
||||
"description": "Crafted with Bulldrome coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 280310,
|
||||
"slug": "bulldrome-coin-ilvl-10",
|
||||
"name": "Green Bulldrome Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Bulldrome used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1209,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 309,
|
||||
"slug": "runed-sootglass-pendant",
|
||||
"name": "Blue Rathian Necklace",
|
||||
"slot": "necklace",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 12,
|
||||
"maxResourceBonus": 10,
|
||||
"glyph": "n",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282210,
|
||||
"slug": "rathian-coin-ilvl-10",
|
||||
"name": "Green Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1208,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 308,
|
||||
"slug": "runed-ashwalker-legwraps",
|
||||
"name": "Blue Rathian Pants",
|
||||
"slot": "pants",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 9,
|
||||
"maxResourceBonus": 9,
|
||||
"glyph": "P",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282210,
|
||||
"slug": "rathian-coin-ilvl-10",
|
||||
"name": "Green Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1205,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 301,
|
||||
"slug": "runed-emberglass-sigil",
|
||||
"name": "Blue Yian Kut-Ku Ring",
|
||||
"slot": "ring",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 10,
|
||||
"maxResourceBonus": 13,
|
||||
"glyph": "o",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281210,
|
||||
"slug": "yian-kut-ku-coin-ilvl-10",
|
||||
"name": "Green Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1206,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 12,
|
||||
"item": {
|
||||
"id": 307,
|
||||
"slug": "runed-warden-ember",
|
||||
"name": "Blue Yian Kut-Ku Trinket",
|
||||
"slot": "trinket",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 12,
|
||||
"maxResourceBonus": 10,
|
||||
"glyph": "*",
|
||||
"description": "Crafted with Yian Kut-Ku coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 281210,
|
||||
"slug": "yian-kut-ku-coin-ilvl-10",
|
||||
"name": "Green Yian Kut-Ku Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Yian Kut-Ku used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1207,
|
||||
"difficultyId": 2,
|
||||
"sourceDungeonId": 1,
|
||||
"sourceEncounterId": 22,
|
||||
"item": {
|
||||
"id": 303,
|
||||
"slug": "runed-ashwood-crook",
|
||||
"name": "Blue Rathian Weapon",
|
||||
"slot": "weapon",
|
||||
"rarity": "rare",
|
||||
"itemLevel": 15,
|
||||
"healingPower": 15,
|
||||
"maxResourceBonus": 3,
|
||||
"glyph": "/",
|
||||
"description": "Crafted with Rathian coins.",
|
||||
"setId": null,
|
||||
"setSlug": null,
|
||||
"setName": null
|
||||
},
|
||||
"components": [
|
||||
{
|
||||
"item": {
|
||||
"id": 282210,
|
||||
"slug": "rathian-coin-ilvl-10",
|
||||
"name": "Green Rathian Coin",
|
||||
"slot": "component",
|
||||
"rarity": "uncommon",
|
||||
"itemLevel": 10,
|
||||
"healingPower": 0,
|
||||
"maxResourceBonus": 0,
|
||||
"glyph": "$",
|
||||
"description": "A boss coin from Rathian used for item level 10 crafting."
|
||||
},
|
||||
"quantity": 15,
|
||||
"owned": 0
|
||||
}
|
||||
],
|
||||
"canCraft": false
|
||||
},
|
||||
{
|
||||
"id": 1304,
|
||||
"difficultyId": 4,
|
||||
|
||||
Reference in New Issue
Block a user