1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

101 lines
2.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../BREAKthrough'
const card: Card = {
name: {
en: "Vanilluxe",
fr: "Sorbouboul",
es: "Vanilluxe",
it: "Vanilluxe",
pt: "Vanilluxe",
de: "Gelatwino"
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
584,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Vanillish",
fr: "Sorboul",
es: "Vanillish",
it: "Vanillish",
pt: "Vanillish",
de: "Gelatroppo"
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Frigid Breath",
fr: "Souffle Glaçon",
es: "Aliento Frígido",
it: "Alitopolare",
pt: "Hálito Glacial",
de: "Kühler Atem"
},
effect: {
en: "Until the end of your next turn, each player can't play any Supporter or Stadium cards from his or her hand.",
fr: "Jusqu'à la fin de votre prochain tour, aucun joueur ne peut jouer de cartes Supporter ou Stade de sa main.",
es: "Hasta el final de tu próximo turno, los jugadores no pueden jugar ninguna carta de Partidario o Estadio de su mano.",
it: "Nessun giocatore può giocare carte Aiuto o Stadio dalla propria mano fino alla fine del tuo prossimo turno.",
pt: "Até o fim da sua próxima vez de jogar, nenhum jogador poderá jogar um card de Apoiador ou de Estádio da sua mão.",
de: "Bis zum Ende deines nächsten Zuges darf kein Spieler Unterstützer- oder Stadionkarten von seiner Hand spielen."
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Deep Freeze",
fr: "Gel Intense",
es: "Congelación Profunda",
it: "Grande Freddo",
pt: "Congelamento Profundo",
de: "Tiefkühlung"
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed. If tails, your opponent's Active Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado. Si sale cruz, el Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato. Se esce croce, il Pokémon attivo del tuo avversario viene confuso.",
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado. Se sair coroa, o Pokémon Ativo do seu oponente ficará Confuso.",
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Aktive Pokémon deines Gegners jetzt paralysiert. Bei \"Zahl\" ist das Aktive Pokémon deines Gegners jetzt verwirrt."
},
damage: 70,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card