1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

67 lines
1.4 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
},
stage: "Basic",
description: {
en: "Its nest is a sloped, bowl-like pit in the desert. Once something has fallen in, there is no escape."
}
}
export default card