add conquest cards

This commit is contained in:
2024-07-31 02:17:14 +02:00
parent 339e37b30b
commit b7f99df5de
3 changed files with 121 additions and 9 deletions
+118 -6
View File
@@ -1,14 +1,126 @@
{ {
"cards": [ "cards": [
{ {
"id": , "id": 109,
"role": , "role": "conquest",
"card_type": , "card_type": "item",
"faction": , "faction": "red",
"name": , "name": "Artek's Bones",
"cost": 4,
"effects": [ "effects": [
{ {
"effect": "effect": "gold",
"amount": 3
},
{
"effect": "restack_discarded_champion",
"effect_type": "suicide"
},
{
"effect": "stack_this_card",
"on": "buy"
}
]
},
{
"id": 110,
"role": "conquest",
"card_type": "item",
"faction": "base",
"name": "Cup of Quickening",
"cost": 3,
"effects": [
{
"effect": "prepare",
"mutex": 1
},
{
"effect": "draw",
"mutex": 1
},
{
"effect": "this_card_in_hand",
"on": "buy"
}
]
},
{
"id": 111,
"role": "conquest",
"card_type": "item",
"faction": "green",
"name": "Kemlo's Ring",
"cost": 3,
"effects": [
{
"effect": "draw"
},
{
"effect": "this_card_in_hand",
"on": "buy"
}
]
},
{
"id": 112,
"role": "conquest",
"card_type": "item",
"faction": "base",
"name": "Moonblade",
"cost": 3,
"effects": [
{
"effect": "damage",
"amount": 5
},
{
"effect": "heal",
"amount": 5,
"on": "discard"
}
]
},
{
"id": 113,
"role": "conquest",
"card_type": "item",
"faction": "yellow",
"name": "Scrivener's Quill",
"cost": 3,
"effects": [
{
"effect": "gold",
"amount": 2
},
{
"effect": "heal",
"amount": 4
},
{
"effect": "prepare",
"effect_type": "suicide"
},
{
"effect": "stack_this_card",
"on": "buy"
}
]
},
{
"id": 114,
"role": "conquest",
"card_type": "item",
"faction": "green",
"name": "Spellbinder",
"cost": 3,
"effects": [
{
"effect": "damage",
"amount": 4
},
{
"effect": "draw",
"on": "discard"
} }
] ]
} }
+3 -3
View File
@@ -18,8 +18,8 @@
"effect_type": "suicide" "effect_type": "suicide"
}, },
{ {
"effect": "restack_last_discarded_card", "effect": "restack_discarded_card",
"on": "discard_this_card" "on": "discard"
} }
] ]
}, },
@@ -37,7 +37,7 @@
}, },
{ {
"effect": "free_fire_gem_in_hand", "effect": "free_fire_gem_in_hand",
"on": "discard_this_card" "on": "discard"
} }
] ]
}, },