Wire board game image paths into card, relic, potion, and enemy data
This commit is contained in:
parent
9e11d7d423
commit
27bfdc71b1
4 changed files with 2709 additions and 885 deletions
928
data/cards.json
928
data/cards.json
File diff suppressed because it is too large
Load diff
2349
data/enemies.json
2349
data/enemies.json
File diff suppressed because it is too large
Load diff
|
|
@ -4,40 +4,70 @@
|
|||
"name": "Block Potion",
|
||||
"type": "potion",
|
||||
"description": "Gain 5 Block.",
|
||||
"effects": [{ "type": "block", "value": 5 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "block",
|
||||
"value": 5
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/000.png"
|
||||
},
|
||||
{
|
||||
"id": "energy_potion",
|
||||
"name": "Energy Potion",
|
||||
"type": "potion",
|
||||
"description": "Gain 1 Energy.",
|
||||
"effects": [{ "type": "energy", "value": 1 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "energy",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/001.png"
|
||||
},
|
||||
{
|
||||
"id": "explosive_potion",
|
||||
"name": "Explosive Potion",
|
||||
"type": "potion",
|
||||
"description": "Deal 4 damage to any row.",
|
||||
"effects": [{ "type": "damage_all", "value": 4 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "damage_all",
|
||||
"value": 4
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/002.png"
|
||||
},
|
||||
{
|
||||
"id": "swift_potion",
|
||||
"name": "Swift Potion",
|
||||
"type": "potion",
|
||||
"description": "Draw 3 cards.",
|
||||
"effects": [{ "type": "draw", "value": 3 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "draw",
|
||||
"value": 3
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/004.png"
|
||||
},
|
||||
{
|
||||
"id": "fear_potion",
|
||||
"name": "Fear Potion",
|
||||
"type": "potion",
|
||||
"description": "Apply 1 Vulnerable.",
|
||||
"effects": [{ "type": "vulnerable", "value": 1 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "vulnerable",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/006.png"
|
||||
},
|
||||
{
|
||||
"id": "dexterity_potion",
|
||||
|
|
@ -45,7 +75,10 @@
|
|||
"type": "potion",
|
||||
"description": "Gain 1 Dexterity at end of turn.",
|
||||
"effects": [
|
||||
{ "type": "special", "description": "Gain 1 Dexterity at end of turn." }
|
||||
{
|
||||
"type": "special",
|
||||
"description": "Gain 1 Dexterity at end of turn."
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"comment": "Dexterity not a standard token in board game; icon hard to read"
|
||||
|
|
@ -55,8 +88,14 @@
|
|||
"name": "Ancient Potion",
|
||||
"type": "potion",
|
||||
"description": "Gain 1 Artifact.",
|
||||
"effects": [{ "type": "special", "description": "Gain 1 Artifact." }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "special",
|
||||
"description": "Gain 1 Artifact."
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/016.png"
|
||||
},
|
||||
{
|
||||
"id": "entropic_brew",
|
||||
|
|
@ -69,15 +108,22 @@
|
|||
"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",
|
||||
"name": "Blood Potion",
|
||||
"type": "potion",
|
||||
"description": "Heal 2 HP.",
|
||||
"effects": [{ "type": "heal", "value": 2 }],
|
||||
"usableOutsideCombat": true
|
||||
"effects": [
|
||||
{
|
||||
"type": "heal",
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": true,
|
||||
"image": "assets/images/board_game/potions/009.png"
|
||||
},
|
||||
{
|
||||
"id": "elixir",
|
||||
|
|
@ -131,7 +177,8 @@
|
|||
"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",
|
||||
|
|
@ -144,7 +191,8 @@
|
|||
"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",
|
||||
|
|
@ -157,14 +205,20 @@
|
|||
"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",
|
||||
"name": "Poison Potion",
|
||||
"type": "potion",
|
||||
"description": "Apply 3 Poison.",
|
||||
"effects": [{ "type": "poison", "value": 3 }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "poison",
|
||||
"value": 3
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false
|
||||
},
|
||||
{
|
||||
|
|
@ -179,7 +233,8 @@
|
|||
}
|
||||
],
|
||||
"usableOutsideCombat": true,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/potions/008.png"
|
||||
},
|
||||
{
|
||||
"id": "power_potion",
|
||||
|
|
@ -214,7 +269,12 @@
|
|||
"name": "Heart of Iron",
|
||||
"type": "potion",
|
||||
"description": "Gain 5 Block.",
|
||||
"effects": [{ "type": "block", "value": 5 }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "block",
|
||||
"value": 5
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"comment": "May have additional text not visible"
|
||||
},
|
||||
|
|
@ -223,32 +283,55 @@
|
|||
"name": "Liquid Memory",
|
||||
"type": "potion",
|
||||
"description": "Draw 3 cards. In 3 cards in your hand.",
|
||||
"effects": [{ "type": "draw", "value": 3 }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "draw",
|
||||
"value": 3
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/potions/025.png"
|
||||
},
|
||||
{
|
||||
"id": "fire_potion",
|
||||
"name": "Fire Potion",
|
||||
"type": "potion",
|
||||
"description": "Deal 4 damage.",
|
||||
"effects": [{ "type": "hit", "value": 4 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "hit",
|
||||
"value": 4
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/003.png"
|
||||
},
|
||||
{
|
||||
"id": "weak_potion",
|
||||
"name": "Weak Potion",
|
||||
"type": "potion",
|
||||
"description": "Apply 1 Weak.",
|
||||
"effects": [{ "type": "weak", "value": 1 }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "weak",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/005.png"
|
||||
},
|
||||
{
|
||||
"id": "strength_potion",
|
||||
"name": "Strength Potion",
|
||||
"type": "potion",
|
||||
"description": "Gain 1 Strength.",
|
||||
"effects": [{ "type": "strength", "value": 1 }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "strength",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false
|
||||
},
|
||||
{
|
||||
|
|
@ -257,20 +340,33 @@
|
|||
"type": "potion",
|
||||
"description": "Gain 5 Block. Gain 1 Energy.",
|
||||
"effects": [
|
||||
{ "type": "block", "value": 5 },
|
||||
{ "type": "energy", "value": 1 }
|
||||
{
|
||||
"type": "block",
|
||||
"value": 5
|
||||
},
|
||||
{
|
||||
"type": "energy",
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/potions/010.png"
|
||||
},
|
||||
{
|
||||
"id": "snecko_oil",
|
||||
"name": "Snecko Oil",
|
||||
"type": "potion",
|
||||
"description": "Draw 3 cards.",
|
||||
"effects": [{ "type": "draw", "value": 3 }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "draw",
|
||||
"value": 3
|
||||
}
|
||||
],
|
||||
"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",
|
||||
|
|
@ -278,18 +374,30 @@
|
|||
"type": "potion",
|
||||
"description": "Gain 1 Strength. Deal 2 damage to any row.",
|
||||
"effects": [
|
||||
{ "type": "strength", "value": 1 },
|
||||
{ "type": "damage_all", "value": 2 }
|
||||
{
|
||||
"type": "strength",
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"type": "damage_all",
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"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",
|
||||
"name": "Bottled Miracle",
|
||||
"type": "potion",
|
||||
"description": "Gain 2 Miracles.",
|
||||
"effects": [{ "type": "special", "description": "Gain 2 Miracle tokens." }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "special",
|
||||
"description": "Gain 2 Miracle tokens."
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false
|
||||
},
|
||||
{
|
||||
|
|
@ -297,7 +405,12 @@
|
|||
"name": "Stance Potion",
|
||||
"type": "potion",
|
||||
"description": "Enter Calm.",
|
||||
"effects": [{ "type": "special", "description": "Enter Calm." }],
|
||||
"effects": [
|
||||
{
|
||||
"type": "special",
|
||||
"description": "Enter Calm."
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false
|
||||
},
|
||||
{
|
||||
|
|
@ -305,7 +418,13 @@
|
|||
"name": "Cunning Potion",
|
||||
"type": "potion",
|
||||
"description": "Gain 3 Shivs.",
|
||||
"effects": [{ "type": "special", "description": "Gain 3 Shiv tokens." }],
|
||||
"usableOutsideCombat": false
|
||||
"effects": [
|
||||
{
|
||||
"type": "special",
|
||||
"description": "Gain 3 Shiv tokens."
|
||||
}
|
||||
],
|
||||
"usableOutsideCombat": false,
|
||||
"image": "assets/images/board_game/potions/028.png"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
108
data/relics.json
108
data/relics.json
|
|
@ -5,7 +5,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of combat: Heal 1 HP.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/000.png"
|
||||
},
|
||||
{
|
||||
"id": "lantern",
|
||||
|
|
@ -13,7 +14,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of combat: Gain 1 Energy.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/001.png"
|
||||
},
|
||||
{
|
||||
"id": "bag_of_preparation",
|
||||
|
|
@ -21,7 +23,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of combat: Draw 2 cards.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/002.png"
|
||||
},
|
||||
{
|
||||
"id": "anchor",
|
||||
|
|
@ -29,7 +32,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of combat: Gain 2 Block.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/003.png"
|
||||
},
|
||||
{
|
||||
"id": "marbles",
|
||||
|
|
@ -45,7 +49,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of combat: Gain 1 Strength.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/018.png"
|
||||
},
|
||||
{
|
||||
"id": "red_mask",
|
||||
|
|
@ -53,7 +58,8 @@
|
|||
"type": "relic",
|
||||
"description": "Apply 1 Weak to all enemies at start of combat.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/014.png"
|
||||
},
|
||||
{
|
||||
"id": "happy_flower",
|
||||
|
|
@ -62,7 +68,8 @@
|
|||
"description": "Die: Gain 1 Energy.",
|
||||
"trigger": "Die roll",
|
||||
"dieValues": [3, 4],
|
||||
"goldCost": 6
|
||||
"goldCost": 6,
|
||||
"image": "assets/images/board_game/relics/common/015.png"
|
||||
},
|
||||
{
|
||||
"id": "juzu_bracelet",
|
||||
|
|
@ -70,7 +77,8 @@
|
|||
"type": "relic",
|
||||
"description": "When you Rest: You may also remove a card.",
|
||||
"trigger": "Rest",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/046.png"
|
||||
},
|
||||
{
|
||||
"id": "mercury_hourglass",
|
||||
|
|
@ -78,7 +86,8 @@
|
|||
"type": "relic",
|
||||
"description": "When you play a card with 1 or less hits: deal 1 damage.",
|
||||
"trigger": "When you play a card",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/013.png"
|
||||
},
|
||||
{
|
||||
"id": "bronze_scales",
|
||||
|
|
@ -110,7 +119,8 @@
|
|||
"type": "relic",
|
||||
"description": "Start of turn: If you don't have any Block, gain 3 Block.",
|
||||
"trigger": "Start of turn",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/006.png"
|
||||
},
|
||||
{
|
||||
"id": "pen_nib",
|
||||
|
|
@ -118,7 +128,8 @@
|
|||
"type": "relic",
|
||||
"description": "Your first Attack this turn is played twice.",
|
||||
"trigger": "Die roll",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/024.png"
|
||||
},
|
||||
{
|
||||
"id": "bag_of_marbles",
|
||||
|
|
@ -134,7 +145,8 @@
|
|||
"type": "relic",
|
||||
"description": "Gain 1 Block 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",
|
||||
|
|
@ -150,7 +162,8 @@
|
|||
"type": "relic",
|
||||
"description": "Gain 1 Energy. Draw a card.",
|
||||
"trigger": "Die roll",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/040.png"
|
||||
},
|
||||
{
|
||||
"id": "meat_on_the_bone",
|
||||
|
|
@ -198,7 +211,8 @@
|
|||
"type": "relic",
|
||||
"description": "End of combat: Heal 1 HP.",
|
||||
"trigger": "End of combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/boss/009.png"
|
||||
},
|
||||
{
|
||||
"id": "gambling_chip",
|
||||
|
|
@ -206,7 +220,8 @@
|
|||
"type": "relic",
|
||||
"description": "Once per room: Reroll the die.",
|
||||
"trigger": "Once per room",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/030.png"
|
||||
},
|
||||
{
|
||||
"id": "ice_cream",
|
||||
|
|
@ -214,7 +229,8 @@
|
|||
"type": "relic",
|
||||
"description": "Once per combat: Draw 3 cards if you've lost HP this combat.",
|
||||
"trigger": "Once per combat",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/common/007.png"
|
||||
},
|
||||
{
|
||||
"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.",
|
||||
"trigger": "Once per combat",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/020.png"
|
||||
},
|
||||
{
|
||||
"id": "stone_calendar",
|
||||
|
|
@ -267,7 +284,8 @@
|
|||
"description": "Deal 2 damage to any row if you played a Skill this turn.",
|
||||
"trigger": "End of turn",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/023.png"
|
||||
},
|
||||
{
|
||||
"id": "thread_and_needle",
|
||||
|
|
@ -276,7 +294,8 @@
|
|||
"description": "Gain your combat: Start of combat: Gain 1 Block.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/017.png"
|
||||
},
|
||||
{
|
||||
"id": "preserved_insect",
|
||||
|
|
@ -294,7 +313,8 @@
|
|||
"description": "Upgrade a Strike and another card. Attack then discard it.",
|
||||
"trigger": "Die roll",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/018.png"
|
||||
},
|
||||
{
|
||||
"id": "ninja_scroll",
|
||||
|
|
@ -303,7 +323,8 @@
|
|||
"description": "Gain 3 Shivs at start of combat.",
|
||||
"trigger": "Start of combat",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/033.png"
|
||||
},
|
||||
{
|
||||
"id": "the_abacus",
|
||||
|
|
@ -312,7 +333,8 @@
|
|||
"description": "Once per room.",
|
||||
"trigger": "Once per room",
|
||||
"goldCost": null,
|
||||
"comment": "Full effect text obscured"
|
||||
"comment": "Full effect text obscured",
|
||||
"image": "assets/images/board_game/relics/common/032.png"
|
||||
},
|
||||
{
|
||||
"id": "toolbox",
|
||||
|
|
@ -321,7 +343,8 @@
|
|||
"description": "You may trade 3 potions into any single potion.",
|
||||
"trigger": "Passive",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/031.png"
|
||||
},
|
||||
{
|
||||
"id": "question_card",
|
||||
|
|
@ -339,7 +362,8 @@
|
|||
"description": "When you add an Attack to your deck, you may also discard the 1st then discard.",
|
||||
"trigger": "When you gain a card",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/035.png"
|
||||
},
|
||||
{
|
||||
"id": "cloak_clasp",
|
||||
|
|
@ -375,7 +399,8 @@
|
|||
"description": "Draw a card for each card in your Exhaust pile.",
|
||||
"trigger": "Passive",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/common/049.png"
|
||||
},
|
||||
{
|
||||
"id": "astrolabe",
|
||||
|
|
@ -383,7 +408,8 @@
|
|||
"type": "boss_relic",
|
||||
"description": "Upgrade 3 cards. Use this immediately, then discard it.",
|
||||
"trigger": "Immediate",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/boss/000.png"
|
||||
},
|
||||
{
|
||||
"id": "pandoras_box",
|
||||
|
|
@ -391,7 +417,8 @@
|
|||
"type": "boss_relic",
|
||||
"description": "Transform 3 cards. Use this immediately, then discard it.",
|
||||
"trigger": "Immediate",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/boss/001.png"
|
||||
},
|
||||
{
|
||||
"id": "calling_bell",
|
||||
|
|
@ -399,7 +426,8 @@
|
|||
"type": "boss_relic",
|
||||
"description": "Remove 2 cards. Use this immediately, then discard it.",
|
||||
"trigger": "Immediate",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/boss/004.png"
|
||||
},
|
||||
{
|
||||
"id": "orrery",
|
||||
|
|
@ -408,7 +436,8 @@
|
|||
"description": "Gain 4 Energy. Use this immediately, then discard it.",
|
||||
"trigger": "Immediate",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/003.png"
|
||||
},
|
||||
{
|
||||
"id": "cursed_key",
|
||||
|
|
@ -435,7 +464,8 @@
|
|||
"description": "End of combat: Gain 1 Energy.",
|
||||
"trigger": "End of combat",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/012.png"
|
||||
},
|
||||
{
|
||||
"id": "tiny_house",
|
||||
|
|
@ -444,7 +474,8 @@
|
|||
"description": "Gain 1 Gold. Use this immediately, then discard it.",
|
||||
"trigger": "Immediate",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/006.png"
|
||||
},
|
||||
{
|
||||
"id": "empty_cage",
|
||||
|
|
@ -453,7 +484,8 @@
|
|||
"description": "Heal 3 HP when you enter the room.",
|
||||
"trigger": "Enter room",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/002.png"
|
||||
},
|
||||
{
|
||||
"id": "snecko_eye",
|
||||
|
|
@ -462,7 +494,8 @@
|
|||
"description": "Draw 2 cards. Gain 1 Energy.",
|
||||
"trigger": "Start of turn",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/011.png"
|
||||
},
|
||||
{
|
||||
"id": "runic_dome",
|
||||
|
|
@ -489,7 +522,8 @@
|
|||
"description": "Start of turn: Gain 1 Energy. You can't gain potions.",
|
||||
"trigger": "Start of turn",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/015.png"
|
||||
},
|
||||
{
|
||||
"id": "velvet_choker",
|
||||
|
|
@ -515,7 +549,8 @@
|
|||
"type": "boss_relic",
|
||||
"description": "Gain 1 Energy. You can't Smith.",
|
||||
"trigger": "Start of turn",
|
||||
"goldCost": null
|
||||
"goldCost": null,
|
||||
"image": "assets/images/board_game/relics/boss/013.png"
|
||||
},
|
||||
{
|
||||
"id": "sacred_bark",
|
||||
|
|
@ -542,6 +577,7 @@
|
|||
"description": "Heal 3 HP when you enter the room.",
|
||||
"trigger": "Enter room",
|
||||
"goldCost": null,
|
||||
"comment": "Text partially obscured"
|
||||
"comment": "Text partially obscured",
|
||||
"image": "assets/images/board_game/relics/boss/008.png"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue