1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV6/025.ts Normal file
View 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: "Uncommon",
illustrator: "Nisota Niso",
dexId: [62],
hp: 170,
types: ["Water"],
description: {
ja: "発達した 手足を 使って ほんの 一瞬だけなら 水の上を 走ることができる。",
'zh-tw': "如果只是一瞬間的話, 牠能夠用肌肉發達的 四肢在水上奔跑。"
},
stage: "Stage2",
attacks: [{
cost: ["Water"],
name: {
ja: "さいみんじゅつ",
'zh-tw': "催眠術"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ジャンピングアッパー",
'zh-tw': "跳躍衝天"
},
damage: "120+",
effect: {
ja: "のぞむなら、120ダメージ追加。その場合、このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。",
'zh-tw': "若希望增加120點傷害。這個情況下將這隻寶可夢與附加的卡全部放回自己的牌庫並重洗。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card