1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

60 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../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