mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
58 lines
1.0 KiB
TypeScript
58 lines
1.0 KiB
TypeScript
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 |