1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Promo'
const card: Card = {
name: {
en: "Drifblim",
fr: "Grodrive",
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
426,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Drifloon",
fr: "Baudrive",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Shadow Steal",
fr: "Vol d'Ombre",
},
effect: {
en: "Does 50 damage times the number of Special Energy cards in your opponent's discard pile.",
fr: "Inflige 50 dégâts multipliés par le nombre de cartes Énergie spéciale dans la pile de défausse de votre adversaire.",
},
damage: 50,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Plentiful Placement",
fr: "Placement Multiple",
},
effect: {
en: "Put 4 damage counters on 1 of your opponent's Pokémon.",
fr: "Placez 4 marqueurs de dégâts sur 1 des Pokémon de votre adversaire.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
retreat: 1,
}
export default card