1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

72 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
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"
},
attacks: [{
name: {
en: "Knock Off",
fr: "Sabotage",
es: "Desarme",
it: "Privazione",
pt: "Derrubar",
de: "Abschlag"
},
effect: {
en: "Discard a random card from your opponents 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 its drumming out rapid beats in battle, it gets so caught up in the rhythm that it wont even notice that its already knocked out its opponent."
}
}
export default card