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

55 lines
1.0 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "トゲチック",
'zh-tw': "波克基古",
'zh-cn': "波克基古"
},
illustrator: "Teeziro",
rarity: "Common",
category: "Pokemon",
dexId: [176],
hp: 90,
types: ["Psychic"],
description: {
ja: "心優しい 人の 前に 幸せを もたらすため 姿を 現すと 言われている。",
'zh-tw': "據說牠會為了將 幸福帶給心地善良 的人而現身。",
'zh-cn': "據說牠會為了將 幸福帶給心地善良 的人而現身。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ドレインキッス",
'zh-tw': "吸取之吻",
'zh-cn': "吸取之吻"
},
damage: 30,
effect: {
ja: "このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP。",
'zh-cn': "將這隻寶可夢恢復「30」HP。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card