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

67
data-asia/SV/SV2a/124.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ルージュラex",
'zh-tw': "迷唇姐ex",
th: "รูจูลาex",
id: "Jynx ex"
},
illustrator: "Ayaka Yoshida",
rarity: "Double rare",
category: "Pokemon",
hp: 200,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "ズッキュンキッス",
'zh-tw': "動心之吻",
th: "จุ๊บโดนใจ",
id: "Ciuman Meluluhkan"
},
effect: {
ja: "相手のバトルポケモンがねむりなら、そのポケモンをきぜつさせる。",
'zh-tw': "若對手的戰鬥寶可夢【睡眠】,則將那隻寶可夢【昏厥】。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ] จะทำให้โปเกมอนนั้น[หมดสภาพ]",
id: "Jika Pokémon Bertarung lawan mengalami kondisi Tidur, Pokémon tersebut KO."
}
}, {
cost: ["Water", "Water", "Water"],
name: {
ja: "こごえるかぜ",
'zh-tw': "冰凍之風",
th: "สายลมเยือกแข็ง",
id: "Angin Dingin"
},
damage: 120,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card