mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/S/SCA/068.ts
Normal file
55
data-asia/S/SCA/068.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SCA"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "頭巾混混"
|
||||
},
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "牠看似無精打采的踢擊其實擁有足以擊碎修建老匠手中混凝土的破壞力。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "窮追不捨"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Darkness"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "惡棍鬧事"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在這個回合,若從手牌使出了「聶梓」,則增加90點傷害。"
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user