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

69 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鋁鋼橋龍ex",
'zh-cn': "鋁鋼橋龍ex",
ja: "ブリジュラスex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 300,
types: ["Metal"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "金屬防禦強化",
'zh-cn': "金屬防禦強化",
ja: 'メタルディフェンダー'
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢的弱點全部消除。",
'zh-cn': "在下個對手的回合,這隻寶可夢的弱點全部消除。",
ja: '次の相手の番、このポケモンの弱点は、すべてなくなる。'
},
damage: 220,
cost: ["Metal", "Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "H",
rarity: "Double rare",
abilities: [{
type: "Ability",
name: {
'zh-tw': "[特性]合金建造",
'zh-cn': "[特性]合金建造",
ja: "ごうきんビルド"
},
effect: {
'zh-tw': "在自己的回合從手牌使出這張卡並完成進化時可使用1次。從自己的棄牌區選擇最多2張「基本【鋼】能量」卡以任意方式附於自己的【鋼】寶可夢身上。",
'zh-cn': "在自己的回合從手牌使出這張卡並完成進化時可使用1次。從自己的棄牌區選擇最多2張「基本【鋼】能量」卡以任意方式附於自己的【鋼】寶可夢身上。",
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。"
}
}]
}
export default card