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

52 lines
833 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 "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥偶巨人V"
},
illustrator: "Eske Yoshinob",
category: "Pokemon",
hp: 220,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "百萬噸重拳"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "倒轉光束"
},
effect: {
'zh-tw': "從對手的進化的戰鬥寶可夢身上移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。"
},
damage: 180,
cost: ["Psychic", "Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "E"
}
export default card