1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +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

42
data-asia/S/S5a/047.ts Normal file
View File

@ -0,0 +1,42 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 呆呆王VMAX",
th: "กาลาร์ ยาโดคิงVMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Darkness"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "極巨劇毒",
th: "ไดเดดลีพอยซัน"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為12個。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของฝ่ายตรงข้ามเป็นสภาวะ [พิษ] ด้วย [พิษ] นี้ จำนวนตัวนับแดเมจที่วางจะเป็น 12 ตัว"
},
damage: 10,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card