1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

82 lines
2.5 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "フォレトス",
'zh-tw': "佛烈托斯",
th: "ฟอเรทอส",
id: "Forretress"
},
illustrator: "Lee HyunJung",
rarity: "Uncommon",
category: "Pokemon",
dexId: [205],
hp: 120,
types: ["Metal"],
description: {
ja: "鋼鉄のように 硬い 殻で 全身を 覆っている。 中の 正体は 不明。",
'zh-tw': "全身覆蓋著有如鋼鐵般堅硬的殼。 殼裡的真面目至今不明。",
th: "เปลือกที่แข็งราวเหล็กปกคลุมรอบตัว ตัวตนภายใต้เปลือกเป็นอย่างไรไม่มีใครรู้",
id: "Forretress menyelimuti dirinya dengan cangkang yang keras seperti baja. Wujud asli di dalamnya tidak diketahui."
},
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
ja: "れんぞくスピン",
'zh-tw': "連續旋轉",
th: "หมุนต่อเนื่อง",
id: "Putaran Beruntun"
},
damage: "50×",
effect: {
ja: "ウラが出るまでコインを投げ、オモテの数×50ダメージ。",
'zh-tw': "擲硬幣直到出現反面造成正面出現的次數×50點傷害。",
th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x50",
id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 50 untuk tiap lemparan dengan hasil sisi depan."
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "シェルローリング",
'zh-tw': "硬殼回轉",
th: "เชลล์โรลลิง",
id: "Shell Rolling"
},
damage: 90,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-50」される。",
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-50]",
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 50."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card