1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

65 lines
863 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Base Set 2'
const card: Card = {
name: {
en: "Gastly",
},
illustrator: "Keiji Kinebuchi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
92,
],
hp: 30,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Sleeping Gas",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Destiny Bond",
},
effect: {
en: "Discard 1 Energy card attached to Gastly in order to use this attack. If a Pokémon Knocks Out Gastly during your opponent's next turn, Knock Out that Pokémon.",
},
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card