mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
879 B
TypeScript
55 lines
879 B
TypeScript
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 |