1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Pheromosa",
fr: "Cancrelove",
},
illustrator: "You Iribi",
rarity: "Common",
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