1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

58
data-asia/SV/SV6/028.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ルージュラ",
'zh-tw': "迷唇姐"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Gapao",
dexId: [124],
hp: 90,
types: ["Water"],
description: {
ja: "ガラルの とある 地域では 氷の 女王と 呼んで ルージュラを 恐れ崇めていた。",
'zh-tw': "在伽勒爾的某個地區, 人們稱迷唇姐為冰之女王, 並且敬畏崇拜牠。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "おさそいキッス",
'zh-tw': "邀請之吻"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。その後、このポケモンについているエネルギーを1個選び、新しく出したポケモンにつけ替える。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。然後選擇1個這隻寶可夢身上附加的能量改附於新上場的寶可夢身上。"
}
}, {
cost: ["Water"],
name: {
ja: "スノーアイス",
'zh-tw': "雪花冰"
},
damage: 30
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card