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

60
data-asia/S/S10a/050.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "光輝大鋼蛇"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
'zh-tw': "據說當大岩蛇活到了100年以上,身體的成分 就會變得如同鑽石一般。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "能量湍流"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【鋼】能量卡附於這隻寶可夢身上。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "終結破壞"
},
effect: {
'zh-tw': "將自己的牌庫上方的卡丟棄直到剩餘張數變為1張為止增加其中的能量卡的張數×30點傷害。"
},
damage: "60+",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 4,
regulationMark: "F"
}
export default card