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

55 lines
879 B
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"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Metal"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "トリプルレーザー"
},
effect: {
ja: "相手のポケモン3匹に、それぞれ30ダメージ。ベンチは弱点・抵抗力を計算しない。"
}
}, {
cost: ["Metal", "Metal", "Metal", "Colorless"],
name: {
ja: "サイバネホイール"
},
damage: 160,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3
}
export default card