1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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

94 lines
2.3 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 '../Unified Minds'
const card: Card = {
name: {
en: "Froslass",
fr: "Momartik",
es: "Froslass",
it: "Froslass",
pt: "Froslass",
de: "Frosdedje"
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
478,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Snorunt",
fr: "Stalgamin",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Spiteful Sigh",
fr: "Souffle Rancunier",
es: "Suspiro Malévolo",
it: "Soffio Dispettoso",
pt: "Suspiro Rancoroso",
de: "Boshafter Seufzer"
},
effect: {
en: "Put up to 7 damage counters on this Pokémon. This attack does 20 damage for each damage counter you placed in this way.",
fr: "Placez jusquà 7 marqueurs de dégâts sur ce Pokémon. Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts placé de cette façon.",
es: "Pon hasta 7 contadores de daño en este Pokémon. Este ataque hace 20 puntos de daño por cada contador de daño que hayas colocado de esta manera.",
it: "Metti fino a sette segnalini danno su questo Pokémon. Questo attacco infligge 20 danni per ogni segnalino danno che hai messo in questo modo.",
pt: "Coloque até 7 contadores de dano neste Pokémon. Este ataque causa 20 pontos de dano para cada contador de dano colocado desta forma.",
de: "Lege bis zu 7 Schadensmarken auf dieses Pokémon. Diese Attacke fügt 20 Schadenspunkte mal der Anzahl der auf diese Weise platzierten Schadensmarken zu."
},
damage: "20×",
},
{
cost: [
"Water",
],
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: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card