1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

55 lines
1.4 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: "Orca",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
'zh-tw': "沾到牠黏糊糊的唾液後如果放著不管,就會變得 奇癢無比,而且癢個不停。",
th: "ถ้าเผลอไปสัมผัสน้ำลายที่เหนียวหนืดแล้วปล่อยทิ้งไว้จะทำให้คันมากแล้วก็ไม่หายคันด้วย"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "舌引",
th: "ดึงเข้าด้วยลิ้น"
},
effect: {
'zh-tw': "查看對手的手牌從其中選擇最多2張【基礎】寶可夢卡放置於對手的備戰區。",
th: "ดูการ์ดบนมือฝ่ายตรงข้าม เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากในนั้น วางบนเบนช์ฝ่ายตรงข้าม"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "怪力",
th: "พลังมหากาฬ"
},
damage: 50,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card