mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
65 lines
693 B
TypeScript
65 lines
693 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Base Set 2'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Drowzee",
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
96,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pound",
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Confuse Ray",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|