1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19: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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Polteageist",
fr: "Polthégeist",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Psychic",
],
evolveFrom: {
en: "Sinistea",
fr: "Théffroi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Teatime",
fr: "Thérémonie",
},
effect: {
en: "Each player draws 2 cards.",
fr: "Chaque joueur pioche 2 cartes.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Poltergeist",
fr: "Poltergeist",
},
effect: {
en: "Your opponent reveals their hand. This attack does 50 damage for each Trainer card you find there.",
fr: "Votre adversaire dévoile sa main. Cette attaque inflige 50 dégâts pour chaque carte Dresseur que vous y trouvez.",
},
damage: "50×",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
retreat: 1,
}
export default card