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

80 lines
1.7 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: "Torgamord",
en: "Drednaw",
es: "Drednaw",
it: "Drednaw",
pt: "Drednaw",
de: "Kamalm"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
hp: 140,
types: ["Water"],
evolveFrom: {
fr: "Khélocrok",
en: "Chewtle"
},
abilities: [{
type: "Ability",
name: {
fr: "Exosquelette",
en: "Exoskeleton",
es: "Exosqueleto",
it: "Esoscheletro",
pt: "Exo-esqueleto",
de: "Exoskelett"
},
effect: {
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
es: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
}
}],
attacks: [{
name: {
fr: "CoudKrâne",
en: "Skull Bash",
es: "Cabezazo",
it: "Capocciata",
pt: "Quebra-crânio",
de: "Schädelwumme"
},
damage: 130,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card