mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
96 lines
2.2 KiB
TypeScript
96 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Alcremie V",
|
||
fr: "Charmilly V",
|
||
es: "Alcremie V",
|
||
it: "Alcremie V",
|
||
pt: "Alcremie V",
|
||
de: "Pokusan V"
|
||
},
|
||
|
||
illustrator: "Ayaka Yoshida",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 170,
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Sugary Sprinkles",
|
||
fr: "Granulés Sucrés",
|
||
es: "Polvo Azucarado",
|
||
it: "Praline Dolci",
|
||
pt: "Confeitos Açucarados",
|
||
de: "Zuckerstreusel"
|
||
},
|
||
effect: {
|
||
en: "Heal 30 damage from each of your Benched Pokémon.",
|
||
fr: "Soignez 30 dégâts de chacun de vos Pokémon de Banc.",
|
||
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",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sweet Splash",
|
||
fr: "Soupçon de Sucre",
|
||
es: "Dulce Salpicadura",
|
||
it: "Dolcesplash",
|
||
pt: "Borrifada Doce",
|
||
de: "Süßer Klatsch"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.",
|
||
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.",
|
||
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,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|