mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shrouded Fable"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Toxicroak",
|
|
fr: "Coatox",
|
|
es: "Toxicroak",
|
|
it: "Toxicroak",
|
|
pt: "Toxicroak",
|
|
de: "Toxiquak"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Corkscrew Punch",
|
|
fr: "Poing Tire-Bouchon",
|
|
es: "Puño Tirabuzón",
|
|
it: "Pugno Rotante",
|
|
pt: "Soco Saca-rolha",
|
|
de: "Korkenzieherhieb"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Fighting", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Clean Hit",
|
|
fr: "Coup Net",
|
|
es: "Impacto Limpio",
|
|
it: "Colpo Pulito",
|
|
pt: "Golpe Certeiro",
|
|
de: "Sauberer Treffer"
|
|
},
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon is an Evolution Pokémon, this attack does 90 more damage.",
|
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 90 dégâts supplémentaires.",
|
|
es: "Si el Pokémon Activo de tu rival es un Pokémon Evolución, este ataque hace 90 puntos de daño más.",
|
|
it: "Se il Pokémon attivo del tuo avversario è un Pokémon Evoluzione, questo attacco infligge 90 danni in più.",
|
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon de Evolução, este ataque causará 90 pontos de dano a mais.",
|
|
de: "Wenn das Aktive Pokémon deines Gegners ein Entwicklungs-Pokémon ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "90+"
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |