1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Updated informations (#23)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 20:35:35 +02:00
committed by GitHub
parent ef2d099e6e
commit 151c00be78
820 changed files with 9255 additions and 2679 deletions

View File

@ -0,0 +1,60 @@
import { Card } from '../../../interfaces'
import Set from '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Polteageist V",
fr: "Polthégeist V"
},
illustrator: "PLANETA Igarashi",
rarity: "Common",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
abilities: [{
type: "Ability",
name: {
en: "Teapot of Surprises",
fr: "Théière Surprise"
},
effect: {
en: "If this Pokémon is in the Active Spot and is damaged by an opponents attack (even if it is Knocked Out), choose a random card from your opponents hand. Your opponent reveals that card and puts it on the bottom of their deck.",
fr: "Si ce Pokémon est sur le Poste Actif et quil subit les dégâts dune attaque de votre adversaire (même sil est mis K.O.), choisissez une carte au hasard dans la main de votre adversaire. Votre adversaire montre cette carte, puis la place en dessous de son deck."
}
}],
attacks: [{
name: {
en: "Mind Bend",
fr: "Contrôleur dEsprit"
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus."
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card