1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Trainer kits/SM trainer Kit (Alolan Raichu)/22.ts
2021-10-18 11:53:03 +02:00

29 lines
425 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 '../SM trainer Kit (Alolan Raichu)'
const card: Card = {
set: Set,
name: {
en: "Drowzee",
fr: "Soporifik",
es: "Drowzee",
it: "Drowzee",
pt: "Drowzee",
de: "Traumato"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
retreat: 2,
weaknesses: [{
type: "Psychic",
value: "×2"
}]
}
export default card