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

81 lines
2.1 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: "Charmilly V",
en: "Alcremie V",
es: "Alcremie V",
it: "Alcremie V",
pt: "Alcremie V",
de: "Pokusan V"
},
illustrator: "Ayaka Yoshida",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
attacks: [{
name: {
fr: "Granulés Sucrés",
en: "Sugary Sprinkles",
es: "Polvo Azucarado",
it: "Praline Dolci",
pt: "Confeitos Açucarados",
de: "Zuckerstreusel"
},
effect: {
fr: "Soignez 30 dégâts de chacun de vos Pokémon de Banc.",
en: "Heal 30 damage from each of your Benched Pokémon.",
es: "Cura 30 puntos de daño a cada uno de tus Pokémon en Banca.",
it: "Cura ciascuno dei tuoi Pokémon in panchina da 30 danni.",
pt: "Cure 30 pontos de dano de cada um dos seus Pokémon no Banco.",
de: "Heile 30 Schadenspunkte bei jedem Pokémon auf deiner Bank."
},
cost: ["Psychic"]
}, {
name: {
fr: "Soupçon de Sucre",
en: "Sweet Splash",
es: "Dulce Salpicadura",
it: "Dolcesplash",
pt: "Borrifada Doce",
de: "Süßer Klatsch"
},
effect: {
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
en: "If the Defending Pokémon is a Basic Pokémon, it cant attack during your opponents next turn.",
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante o próximo turno do seu oponente.",
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card