1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

82
data-asia/SV/SV1V/057.ts Normal file
View File

@ -0,0 +1,82 @@
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