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

72 lines
2.3 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉斯奇魯",
th: "เรจิสตีล",
ja: "レジスチル"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "構成牠身體的神奇物質具有能夠伸縮的柔軟性, 但卻比任何金屬都還要堅韌。",
th: "สร้างขึ้นจากวัสดุประหลาดที่แข็งแกร่งยิ่งกว่าโลหะชนิดใด แต่ก็มีความอ่อนตัวที่ยืดหดได้ด้วยเช่นกัน",
ja: "伸び縮みする 柔らかさも あるが どんな 金属よりも 頑丈な 不思議な 物質で できている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雷吉之門",
th: "เรจิเกต",
ja: "レジゲート"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด",
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "重磅衝撞",
th: "เฮฟวีบอมเบอร์",
ja: "ヘビーボンバー"
},
effect: {
'zh-tw': "減少對手的戰鬥寶可夢【撤退】所需的能量的數量×50點傷害。",
th: "แดเมจของท่าต่อสู้นี้จะลดลงตามจำนวนพลังงานสำหรับ[หนี]ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x50",
ja: "相手のバトルポケモンのにげるためのエネルギーの数×50ダメージぶん、このワザのダメージは小さくなる。"
},
damage: "220",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3,
regulationMark: "F",
dexId: [379]
}
export default card