1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 78366685f8
feat: TCG Pocket A2b (#695)
* feat: TCG Pocket A2b

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2025-03-27 01:01:27 +01:00

44 lines
616 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shining Revelry"
const card: Card = {
set: Set,
name: {
en: "Drifblim"
},
illustrator: "Hajime Kusajima",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
evolveFrom: {
en: "Drifloon"
},
description: {
en: "It can generate and release gas within its body. That's how it can control the altitude of its drift."
},
stage: "Stage1",
attacks: [{
name: {
en: "Gust"
},
damage: 40,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 0
}
export default card