mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
63
data-asia/SV/SV6/024.ts
Normal file
63
data-asia/SV/SV6/024.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ニョロゾ",
|
||||
'zh-tw': "蚊香君"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Common",
|
||||
illustrator: "OKACHEKE",
|
||||
dexId: [61],
|
||||
hp: 100,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "全身の 皮膚は 湿っているが お腹の 渦巻きの 部分の 感触は すべすべとしている。",
|
||||
'zh-tw': "全身的皮膚都濕答答的, 但肚子上的漩渦部分 摸起來很光滑。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "さいみんじゅつ",
|
||||
'zh-tw': "催眠術"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "相手のバトルポケモンをねむりにする。",
|
||||
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "おうふくビンタ",
|
||||
'zh-tw': "連環巴掌"
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
effect: {
|
||||
ja: "コインを2回投げ、オモテの数×30ダメージ。",
|
||||
'zh-tw': "擲2次硬幣,造成正面出現的次數×30點傷害。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user