1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

45 lines
763 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 "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "基格爾德"
},
illustrator: "otumami",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "據說當牠與威脅到生態系統的對手戰鬥時,會變化成更強大的樣子。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "制裁潮漩"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到對手已經獲得的獎賞卡的張數×40點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Grass", "Fighting", "Colorless"]
}],
retreat: 2,
regulationMark: "E"
}
export default card