1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

59 lines
1.1 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"
}
export default card