mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 10:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
44
data/Pokémon TCG Pocket/Space-Time Smackdown/074.ts
Normal file
44
data/Pokémon TCG Pocket/Space-Time Smackdown/074.ts
Normal file
@ -0,0 +1,44 @@
|
||||
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
|
Reference in New Issue
Block a user