mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
76 lines
834 B
TypeScript
76 lines
834 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Drifblim",
|
|
fr: "Grodrive",
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
426,
|
|
],
|
|
hp: 80,
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
evolveFrom: {
|
|
en: "Drifloon",
|
|
fr: "Baudrive",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Gust",
|
|
fr: "Tornade",
|
|
},
|
|
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Colorless",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|