1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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

61
data-asia/S/S11a/053.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "藏瑪然特"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "能夠反彈一切的攻擊,因此被稱為格鬥王之盾,受到人們的畏懼與尊崇。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "金屬盾牌"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有能量,則這隻寶可夢受到招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "報仇"
},
effect: {
'zh-tw': "在上個對手的回合若自己的寶可夢【氣絕】了則增加120點傷害。"
},
damage: "100+",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card