1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

60 lines
1.3 KiB
TypeScript
Raw Permalink 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ナンジャモのカイデン",
'zh-tw': "奇樹的電海燕",
'zh-cn': "奇樹的電海燕"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
dexId: [940],
hp: 60,
types: ["Lightning"],
description: {
ja: "翼の 骨は 風を 受けると 電気を 作る。 海に 飛び込み 獲物を 感電させて 捕らえる。",
'zh-tw': "當翅膀的骨頭受到風吹時, 就能製造出電力。會衝進 海裡讓獵物觸電後將其捕獲。",
'zh-cn': "當翅膀的骨頭受到風吹時, 就能製造出電力。會衝進 海裡讓獵物觸電後將其捕獲。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "でんこうせっか",
'zh-tw': "電光一閃",
'zh-cn': "電光一閃"
},
damage: "10+",
effect: {
ja: "コインを1回投げオモテなら、20ダメージ追加。",
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。",
'zh-cn': "擲1次硬幣若為正面則增加20點傷害。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card