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

56 lines
839 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 "../SVP1"
const card: Card = {
set: Set,
name: {
'zh-tw': "墓揚犬ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "咬緊"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "掃墓"
},
effect: {
'zh-tw': "增加自己的棄牌區的【超】寶可夢卡的張數×10點傷害。"
},
damage: "160+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card