1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +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

92 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Galarian Darmanitan",
fr: "Darumacho de Galar",
es: "Darmanitan de Galar",
it: "Darmanitan di Galar",
pt: "Darmanitan de Galar",
de: "Galar-Flampivian"
},
illustrator: "Misa Tsutsui",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 140,
types: [
"Fire",
],
evolveFrom: {
en: "Galarian Darumaka",
fr: "Darumarond de Galar"
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Headbutt",
fr: "Coup dBoule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada",
de: "Kopfnuss"
},
damage: 40,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Frozen Heat",
fr: "Chaleur Gelée",
es: "Calor Congelado",
it: "Gelocalore",
pt: "Calor Congelado",
de: "Eisige Hitze"
},
effect: {
en: "You may discard all Water Energy from this Pokémon. If you do, this attack does 60 more damage.",
fr: "Vous pouvez défausser toute lÉnergie Water attachée à ce Pokémon. Dans ce cas, cette attaque inflige 60 dégâts supplémentaires.",
es: "Puedes descartar todas las Energías Water de este Pokémon. Si lo haces, este ataque hace 60 puntos de daño más.",
it: "Puoi scartare tutte le Energie Water da questo Pokémon. Se lo fai, questo attacco infligge 60 danni in più.",
pt: "Você pode descartar todas as Energias Water deste Pokémon. Se fizer isto, este ataque causará 60 pontos de dano a mais.",
de: "Du kannst alle Water-Energien von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "110+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card