1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

42 lines
1.0 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 "../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