1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

79 lines
1.6 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 = {
dexId: [811],
set: Set,
name: {
fr: "Badabouin",
en: "Thwackey",
es: "Thwackey",
it: "Thwackey",
pt: "Thwackey",
de: "Chimstix"
},
illustrator: "tetsuya koizumi",
rarity: "Shiny rare",
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 n'a 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",
stage: "Stage1",
description: {
en: "The faster a Thwackey can beat out a rhythm with its two sticks, the more respect it wins from its peers."
}
}
export default card