1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/SV5K/086.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウネルミナモex",
'zh-tw': "波盪水ex",
th: "คลื่นน้ำกระเพื่อมex"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 220,
types: ["Water"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "こんぺきはとう",
'zh-tw': "藏青浪濤",
th: "คลื่นยักษ์น้ำเงินคราม"
},
effect: {
ja: "このポケモンが使うワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้ใช้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด"
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "カタルシスロアー",
'zh-tw': "宣洩吼嘯",
th: "แผดเสียงระบายอารมณ์"
},
damage: "120+",
effect: {
ja: "相手のバトルポケモンが特殊状態なら、120ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢處於特殊狀態則增加120點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะผิดปกติ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card