mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 20:01:58 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
60
data-asia/SV/SV6/023.ts
Normal file
60
data-asia/SV/SV6/023.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ニョロモ",
|
||||
'zh-tw': "蚊香蝌蚪"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Common",
|
||||
illustrator: "Kedamahadaitai Yawarakai",
|
||||
dexId: [60],
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "まだ 脚が 生えた ばかりで うまく 歩けない。 水の中を 泳いでる ほうが 好きなようだ。",
|
||||
'zh-tw': "由於腳才剛長出來, 因此還不太擅長走路。 似乎更喜歡在水中游泳。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "ふむ",
|
||||
'zh-tw': "踩"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "しっぽビンタ",
|
||||
'zh-tw': "擺尾拍打"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
effect: {
|
||||
ja: "コインを2回投げ、オモテの数×20ダメージ。",
|
||||
'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user