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:
76
data/Sword & Shield/Sword & Shield/90.ts
Normal file
76
data/Sword & Shield/Sword & Shield/90.ts
Normal 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
|
Reference in New Issue
Block a user