mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Toedscruel",
|
|
fr: "Terracruel",
|
|
es: "Toedscruel",
|
|
it: "Toedscruel",
|
|
pt: "Toedscruel",
|
|
de: "Tenterra"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Grass"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Mega Drain",
|
|
fr: "Méga-Sangsue",
|
|
es: "Megaagotar",
|
|
it: "Megassorbimento",
|
|
pt: "Megadreno",
|
|
de: "Megasauger"
|
|
},
|
|
|
|
effect: {
|
|
en: "Heal 30 damage from this Pokémon.",
|
|
fr: "Soignez 30 dégâts de ce Pokémon.",
|
|
es: "Cura 30 puntos de daño a este Pokémon.",
|
|
it: "Cura questo Pokémon da 30 danni.",
|
|
pt: "Cure 30 pontos de dano deste Pokémon.",
|
|
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Grass", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Whip Smash",
|
|
fr: "Frappe Fouet",
|
|
es: "Golpe Látigo",
|
|
it: "Frustata Devastante",
|
|
pt: "Chicote Esmagador",
|
|
de: "Peitschenschlag"
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |