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

68 lines
976 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Drowzee",
fr: "Soporifik",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
96,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Sleep Inducer",
fr: "Poussododo",
},
effect: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon. The new Defending Pokémon is now Asleep.",
fr: "Échangez le Pokémon Défenseur avec un Pokémon du Banc de votre adversaire. Le nouveau Pokémon Défenseur est maintenant Endormi.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Gentle Slap",
fr: "Gifle douce",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card