1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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

49
data-asia/S/S-P/192.ts Normal file
View File

@@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "金屬怪"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 100,
types: ["Metal"],
description: {
'zh-tw': "由2隻鐵啞鈴以磁力結合而成。因為有2個大腦, 精神力量也強化成2倍了。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "子彈拳"
},
effect: {
'zh-tw': "擲2次硬幣增加正面出現的次數×30點傷害。"
},
damage: "30+",
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card