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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SVHM/007.ts Normal file
View File

@ -0,0 +1,57 @@
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