1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

58
data-asia/SV/SV7a/080.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
ja: "ブリジュラスex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 300,
types: ["Metal"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ごうきんビルド"
},
effect: {
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。"
}
}],
attacks: [{
cost: ["Metal", "Metal", "Metal"],
name: {
ja: "メタルディフェンダー"
},
damage: 220,
effect: {
ja: "次の相手の番、このポケモンの弱点は、すべてなくなる。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
rarity: "None"
}
export default card