Wire board game image paths into card, relic, potion, and enemy data

This commit is contained in:
Jared Miller 2026-02-24 15:38:09 -05:00
parent 9e11d7d423
commit 27bfdc71b1
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
4 changed files with 2709 additions and 885 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -4,40 +4,70 @@
"name": "Block Potion", "name": "Block Potion",
"type": "potion", "type": "potion",
"description": "Gain 5 Block.", "description": "Gain 5 Block.",
"effects": [{ "type": "block", "value": 5 }], "effects": [
"usableOutsideCombat": false {
"type": "block",
"value": 5
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/000.png"
}, },
{ {
"id": "energy_potion", "id": "energy_potion",
"name": "Energy Potion", "name": "Energy Potion",
"type": "potion", "type": "potion",
"description": "Gain 1 Energy.", "description": "Gain 1 Energy.",
"effects": [{ "type": "energy", "value": 1 }], "effects": [
"usableOutsideCombat": false {
"type": "energy",
"value": 1
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/001.png"
}, },
{ {
"id": "explosive_potion", "id": "explosive_potion",
"name": "Explosive Potion", "name": "Explosive Potion",
"type": "potion", "type": "potion",
"description": "Deal 4 damage to any row.", "description": "Deal 4 damage to any row.",
"effects": [{ "type": "damage_all", "value": 4 }], "effects": [
"usableOutsideCombat": false {
"type": "damage_all",
"value": 4
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/002.png"
}, },
{ {
"id": "swift_potion", "id": "swift_potion",
"name": "Swift Potion", "name": "Swift Potion",
"type": "potion", "type": "potion",
"description": "Draw 3 cards.", "description": "Draw 3 cards.",
"effects": [{ "type": "draw", "value": 3 }], "effects": [
"usableOutsideCombat": false {
"type": "draw",
"value": 3
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/004.png"
}, },
{ {
"id": "fear_potion", "id": "fear_potion",
"name": "Fear Potion", "name": "Fear Potion",
"type": "potion", "type": "potion",
"description": "Apply 1 Vulnerable.", "description": "Apply 1 Vulnerable.",
"effects": [{ "type": "vulnerable", "value": 1 }], "effects": [
"usableOutsideCombat": false {
"type": "vulnerable",
"value": 1
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/006.png"
}, },
{ {
"id": "dexterity_potion", "id": "dexterity_potion",
@ -45,7 +75,10 @@
"type": "potion", "type": "potion",
"description": "Gain 1 Dexterity at end of turn.", "description": "Gain 1 Dexterity at end of turn.",
"effects": [ "effects": [
{ "type": "special", "description": "Gain 1 Dexterity at end of turn." } {
"type": "special",
"description": "Gain 1 Dexterity at end of turn."
}
], ],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "Dexterity not a standard token in board game; icon hard to read" "comment": "Dexterity not a standard token in board game; icon hard to read"
@ -55,8 +88,14 @@
"name": "Ancient Potion", "name": "Ancient Potion",
"type": "potion", "type": "potion",
"description": "Gain 1 Artifact.", "description": "Gain 1 Artifact.",
"effects": [{ "type": "special", "description": "Gain 1 Artifact." }], "effects": [
"usableOutsideCombat": false {
"type": "special",
"description": "Gain 1 Artifact."
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/016.png"
}, },
{ {
"id": "entropic_brew", "id": "entropic_brew",
@ -69,15 +108,22 @@
"description": "Change the die to any number (before accepting the roll)." "description": "Change the die to any number (before accepting the roll)."
} }
], ],
"usableOutsideCombat": true "usableOutsideCombat": true,
"image": "assets/images/board_game/potions/012.png"
}, },
{ {
"id": "blood_potion", "id": "blood_potion",
"name": "Blood Potion", "name": "Blood Potion",
"type": "potion", "type": "potion",
"description": "Heal 2 HP.", "description": "Heal 2 HP.",
"effects": [{ "type": "heal", "value": 2 }], "effects": [
"usableOutsideCombat": true {
"type": "heal",
"value": 2
}
],
"usableOutsideCombat": true,
"image": "assets/images/board_game/potions/009.png"
}, },
{ {
"id": "elixir", "id": "elixir",
@ -131,7 +177,8 @@
"description": "When your HP is reduced to 0, heal to 1 HP and discard this potion." "description": "When your HP is reduced to 0, heal to 1 HP and discard this potion."
} }
], ],
"usableOutsideCombat": true "usableOutsideCombat": true,
"image": "assets/images/board_game/potions/013.png"
}, },
{ {
"id": "skill_potion", "id": "skill_potion",
@ -144,7 +191,8 @@
"description": "The next Skill you play this turn is played twice." "description": "The next Skill you play this turn is played twice."
} }
], ],
"usableOutsideCombat": false "usableOutsideCombat": false,
"image": "assets/images/board_game/potions/015.png"
}, },
{ {
"id": "attack_potion", "id": "attack_potion",
@ -157,14 +205,20 @@
"description": "The next Attack you play this turn is played twice." "description": "The next Attack you play this turn is played twice."
} }
], ],
"usableOutsideCombat": false "usableOutsideCombat": false,
"image": "assets/images/board_game/potions/014.png"
}, },
{ {
"id": "poison_potion", "id": "poison_potion",
"name": "Poison Potion", "name": "Poison Potion",
"type": "potion", "type": "potion",
"description": "Apply 3 Poison.", "description": "Apply 3 Poison.",
"effects": [{ "type": "poison", "value": 3 }], "effects": [
{
"type": "poison",
"value": 3
}
],
"usableOutsideCombat": false "usableOutsideCombat": false
}, },
{ {
@ -179,7 +233,8 @@
} }
], ],
"usableOutsideCombat": true, "usableOutsideCombat": true,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/potions/008.png"
}, },
{ {
"id": "power_potion", "id": "power_potion",
@ -214,7 +269,12 @@
"name": "Heart of Iron", "name": "Heart of Iron",
"type": "potion", "type": "potion",
"description": "Gain 5 Block.", "description": "Gain 5 Block.",
"effects": [{ "type": "block", "value": 5 }], "effects": [
{
"type": "block",
"value": 5
}
],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "May have additional text not visible" "comment": "May have additional text not visible"
}, },
@ -223,32 +283,55 @@
"name": "Liquid Memory", "name": "Liquid Memory",
"type": "potion", "type": "potion",
"description": "Draw 3 cards. In 3 cards in your hand.", "description": "Draw 3 cards. In 3 cards in your hand.",
"effects": [{ "type": "draw", "value": 3 }], "effects": [
{
"type": "draw",
"value": 3
}
],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/potions/025.png"
}, },
{ {
"id": "fire_potion", "id": "fire_potion",
"name": "Fire Potion", "name": "Fire Potion",
"type": "potion", "type": "potion",
"description": "Deal 4 damage.", "description": "Deal 4 damage.",
"effects": [{ "type": "hit", "value": 4 }], "effects": [
"usableOutsideCombat": false {
"type": "hit",
"value": 4
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/003.png"
}, },
{ {
"id": "weak_potion", "id": "weak_potion",
"name": "Weak Potion", "name": "Weak Potion",
"type": "potion", "type": "potion",
"description": "Apply 1 Weak.", "description": "Apply 1 Weak.",
"effects": [{ "type": "weak", "value": 1 }], "effects": [
"usableOutsideCombat": false {
"type": "weak",
"value": 1
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/005.png"
}, },
{ {
"id": "strength_potion", "id": "strength_potion",
"name": "Strength Potion", "name": "Strength Potion",
"type": "potion", "type": "potion",
"description": "Gain 1 Strength.", "description": "Gain 1 Strength.",
"effects": [{ "type": "strength", "value": 1 }], "effects": [
{
"type": "strength",
"value": 1
}
],
"usableOutsideCombat": false "usableOutsideCombat": false
}, },
{ {
@ -257,20 +340,33 @@
"type": "potion", "type": "potion",
"description": "Gain 5 Block. Gain 1 Energy.", "description": "Gain 5 Block. Gain 1 Energy.",
"effects": [ "effects": [
{ "type": "block", "value": 5 }, {
{ "type": "energy", "value": 1 } "type": "block",
"value": 5
},
{
"type": "energy",
"value": 1
}
], ],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/potions/010.png"
}, },
{ {
"id": "snecko_oil", "id": "snecko_oil",
"name": "Snecko Oil", "name": "Snecko Oil",
"type": "potion", "type": "potion",
"description": "Draw 3 cards.", "description": "Draw 3 cards.",
"effects": [{ "type": "draw", "value": 3 }], "effects": [
{
"type": "draw",
"value": 3
}
],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "May have additional randomization effect" "comment": "May have additional randomization effect",
"image": "assets/images/board_game/potions/026.png"
}, },
{ {
"id": "distilled_chaos", "id": "distilled_chaos",
@ -278,18 +374,30 @@
"type": "potion", "type": "potion",
"description": "Gain 1 Strength. Deal 2 damage to any row.", "description": "Gain 1 Strength. Deal 2 damage to any row.",
"effects": [ "effects": [
{ "type": "strength", "value": 1 }, {
{ "type": "damage_all", "value": 2 } "type": "strength",
"value": 1
},
{
"type": "damage_all",
"value": 2
}
], ],
"usableOutsideCombat": false, "usableOutsideCombat": false,
"comment": "Text hard to read from image" "comment": "Text hard to read from image",
"image": "assets/images/board_game/potions/011.png"
}, },
{ {
"id": "bottled_miracle", "id": "bottled_miracle",
"name": "Bottled Miracle", "name": "Bottled Miracle",
"type": "potion", "type": "potion",
"description": "Gain 2 Miracles.", "description": "Gain 2 Miracles.",
"effects": [{ "type": "special", "description": "Gain 2 Miracle tokens." }], "effects": [
{
"type": "special",
"description": "Gain 2 Miracle tokens."
}
],
"usableOutsideCombat": false "usableOutsideCombat": false
}, },
{ {
@ -297,7 +405,12 @@
"name": "Stance Potion", "name": "Stance Potion",
"type": "potion", "type": "potion",
"description": "Enter Calm.", "description": "Enter Calm.",
"effects": [{ "type": "special", "description": "Enter Calm." }], "effects": [
{
"type": "special",
"description": "Enter Calm."
}
],
"usableOutsideCombat": false "usableOutsideCombat": false
}, },
{ {
@ -305,7 +418,13 @@
"name": "Cunning Potion", "name": "Cunning Potion",
"type": "potion", "type": "potion",
"description": "Gain 3 Shivs.", "description": "Gain 3 Shivs.",
"effects": [{ "type": "special", "description": "Gain 3 Shiv tokens." }], "effects": [
"usableOutsideCombat": false {
"type": "special",
"description": "Gain 3 Shiv tokens."
}
],
"usableOutsideCombat": false,
"image": "assets/images/board_game/potions/028.png"
} }
] ]

View file

@ -5,7 +5,8 @@
"type": "relic", "type": "relic",
"description": "Start of combat: Heal 1 HP.", "description": "Start of combat: Heal 1 HP.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/000.png"
}, },
{ {
"id": "lantern", "id": "lantern",
@ -13,7 +14,8 @@
"type": "relic", "type": "relic",
"description": "Start of combat: Gain 1 Energy.", "description": "Start of combat: Gain 1 Energy.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/001.png"
}, },
{ {
"id": "bag_of_preparation", "id": "bag_of_preparation",
@ -21,7 +23,8 @@
"type": "relic", "type": "relic",
"description": "Start of combat: Draw 2 cards.", "description": "Start of combat: Draw 2 cards.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/002.png"
}, },
{ {
"id": "anchor", "id": "anchor",
@ -29,7 +32,8 @@
"type": "relic", "type": "relic",
"description": "Start of combat: Gain 2 Block.", "description": "Start of combat: Gain 2 Block.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/003.png"
}, },
{ {
"id": "marbles", "id": "marbles",
@ -45,7 +49,8 @@
"type": "relic", "type": "relic",
"description": "Start of combat: Gain 1 Strength.", "description": "Start of combat: Gain 1 Strength.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/018.png"
}, },
{ {
"id": "red_mask", "id": "red_mask",
@ -53,7 +58,8 @@
"type": "relic", "type": "relic",
"description": "Apply 1 Weak to all enemies at start of combat.", "description": "Apply 1 Weak to all enemies at start of combat.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/014.png"
}, },
{ {
"id": "happy_flower", "id": "happy_flower",
@ -62,7 +68,8 @@
"description": "Die: Gain 1 Energy.", "description": "Die: Gain 1 Energy.",
"trigger": "Die roll", "trigger": "Die roll",
"dieValues": [3, 4], "dieValues": [3, 4],
"goldCost": 6 "goldCost": 6,
"image": "assets/images/board_game/relics/common/015.png"
}, },
{ {
"id": "juzu_bracelet", "id": "juzu_bracelet",
@ -70,7 +77,8 @@
"type": "relic", "type": "relic",
"description": "When you Rest: You may also remove a card.", "description": "When you Rest: You may also remove a card.",
"trigger": "Rest", "trigger": "Rest",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/046.png"
}, },
{ {
"id": "mercury_hourglass", "id": "mercury_hourglass",
@ -78,7 +86,8 @@
"type": "relic", "type": "relic",
"description": "When you play a card with 1 or less hits: deal 1 damage.", "description": "When you play a card with 1 or less hits: deal 1 damage.",
"trigger": "When you play a card", "trigger": "When you play a card",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/013.png"
}, },
{ {
"id": "bronze_scales", "id": "bronze_scales",
@ -110,7 +119,8 @@
"type": "relic", "type": "relic",
"description": "Start of turn: If you don't have any Block, gain 3 Block.", "description": "Start of turn: If you don't have any Block, gain 3 Block.",
"trigger": "Start of turn", "trigger": "Start of turn",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/006.png"
}, },
{ {
"id": "pen_nib", "id": "pen_nib",
@ -118,7 +128,8 @@
"type": "relic", "type": "relic",
"description": "Your first Attack this turn is played twice.", "description": "Your first Attack this turn is played twice.",
"trigger": "Die roll", "trigger": "Die roll",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/024.png"
}, },
{ {
"id": "bag_of_marbles", "id": "bag_of_marbles",
@ -134,7 +145,8 @@
"type": "relic", "type": "relic",
"description": "Gain 1 Block when you play an Attack.", "description": "Gain 1 Block when you play an Attack.",
"trigger": "When you play an Attack", "trigger": "When you play an Attack",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/041.png"
}, },
{ {
"id": "nunchaku", "id": "nunchaku",
@ -150,7 +162,8 @@
"type": "relic", "type": "relic",
"description": "Gain 1 Energy. Draw a card.", "description": "Gain 1 Energy. Draw a card.",
"trigger": "Die roll", "trigger": "Die roll",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/040.png"
}, },
{ {
"id": "meat_on_the_bone", "id": "meat_on_the_bone",
@ -198,7 +211,8 @@
"type": "relic", "type": "relic",
"description": "End of combat: Heal 1 HP.", "description": "End of combat: Heal 1 HP.",
"trigger": "End of combat", "trigger": "End of combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/boss/009.png"
}, },
{ {
"id": "gambling_chip", "id": "gambling_chip",
@ -206,7 +220,8 @@
"type": "relic", "type": "relic",
"description": "Once per room: Reroll the die.", "description": "Once per room: Reroll the die.",
"trigger": "Once per room", "trigger": "Once per room",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/030.png"
}, },
{ {
"id": "ice_cream", "id": "ice_cream",
@ -214,7 +229,8 @@
"type": "relic", "type": "relic",
"description": "Once per combat: Draw 3 cards if you've lost HP this combat.", "description": "Once per combat: Draw 3 cards if you've lost HP this combat.",
"trigger": "Once per combat", "trigger": "Once per combat",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/common/007.png"
}, },
{ {
"id": "red_skull", "id": "red_skull",
@ -258,7 +274,8 @@
"description": "Once per combat: Look at the top card of your discard pile. You may shuffle up to 2 cards in your hand.", "description": "Once per combat: Look at the top card of your discard pile. You may shuffle up to 2 cards in your hand.",
"trigger": "Once per combat", "trigger": "Once per combat",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/020.png"
}, },
{ {
"id": "stone_calendar", "id": "stone_calendar",
@ -267,7 +284,8 @@
"description": "Deal 2 damage to any row if you played a Skill this turn.", "description": "Deal 2 damage to any row if you played a Skill this turn.",
"trigger": "End of turn", "trigger": "End of turn",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/023.png"
}, },
{ {
"id": "thread_and_needle", "id": "thread_and_needle",
@ -276,7 +294,8 @@
"description": "Gain your combat: Start of combat: Gain 1 Block.", "description": "Gain your combat: Start of combat: Gain 1 Block.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/017.png"
}, },
{ {
"id": "preserved_insect", "id": "preserved_insect",
@ -294,7 +313,8 @@
"description": "Upgrade a Strike and another card. Attack then discard it.", "description": "Upgrade a Strike and another card. Attack then discard it.",
"trigger": "Die roll", "trigger": "Die roll",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/018.png"
}, },
{ {
"id": "ninja_scroll", "id": "ninja_scroll",
@ -303,7 +323,8 @@
"description": "Gain 3 Shivs at start of combat.", "description": "Gain 3 Shivs at start of combat.",
"trigger": "Start of combat", "trigger": "Start of combat",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/033.png"
}, },
{ {
"id": "the_abacus", "id": "the_abacus",
@ -312,7 +333,8 @@
"description": "Once per room.", "description": "Once per room.",
"trigger": "Once per room", "trigger": "Once per room",
"goldCost": null, "goldCost": null,
"comment": "Full effect text obscured" "comment": "Full effect text obscured",
"image": "assets/images/board_game/relics/common/032.png"
}, },
{ {
"id": "toolbox", "id": "toolbox",
@ -321,7 +343,8 @@
"description": "You may trade 3 potions into any single potion.", "description": "You may trade 3 potions into any single potion.",
"trigger": "Passive", "trigger": "Passive",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/031.png"
}, },
{ {
"id": "question_card", "id": "question_card",
@ -339,7 +362,8 @@
"description": "When you add an Attack to your deck, you may also discard the 1st then discard.", "description": "When you add an Attack to your deck, you may also discard the 1st then discard.",
"trigger": "When you gain a card", "trigger": "When you gain a card",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/035.png"
}, },
{ {
"id": "cloak_clasp", "id": "cloak_clasp",
@ -375,7 +399,8 @@
"description": "Draw a card for each card in your Exhaust pile.", "description": "Draw a card for each card in your Exhaust pile.",
"trigger": "Passive", "trigger": "Passive",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/common/049.png"
}, },
{ {
"id": "astrolabe", "id": "astrolabe",
@ -383,7 +408,8 @@
"type": "boss_relic", "type": "boss_relic",
"description": "Upgrade 3 cards. Use this immediately, then discard it.", "description": "Upgrade 3 cards. Use this immediately, then discard it.",
"trigger": "Immediate", "trigger": "Immediate",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/boss/000.png"
}, },
{ {
"id": "pandoras_box", "id": "pandoras_box",
@ -391,7 +417,8 @@
"type": "boss_relic", "type": "boss_relic",
"description": "Transform 3 cards. Use this immediately, then discard it.", "description": "Transform 3 cards. Use this immediately, then discard it.",
"trigger": "Immediate", "trigger": "Immediate",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/boss/001.png"
}, },
{ {
"id": "calling_bell", "id": "calling_bell",
@ -399,7 +426,8 @@
"type": "boss_relic", "type": "boss_relic",
"description": "Remove 2 cards. Use this immediately, then discard it.", "description": "Remove 2 cards. Use this immediately, then discard it.",
"trigger": "Immediate", "trigger": "Immediate",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/boss/004.png"
}, },
{ {
"id": "orrery", "id": "orrery",
@ -408,7 +436,8 @@
"description": "Gain 4 Energy. Use this immediately, then discard it.", "description": "Gain 4 Energy. Use this immediately, then discard it.",
"trigger": "Immediate", "trigger": "Immediate",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/003.png"
}, },
{ {
"id": "cursed_key", "id": "cursed_key",
@ -435,7 +464,8 @@
"description": "End of combat: Gain 1 Energy.", "description": "End of combat: Gain 1 Energy.",
"trigger": "End of combat", "trigger": "End of combat",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/012.png"
}, },
{ {
"id": "tiny_house", "id": "tiny_house",
@ -444,7 +474,8 @@
"description": "Gain 1 Gold. Use this immediately, then discard it.", "description": "Gain 1 Gold. Use this immediately, then discard it.",
"trigger": "Immediate", "trigger": "Immediate",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/006.png"
}, },
{ {
"id": "empty_cage", "id": "empty_cage",
@ -453,7 +484,8 @@
"description": "Heal 3 HP when you enter the room.", "description": "Heal 3 HP when you enter the room.",
"trigger": "Enter room", "trigger": "Enter room",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/002.png"
}, },
{ {
"id": "snecko_eye", "id": "snecko_eye",
@ -462,7 +494,8 @@
"description": "Draw 2 cards. Gain 1 Energy.", "description": "Draw 2 cards. Gain 1 Energy.",
"trigger": "Start of turn", "trigger": "Start of turn",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/011.png"
}, },
{ {
"id": "runic_dome", "id": "runic_dome",
@ -489,7 +522,8 @@
"description": "Start of turn: Gain 1 Energy. You can't gain potions.", "description": "Start of turn: Gain 1 Energy. You can't gain potions.",
"trigger": "Start of turn", "trigger": "Start of turn",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/015.png"
}, },
{ {
"id": "velvet_choker", "id": "velvet_choker",
@ -515,7 +549,8 @@
"type": "boss_relic", "type": "boss_relic",
"description": "Gain 1 Energy. You can't Smith.", "description": "Gain 1 Energy. You can't Smith.",
"trigger": "Start of turn", "trigger": "Start of turn",
"goldCost": null "goldCost": null,
"image": "assets/images/board_game/relics/boss/013.png"
}, },
{ {
"id": "sacred_bark", "id": "sacred_bark",
@ -542,6 +577,7 @@
"description": "Heal 3 HP when you enter the room.", "description": "Heal 3 HP when you enter the room.",
"trigger": "Enter room", "trigger": "Enter room",
"goldCost": null, "goldCost": null,
"comment": "Text partially obscured" "comment": "Text partially obscured",
"image": "assets/images/board_game/relics/boss/008.png"
} }
] ]