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

72 lines
2.0 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: "テツワダチ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