1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 04:41:57 +00:00

Chilling-Reign (#10)

only missing the secrets cards as they are secret :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-18 20:13:38 +02:00
parent b0d0319f04
commit abbffb45b7
198 changed files with 8576 additions and 57 deletions

View File

@@ -0,0 +1,55 @@
import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Rapid Strike Urshifu",
fr: "Shifours Mille Poings"
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
hp: 140,
types: ["Water"],
evolveFrom: {
en: "Kubfu",
fr: "Wushours"
},
attacks: [{
name: {
en: "Slashing Claw",
fr: "Griffe Taillante"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
en: "Rapid-Fisted Rush",
fr: "Mille Poings Chargés"
},
effect: {
en: "This attack does 30 damage for each of your Rapid Strike Pokémon in play.",
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon Mille Poings en jeu."
},
damage: "30×",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card