mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add SV9 (#674)
This commit is contained in:
60
data-asia/SV/SV9/031.ts
Normal file
60
data-asia/SV/SV9/031.ts
Normal file
@ -0,0 +1,60 @@
|
||||
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
|
Reference in New Issue
Block a user