mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/Diamond & Pearl/DP Black Star Promos/DP34.ts
Normal file
73
data/Diamond & Pearl/DP Black Star Promos/DP34.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../DP Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Drifblim",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
426,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Drifloon",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Wind Wave",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your discard pile for up to 5 in any combination of Pokémon and Supporter cards. Show them to your opponent and shuffle them into your deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Explosive Smoke",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user