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

99 lines
2.8 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 '../Rebel Clash'
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: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Galarian Darumaka",
fr: "Darumarond de Galar"
},
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Blizzard",
fr: "Blizzard",
es: "Ventisca",
it: "Bora",
pt: "Nevasca",
de: "Blizzard"
},
effect: {
en: "This attack also does 10 damage to each of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige aussi 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque también hace 10 puntos de daño a cada uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge anche 10 danni a ciascuno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque também causa 10 pontos de dano a cada um dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt auch jedem Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 80,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Crushing Headbutt",
fr: "Coup dBoule Écrasant",
es: "Cabezazo Devastador",
it: "Bottintesta Dirompente",
pt: "Cabeçada Esmagadora",
de: "Vernichtende Kopfnuss"
},
effect: {
en: "During your next turn, this Pokémon cant use Crushing Headbutt.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup dBoule Écrasant.",
es: "Durante tu próximo turno, este Pokémon no puede usar Cabezazo Devastador.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Bottintesta Dirompente.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Cabeçada Esmagadora.",
de: "Während deines nächsten Zuges kann dieses Pokémon Vernichtende Kopfnuss nicht einsetzen."
},
damage: 170,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
hp: 140,
types: ["Water"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card