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

86 lines
1.6 KiB
TypeScript
Raw Permalink 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Pheromosa",
fr: "Cancrelove",
es: "Pheromosa",
it: "Pheromosa",
pt: "Pheromosa",
de: "Schabelle"
},
illustrator: "Hitoshi Ariga",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
795,
],
hp: 110,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "High Jump Kick",
fr: "Pied Voltige",
es: "Patada Salto Alta",
it: "Calcinvolo",
pt: "Chute de Pulo Alto",
de: "Turmkick"
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "White Ray",
fr: "Rayon Blanc",
es: "Rayo Blanco",
it: "Raggiobianco",
pt: "Raio Branco",
de: "Weißer Strahl"
},
effect: {
en: "If you have only 1 Prize card remaining, this attack does 90 more damage.",
fr: "Sil vous reste exactement 1 carte Récompense, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si te queda exactamente 1 carta de Premio, este ataque hace 90 puntos de daño más.",
it: "Se hai esattamente una carta Premio rimanente, questo attacco infligge 90 danni in più.",
pt: "Se você tiver apenas 1 carta de Prêmio restante, este ataque causará 90 pontos de dano a mais.",
de: "Wenn du genau 1 verbleibende Preiskarte hast, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 0
}
export default card