1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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/SC2a/068.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "詛咒娃娃"
},
illustrator: "kodama",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "詛咒的能量滲入被丟棄玩偶的棉花裡變成了寶可夢。如果張開嘴巴,能量就會外洩。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "退化詛咒"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇對手的1隻進化的備戰寶可夢移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "陰森射擊"
},
damage: 40,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card