mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
* 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>
69 lines
1.3 KiB
TypeScript
69 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galarian Zigzagoon",
|
||
fr: "Zigzaton de Galar",
|
||
es: "Zigzagoon de Galar",
|
||
it: "Zigzagoon di Galar",
|
||
pt: "Zigzagoon de Galar",
|
||
de: "Galar-Zigzachs"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pin Missile",
|
||
fr: "Dard-Nuée",
|
||
es: "Pin Misil",
|
||
it: "Missilspillo",
|
||
pt: "Míssil de Espinhos",
|
||
de: "Nadelrakete"
|
||
},
|
||
effect: {
|
||
en: "Flip 4 coins. This attack does 10 damage for each heads.",
|
||
fr: "Lancez 4 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||
es: "Lanza 4 monedas. Este ataque hace 10 puntos de daño por cada cara.",
|
||
it: "Lancia quattro volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
|
||
pt: "Jogue 4 moedas. Este ataque causa 10 pontos de dano para cada cara.",
|
||
de: "Wirf 4 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu."
|
||
},
|
||
damage: "10×",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|