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

56
data-asia/S/SCC/046.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪妖女"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "會吐出零下50度的冷氣凍住獵物,並把牠們帶回自己的巢穴,整齊地擺成一排。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "降霜"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。從自己的棄牌區選擇1張【水】能量卡附於自己的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "水晶吐息"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 90,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card