mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1017 B
TypeScript
68 lines
1017 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [115],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Kangourex",
|
|
en: "Kangaskhan",
|
|
es: "Kangaskhan",
|
|
it: "Kangaskhan",
|
|
pt: "Kangaskhan",
|
|
de: "Kangama"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Coup d'Boule",
|
|
en: "Headbutt",
|
|
es: "Golpe Cabeza",
|
|
it: "Bottintesta",
|
|
pt: "Cabeçada",
|
|
de: "Kopfnuss"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Pique-Pioche",
|
|
en: "Spike Draw",
|
|
es: "Robo Pico",
|
|
it: "Battipesca",
|
|
pt: "Comprada Espinhosa",
|
|
de: "Stachelzug"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Piochez 2 cartes.",
|
|
en: "Draw 2 cards.",
|
|
es: "Roba 2 cartas.",
|
|
it: "Pesca due carte.",
|
|
pt: "Compre 2 cartas.",
|
|
de: "Ziehe 2 Karten."
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |