1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 16:12:10 +00:00

57 lines
1.3 KiB
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 "../SVHM"
const card: Card = {
set: Set,
name: {
'zh-tw': "大宇怪",
th: "โอเบ็ม",
id: "Beheeyem"
},
illustrator: "Shinya Komatsu",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
description: {
'zh-tw': "如果大宇怪出現在牧場裡,那麼就會有1隻毛毛角羊 在不知不覺間消失。",
th: " 1 ",
id: "Entah sejak kapan seekor Dubwool menghilang dari peternakan yang didatangi oleh Beheeyem."
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "",
th: "",
id: "Cosmobeat"
},
effect: {
'zh-tw': "×20",
th: " x20",
id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Pokémon di Arena sendiri."
},
damage: "20×",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card