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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/S/S10D/046.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "自爆磁怪"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 150,
types: ["Metal"],
description: {
'zh-tw': "據說牠頭上的天線會接收來自宇宙的電波, 讓牠被未知的對象控制。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "終極磁鐵"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方6張卡從其中選擇任意數量的【鋼】能量卡以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。"
}
}],
attacks: [{
name: {
'zh-tw': "强力光束"
},
damage: 120,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card