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

61 lines
1.7 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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "大舌舔",
th: "เบโรเบลท์"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
description: {
'zh-tw': "神奇的舌頭能夠伸到身高的好幾倍遠。至今沒人能解開 為什麼它會這麼神奇。",
th: "ลิ้นที่ดูแปลกนั้นสามารถยืดยาวได้มากกว่าส่วนสูงของร่างกายหลายเท่า ยังไม่มีใครรู้ว่าทำไมถึงเป็นเช่นนั้น"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "泰山壓頂",
th: "ทิ้งตัวทับ"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "舔舔颶風",
th: "เฮอริเคนแพล็บแพล็บ"
},
effect: {
'zh-tw': "擲4次硬幣造成正面出現的次數×70點傷害。",
th: "ทอยเหรียญ 4 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x70"
},
damage: "70×",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card