1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

53 lines
1.1 KiB
TypeScript
Raw Permalink 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "สลีป",
id: "Drowzee"
},
illustrator: "OKUBO",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
th: "ว่ากันว่าพอมันใช้จมูกที่ยื่นออกมาดมฟุดฟิดก็จะรู้หมดว่าใครที่อยู่ตรงไหนกำลังฝันอะไรอยู่",
id: "Dikabarkan Drowzee dapat mengetahui segalanya tentang siapa, di mana, dan sedang bermimpi apa dengan mengedutkan hidungnya yang menonjol."
},
stage: "Basic",
attacks: [{
name: {
th: "สายตาชวนขนลุก",
id: "Pandangan Menyeramkan"
},
effect: {
th: "ดูการ์ดบนมือฝ่ายตรงข้าม",
id: "Lihat Kartu Pegangan lawan."
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card