mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
51 lines
840 B
TypeScript
51 lines
840 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "獒教父ex"
|
||
},
|
||
|
||
illustrator: "PLANETA Mochizuki",
|
||
category: "Pokemon",
|
||
hp: 260,
|
||
types: ["Darkness"],
|
||
stage: "Stage1",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "膽怯"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-50」點。"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "自尊心之牙"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若自己的備戰寶可夢身上放置有傷害指示物,則增加120點傷害。"
|
||
},
|
||
|
||
damage: "100+",
|
||
cost: ["Darkness", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |