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

55 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ルチャブル",
'zh-tw': "摔角鷹人",
th: "ลูจาบูล"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [701],
hp: 70,
types: ["Fighting"],
description: {
ja: "群れを 作らず 静かに 暮らす。 集団で 騒ぐ オコリザルは 天敵で いつも 争いになる。",
'zh-tw': "不集結成群,過著靜靜的生活。 天敵是喜歡集體大鬧的火爆猴, 時不時就會起爭執。",
th: "อาศัยอยู่เงียบ ๆ ไม่รวมกันเป็นฝูง มักจะต่อสู้กับศัตรูโดยธรรมชาติอย่างโอโคริซารุที่ชอบโหวกเหวกเป็นฝูงอยู่เสมอ"
},
stage: "Basic",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "サイドカウンター",
'zh-tw': "獎賞反擊",
th: "ไซด์เคาน์เตอร์"
},
damage: "50+",
effect: {
ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、90ダメージ追加。",
'zh-tw': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則增加90點傷害。",
th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเรา มากกว่าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้าม การโจมตีนี้จะเพิ่มแดเมจอีก 90"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card