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

56 lines
817 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "超能豔鴕"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "會從大大的眼睛放出 精神力量讓對手無法動彈。 有別外表,性格非常粗暴。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "極光增輝"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "超念力"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card