mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
56
data-asia/S/S4a/123.ts
Normal file
56
data-asia/S/S4a/123.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "長毛巨魔"
|
||||
},
|
||||
|
||||
illustrator: "nagimiso",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "透過用頭髮裹住全身,讓肌肉的力量向上提升。能發揮出足以壓倒怪力的力量。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "惡之制約"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的戰鬥寶可夢使用招式所需的能量增加1個【無】能量。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "能量壓制"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user