mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
dexId: [811],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Thwackey",
|
||
fr: "Badabouin",
|
||
es: "Thwackey",
|
||
it: "Thwackey",
|
||
pt: "Thwackey",
|
||
de: "Chimstix"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Grass"],
|
||
|
||
evolveFrom: {
|
||
en: "Grookey",
|
||
fr: "Ouistempo",
|
||
es: "Grookey",
|
||
it: "Grookey",
|
||
pt: "Grookey",
|
||
de: "Chimpep"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Knock Off",
|
||
fr: "Sabotage",
|
||
es: "Desarme",
|
||
it: "Privazione",
|
||
pt: "Derrubar",
|
||
de: "Abschlag"
|
||
},
|
||
|
||
effect: {
|
||
en: "Discard a random card from your opponent's hand.",
|
||
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
|
||
es: "Descarta 1 carta aleatoria de la mano de tu rival.",
|
||
it: "Scarta una carta a caso dalla mano del tuo avversario.",
|
||
pt: "Descarte 1 carta aleatória da mão do seu oponente.",
|
||
de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Grass", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "When it's drumming out rapid beats in battle, it gets so caught up in the rhythm that it won't even notice that it's already knocked out its opponent."
|
||
}
|
||
}
|
||
|
||
export default card
|