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

44
data-asia/S/S10b/048.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "美錄梅塔VMAX"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 330,
types: ["Metal"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "超極巨鋼甲重拳"
},
effect: {
'zh-tw': "與使用這個招式所需的能量相比增加身上多附的【鋼】能量的數量×60點傷害。可增加的傷害數值為最多2個【鋼】能量。"
},
damage: "160+",
cost: ["Metal", "Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "F"
}
export default card