je comprends r pourquoi je dois push 15 fois

This commit is contained in:
2024-08-06 04:00:50 +02:00
parent e32862e13c
commit 6c23a71c32
3 changed files with 233 additions and 10 deletions
+2 -2
View File
@@ -84,7 +84,7 @@
"effect": "draw"
},
{
"effect": "damage_player",*
"effect": "damage_player",
"amount": 4,
"effect_type": "suicide",
"sub_effects": [
@@ -174,7 +174,7 @@
"amount": 4
},
{
"effect": "stack_next_champion_bought"*
"effect": "stack_next_champion_bought"
},
{
"effect": "draw",
+229 -7
View File
@@ -1,15 +1,237 @@
{
"cards": [
{
"id": ,
"role": ,
"card_type": ,
"faction": ,
"name": ,
"cost": ,
"id": 125,
"role": "market",
"card_type": "champion",
"faction": "yellow",
"name": "Bjorn, the Centurion",
"cost": 5,
"defense": 4,
"guard": true,
"effects": [
{
"effect":
"effect": "damage",
"amount": 3,
"effect_type": "champion_action",
"mutex": 1
},
{
"effect": "spawn_token",
"id": 154,
"effect_type": "champion_action",
"mutex": 1
}
]
},
{
"id": 126,
"role": "market",
"card_type": "champion",
"faction": "green",
"name": "Bloodfang",
"cost": 5,
"defense": 5,
"guard": false,
"effects": [
{
"effect": "gold",
"amount": 2,
"effect_type": "champion_action",
"mutex": 1
},
{
"effect": "discard",
"sub_effect": [
{
"effect": "damage",
"amount": 6
}
],
"effect_type": "champion_action",
"mutex": 1
}
]
},
{
"id": 127,
"role": "market",
"card_type": "champion",
"faction": "blue",
"name": "Droga, Guild Enforcer",
"cost": 3,
"defense": 3,
"guard": false,
"effects": [
{
"effect": "gold",
"effect_type": "champion_action",
"mutex": 1
},
{
"effect": "stun_damaged",
"effect_type": "champion_action",
"mutex": 1
}
]
},
{
"id": 128,
"role": "market",
"card_type": "champion",
"faction": "red",
"name": "Galok, the Vile",
"cost": 3,
"defense": 2,
"guard": false,
"effects": [
{
"effect": "damage",
"effect_type": "champion_action"
},
{
"effect": "sacrifice",
"sub_effect": [
{
"effect": "damage"
}
],
"effect_type": "champion_action"
}
]
},
{
"id": 129,
"role": "market",
"card_type": "champion",
"faction": "green",
"name": "Gorg, Orc Shaman",
"cost": 3,
"defense": 3,
"guard": false,
"effects": [
{
"effect": "draw_and_discard",
"effect_type": "champion_action"
},
{
"effect": "damage",
"amount": 3,
"effect_type": "faction_combo"
}
]
},
{
"id": 130,
"role": "market",
"card_type": "champion",
"faction": "red",
"name": "Kasha, the Awakener",
"cost": 3,
"defense": 3,
"guard": false,
"effects": [
{
"effect": "spawn_token",
"id": 155,
"effect_type": "champion_action"
}
]
},
{
"id": 131,
"role": "market",
"card_type": "champion",
"faction": "blue",
"name": "Ren, Bounty Hunter",
"cost": 4,
"defense": 4,
"guard": false,
"effects": [
{
"effect": "damage",
"amount": 2,
"effect_type": "champion_action",
"mutex": 1
},
{
"effect": "stun_cheap",
"amount": 4,
"effect_type": "champion_action",
"mutex": 1
},
{
"effect": "gold",
"amount": 3,
"effect_type": "faction_combo",
"effect_type": "stunned_champion"
}
]
},
{
"id": 132,
"role": "market",
"card_type": "champion",
"faction": "yellow",
"name": "Valius, Fire Dragon",
"cost": 7,
"defense": 6,
"guard": false,
"effects": [
{
"effect": "damage_player",
"amount": 3,
"sub_effects": [
{
"effect": "damage_player_champions",
"amount": 3
}
],
"effect_type": "champion_action"
},
{
"effect": "damage",
"amount": 4,
"effect_type": "faction_combo"
}
]
},
{
"id": 154,
"role": "token",
"card_type": "champion",
"faction": "yellow",
"name": "Legionnaire",
"defense": 2,
"guard": true,
"effects": [
{
"effect": "damage",
"effect_type": "champion_action"
},
{
"effect_type": "suicide",
"on": "discard"
}
]
},
{
"id": 155,
"role": "token",
"card_type": "champion",
"faction": "red",
"name": "Zombie",
"defense": 1,
"guard": false,
"effects": [
{
"effect": "damage",
"amount": 2,
"effect_type": "champion_action"
},
{
"effect_type": "suicide",
"on": "discard"
}
]
}
+2 -1
View File
@@ -16,7 +16,8 @@
"effect_type": "champion_action"
},
{
"effect": "pick_faction"
"effect": "pick_faction",
"effect_type": "champion_action"
}
]
},