mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
658 B
TypeScript
46 lines
658 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "列陣兵"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "頭錘"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "背水列陣"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若對手剩餘獎賞卡的張數為1張,則增加160點傷害。"
|
||
},
|
||
|
||
damage: "60+",
|
||
cost: ["Fighting", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |