1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

52 lines
824 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "基格爾德"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "基格爾德最完美的樣子。會從胸前的口中發射出能摧毀一切的強大能量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "光束"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "核心復仇者"
},
effect: {
'zh-tw': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則增加80點傷害。"
},
damage: "80+",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card