1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

70 lines
909 B
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 '../Forbidden Light'
const card: Card = {
name: {
en: "Pheromosa",
fr: "Cancrelove",
},
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",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "White Ray",
fr: "Rayon Blanc",
},
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.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card