1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

71
data-asia/SV/SV5a/026.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ウネルミナモ",
'zh-tw': "波盪水",
th: "คลื่นน้ำกระเพื่อม"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
dexId: [1009],
hp: 130,
types: ["Water"],
description: {
ja: "謎多き 凶暴な 生物。 古い 探検記に 記された 水の 怪物から 名付けられた。",
'zh-tw': "充滿謎團的凶暴生物。名字來自古老的探險記裡 記載的水之怪物。",
th: "มีรูปร่างคล้ายกับภาพประกอบที่ถูกตีพิมพ์และแนะนำในนิตยสารไสยศาสตร์ว่า เป็นซุยคูนในอดีตกาลอันไกลโพ้น"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "オーロラゲイン",
'zh-tw': "極光增輝",
th: "ออโรราเกน"
},
damage: 20,
effect: {
ja: "このポケモンのHPを「20」回復する。",
'zh-tw': "將這隻寶可夢恢復「20」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]"
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
ja: "うねりさく",
'zh-tw': "蜿蜒割裂",
th: "บิดแล้วฉีก"
},
damage: "20×",
effect: {
ja: "このポケモンにダメカンを9個までのせ、のせた数×20ダメージ。",
'zh-tw': "在這隻寶可夢身上放置最多9個傷害指示物造成放置的數量×20點傷害。",
th: "วางตัวนับแดเมจได้สูงสุด 9 ตัวบนโปเกมอนนี้ แดเมจจะเท่ากับจำนวนที่วาง x20"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card