1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

84 lines
1.2 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 '../POP Series 6'
const card: Card = {
name: {
en: "Drifloon",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
425,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Blowing Wind",
},
effect: {
en: "Flip a coin. If heads, put 1 of your Benched Pokémon and all cards attached to it on top of your deck. Shuffle your deck afterward.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Ominous Wind",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and cant retreat during your opponents next turn.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Darkness",
value: "+10"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
description: {
en: "A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons."
},
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card