1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

78 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Rapid Strike Urshifu",
fr: "Shifours Mille Poings",
es: "Urshifu Golpe Fluido",
it: "Urshifu Pluricolpo",
pt: "Urshifu Golpe Fluido",
de: "Fließender-Angriff-Wulaosu"
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
hp: 140,
types: ["Water"],
evolveFrom: {
en: "Kubfu",
fr: "Wushours"
},
attacks: [{
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
en: "Rapid-Fisted Rush",
fr: "Mille Poings Chargés",
es: "Embestida de Puño Fluido",
it: "Pugni Raffica Rapida",
pt: "Fúria de Punho Rápido",
de: "Fließende Fäuste"
},
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.",
es: "Este ataque hace 30 puntos de daño por cada uno de tus Pokémon Golpe Fluido en juego.",
it: "Questo attacco infligge 30 danni per ogni tuo Pokémon Colpo Rapido in gioco.",
pt: "Este ataque causa 30 pontos de dano para cada um dos seus Pokémon Golpe Fluido em jogo.",
de: "Diese Attacke fügt für jedes deiner Fließender-Angriff-Pokémon im Spiel 30 Schadenspunkte zu."
},
damage: "30×",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card