1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

72
data-asia/SV/SV1V/058.ts Normal file
View File

@ -0,0 +1,72 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "テツワダチex",
'zh-tw': "鐵轍跡ex",
th: "รอยล้อเหล็กex",
id: "Iron Treads ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 220,
types: ["Metal"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "トリプルレーザー",
'zh-tw': "三重鐳射",
th: "ทริปเปิลเลเซอร์",
id: "Triple Laser"
},
effect: {
ja: "相手のポケモン3匹に、それぞれ30ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的3隻寶可夢各受到30點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนฝ่ายตรงข้าม 3 ตัว จะได้รับแดเมจตัวละ 30 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini memberikan kerusakan masing-masing sejumlah 30 kepada 3 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
}
}, {
cost: ["Metal", "Metal", "Metal", "Colorless"],
name: {
ja: "サイバネホイール",
'zh-tw': "控制輪",
th: "ไซเบอร์เนติกวีล",
id: "Cybernetics Wheel"
},
damage: 160,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์",
id: "Tukar Pokémon ini dengan Pokémon Cadangan."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card