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

44 lines
655 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Drifblim"
},
illustrator: "Miki Tanaka",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
evolveFrom: {
en: "Drifloon"
},
description: {
en: "Some say this Pokémon is a collection of souls<br />burdened with regrets, silently drifting through<br />the dusk."
},
stage: "Stage1",
attacks: [{
name: {
en: "Balloon Strike"
},
damage: 60,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card