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

71 lines
1.6 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: "Nigosier VMAX",
en: "Cramorant VMAX",
es: "Cramorant VMAX",
it: "Cramorant VMAX",
pt: "Cramorant VMAX",
de: "Urgl VMAX"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 320,
types: ["Colorless"],
evolveFrom: {
fr: "Nigosier-V",
en: "Cramorant V"
},
attacks: [{
name: {
fr: "Jetomax",
en: "Max Jet",
es: "Maxipropulsión",
it: "Dynagetto",
pt: "Jato Max",
de: "Dyna-Schwall"
},
effect: {
fr: "Lancez une pièce pour chaque Énergie attachée à ce Pokémon. Cette attaque inflige 80 dégâts pour chaque côté face.",
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 80 damage for each heads.",
es: "Lanza 1 moneda por cada Energía unida a este Pokémon. Este ataque hace 80 puntos de daño por cada cara.",
it: "Lancia una moneta per ogni Energia assegnata a questo Pokémon. Questo attacco infligge 80 danni ogni volta che esce testa.",
pt: "Jogue 1 moeda para cada Energia ligada a este Pokémon. Este ataque causa 80 pontos de dano para cada cara.",
de: "Wirf 1 Münze für jede an dieses Pokémon angelegte Energie. Diese Attacke fügt 80 Schadenspunkte pro Kopf zu."
},
damage: "80×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card