1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

79 lines
1.5 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Badabouin",
en: "Thwackey",
es: "Thwackey",
it: "Thwackey",
pt: "Thwackey",
de: "Chimstix"
},
illustrator: "0313",
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
fr: "Ouistempo",
en: "Grookey"
},
abilities: [{
type: "Ability",
name: {
fr: "Avantage du Terrain",
en: "Lay of the Land",
es: "Dominio del Terreno",
it: "Dominio del Territorio",
pt: "Dono do Pedaço",
de: "Ortskunde"
},
effect: {
fr: "Si vous avez un Stade en jeu, ce Pokémon na pas de Coût de Retraite.",
en: "If you have a Stadium in play, this Pokémon has no Retreat Cost.",
es: "Si tienes un Estadio en juego, este Pokémon no tiene ningún Coste de Retirada.",
it: "Se hai in gioco una carta Stadio, questo Pokémon non ha costo di ritirata.",
pt: "Se você tiver um Estádio em jogo, este Pokémon não terá custo de Recuo.",
de: "Wenn du eine Stadionkarte im Spiel hast, hat dieses Pokémon keine Rückzugskosten."
}
}],
attacks: [{
name: {
fr: "Tapotige",
en: "Branch Poke",
es: "Punzada Rama",
it: "Ramostoccata",
pt: "Cutucada com Galho",
de: "Zweigstoß"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card