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

93 lines
1.9 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Stonjourner VMAX",
fr: "Dolman VMAX",
es: "Stonjourner VMAX",
it: "Stonjourner VMAX",
pt: "Stonjourner VMAX",
de: "Humanolith VMAX"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
hp: 330,
types: [
"Fighting",
],
evolveFrom: {
en: "Stonjourner V",
fr: "Dolman-V",
},
stage: "VMAX",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Stone Gift",
fr: "Cadeau Roc",
es: "Regalo Roca",
it: "Donopietra",
pt: "Presente Pedregoso",
de: "Steingeschenk"
},
effect: {
en: "Attach a Fighting Energy card from your hand to 1 of your Pokémon. If you do, heal 120 damage from that Pokémon.",
fr: "Attachez une carte Énergie Fighting de votre main à lun de vos Pokémon. Dans ce cas, soignez 120 dégâts de ce Pokémon-là.",
es: "Une 1 carta de Energía Fighting de tu mano a 1 de tus Pokémon. Si lo haces, cura 120 puntos de daño a ese Pokémon.",
it: "Assegna a uno dei tuoi Pokémon una carta Energia Fighting dalla tua mano. Se lo fai, cura quel Pokémon da 120 danni.",
pt: "Ligue 1 carta de Energia Fighting da sua mão a 1 dos seus Pokémon. Se fizer isto, cure 120 pontos de dano daquele Pokémon.",
de: "Lege 1 Fighting-Energiekarte aus deiner Hand an 1 deiner Pokémon an. Wenn du das machst, heile 120 Schadenspunkte bei jenem Pokémon."
},
},
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Max Rockfall",
fr: "Lithomax",
es: "Maxilito",
it: "Dynamacigno",
pt: "Desabamento Max",
de: "Dyna-Brocken"
},
damage: 200,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card