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

70 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Crobat",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Golbat",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Evolutionary Toxic",
},
effect: {
en: "Once during your turn, when you play Crobat from your hand to evolve 1 of your Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Poisoned. Put 2 damage counters instead of 1 on that Pokémon between turns.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Strike and Fade",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 50 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Flip a coin. If tails, shuffle Crobat and all cards attached to it back into your deck.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "+30"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card