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

57
data-asia/S/SC1a/165.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Metal"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "不撓之劍"
},
effect: {
'zh-tw': "在自己的回合時可使用1次若使用則自己的回合結束。查看自己的牌庫上方3張卡選擇其中任意數量的【鋼】能量卡附於這隻寶可夢身上。將剩餘卡加入手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "無畏聖劍"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 230,
cost: ["Metal", "Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card