mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
752 B
TypeScript
54 lines
752 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Toedscool",
|
|
fr: "Terracool",
|
|
es: "Toedscool",
|
|
it: "Toedscool",
|
|
pt: "Toedscool",
|
|
de: "Tentagra"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Gentle Slap",
|
|
fr: "Gifle Douce",
|
|
es: "Bofetada Gentil",
|
|
it: "Schiaffetto",
|
|
pt: "Tapinha",
|
|
de: "Sanfter Hieb"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |