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

60
data-asia/S/S10b/044.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "大鋼蛇"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 180,
types: ["Metal"],
description: {
'zh-tw': "據說當大岩蛇活到了100年以上,身體的成分就會變得如同鑽石一般。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "泰山壓頂"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "鐵之光炮"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 170,
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "F"
}
export default card