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

48 lines
695 B
TypeScript
Raw 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "鬃岩狼人"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "會毫不猶豫地忽視自己不喜歡的命令。只要能解決對手,就算自己受傷也完全不在意。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "落石"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "尖銳鬃"
},
damage: 70,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card