mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5I"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "火爆猴",
|
||
th: "โอโคริซารุ"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "和其他的寶可夢比起來,牠的腦血管特別結實,就算一直發怒也能活得好好的。",
|
||
th: "เส้นเลือดในสมองนั้นแข็งแรงกว่าโปเกมอนอื่น ๆ แม้จะโกรธยาวนานแค่ไหนก็แข็งแรงอยู่ได้"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "場地粉碎",
|
||
th: "ทำลายสนาม"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將場上的對手的競技場卡丟棄。",
|
||
th: "ทิ้งการ์ดสเตเดียมฝ่ายตรงข้ามที่วางบนกระดานที่ตำแหน่งทิ้งการ์ด"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "暴怒轟炸",
|
||
th: "บอมเบอร์ฟิวส์ขาด"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "造成自己的備戰區的身上放置有傷害指示物的寶可夢數量×50點傷害。",
|
||
th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเราที่มีตัวนับแดเมจวางอยู่ x50"
|
||
},
|
||
|
||
damage: "50×",
|
||
cost: ["Fighting", "Fighting"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |