mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
758 B
TypeScript
54 lines
758 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Tangela",
|
|
fr: "Saquedeneu",
|
|
es: "Tangela",
|
|
it: "Tangela",
|
|
pt: "Tangela",
|
|
de: "Tangela"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Beat",
|
|
fr: "Bataille",
|
|
es: "Toque",
|
|
it: "Battuta",
|
|
pt: "Pulso",
|
|
de: "Verprügler"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Vine Whip",
|
|
fr: "Fouet Lianes",
|
|
es: "Látigo Cepa",
|
|
it: "Frustata",
|
|
pt: "Chicote de Vinha",
|
|
de: "Rankenhieb"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |