1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 21:09:54 +00:00

69 lines
951 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sun & Moon'
const card: Card = {
name: {
en: "Drowzee",
fr: "Soporifik",
},
illustrator: "Suwama Chiaki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
96,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Psychic Boom",
fr: "Psycho-Boom",
},
effect: {
en: "This attack does 10 damage times the amount of Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 10 dégâts multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Headbutt",
fr: "Coup dBoule",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card