1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Dedenne",
fr: "Dedenne",
es: "Dedenne",
it: "Dedenne",
pt: "Dedenne",
de: "Dedenne"
},
illustrator: "Shibuzoh.",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Psychic",
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Mad Party",
fr: "Folle Aventure",
es: "Merienda de Locos",
it: "Festa di Matti",
pt: "Festa Maluca",
de: "Verrückte Party"
},
effect: {
en: "This attack does 20 damage for each Pokémon in your discard pile that has the Mad Party attack.",
fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse qui a lattaque Folle Aventure.",
es: "Este ataque hace 20 puntos de daño por cada Pokémon en tu pila de descartes que tenga el ataque Merienda de Locos.",
it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua pila degli scarti che ha lattacco Festa di Matti.",
pt: "Este ataque causa 20 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque Festa Maluca.",
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel, das die Attacke Verrückte Party hat, 20 Schadenspunkte zu."
},
damage: "20×",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card