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

58 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "椰蛋樹",
ja: "ナッシー"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "3顆頭都想著不同的事。對自己以外的事情 似乎都沒什麼興趣。",
ja: "3つの 頭は べつのことを 考えている。 自分以外は あまり 興味がない ようだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "超級吸取",
ja: "メガドレイン"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。",
ja: "このポケモンのHPを「30」回復する。"
},
damage: 70,
cost: ["Grass", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "種子炸彈",
ja: "タネばくだん"
},
damage: 130,
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [103]
}
export default card