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

55 lines
818 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "念力土偶"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "似乎是由2萬年前的古代人製作的泥偶蛻變而來的謎之寶可夢。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "幻象光線"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "大爆炸"
},
effect: {
'zh-tw': "這隻寶可夢也受到120點傷害。"
},
damage: 200,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card