1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
2.1 KiB
TypeScript
Raw 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Regice",
fr: "Regice",
es: "Regice",
it: "Regice",
pt: "Regice",
de: "Regice"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
378,
],
hp: 120,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Icy Barrier",
fr: "Barrière Glaciale",
es: "Barrera Hielo",
it: "Criobarriera",
pt: "Barreira Gélida",
de: "Eisige Barriere"
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponent cant play any Stadium cards from their hand.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, votre adversaire ne peut pas jouer de cartes Stade de sa main.",
es: "Mientras este Pokémon sea tu Pokémon Activo, tu rival no puede jugar ninguna carta de Estadio de su mano.",
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, il tuo avversario non può giocare le carte Stadio che ha in mano.",
pt: "Enquanto este Pokémon for o seu Pokémon Ativo, seu oponente não poderá jogar nenhuma carta de Estádio da própria mão.",
de: "Solang dieses Pokémon dein Aktives Pokémon ist, kann dein Gegner keine Stadionkarten von seiner Hand spielen."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Icy Wind",
fr: "Vent Glace",
es: "Viento Hielo",
it: "Ventogelato",
pt: "Vento Congelante",
de: "Eissturm"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
}
export default card