1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +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

61 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Kraknoix",
en: "Trapinch",
es: "Trapinch",
it: "Trapinch",
pt: "Trapinch",
de: "Knacklion"
},
illustrator: "MAHOU",
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
attacks: [{
name: {
fr: "Vibration Terrestre",
en: "Lands Pulse",
es: "Pulso Telúrico",
it: "Pulsazione Tellurica",
pt: "Pulso da Terra",
de: "Bodenpuls"
},
effect: {
fr: "Si un Stade est en jeu, cette attaque inflige 10 dégâts supplémentaires.",
en: "If a Stadium is in play, this attack does 10 more damage.",
es: "Si hay un Estadio en juego, este ataque hace 10 puntos de daño más.",
it: "Se cè in gioco una carta Stadio, questo attacco infligge 10 danni in più.",
pt: "Se um Estádio estiver em jogo, este ataque causará 10 pontos de dano a mais.",
de: "Wenn eine Stadionkarte im Spiel ist, fügt diese Attacke 10 Schadenspunkte mehr zu."
},
damage: "10+",
cost: ["Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card