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

49 lines
827 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "念力土偶"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "高速旋轉"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "古代刻印"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「60」為止。"
},
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card