mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
795 B
TypeScript
54 lines
795 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
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: "Gentle Slap",
|
|
fr: "Gifle Douce",
|
|
es: "Bofetada Gentil",
|
|
it: "Schiaffetto",
|
|
pt: "Tapinha",
|
|
de: "Sanfter Hieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Vine Slap",
|
|
fr: "Gifle de Liane",
|
|
es: "Bofetón Látigo",
|
|
it: "Lianasberla",
|
|
pt: "Tapa de Vinhas",
|
|
de: "Rankenklatscher"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |