1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

54 lines
1.2 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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>尼多蘭",
'zh-cn': "<火箭隊的>尼多蘭",
ja: "ロケット団のニドラン♀"
},
illustrator: "REND",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "會用堅硬的門牙咬碎 樹果後吃下。角的尖端 會比雄性還要圓一些。",
'zh-cn': "會用堅硬的門牙咬碎 樹果後吃下。角的尖端 會比雄性還要圓一些。",
ja: "硬い 前歯で 木の実を 砕いて 食べる。 ツノの 先は オスより 少し 丸みを 帯びている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "偷襲",
'zh-cn': "偷襲",
ja: "ふいをつく"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
'zh-cn': "擲1次硬幣若為反面則這個招式失敗。",
ja: "コインを1回投げウラなら、このワザは失敗。"
},
damage: 30,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [29]
}
export default card