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

65
data-asia/SV/SV3/014.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ロコン",
'zh-tw': "六尾",
th: "โรคอน"
},
illustrator: "0313",
rarity: "Common",
category: "Pokemon",
dexId: [37],
hp: 60,
types: ["Fire"],
description: {
ja: "6本の しっぽは 育つごとに 毛並みが 良くなり 美しくなる。 抱きしめると ほんのり 温かい。",
'zh-tw': "隨著身體的成長,6根尾巴的毛髮也會變得更漂亮。緊緊抱著牠時能感到微微的溫暖。",
th: "ทุกครั้งที่หางทั้ง 6 หางโตขึ้น เส้นขนจะเรียงสวยงาม พอกอดจะรู้สึกอบอุ่นเล็กน้อย"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "かえん",
'zh-tw': "烈焰",
th: "เผาไหม้"
},
damage: 10
}, {
cost: ["Fire", "Fire"],
name: {
ja: "あやしいひかり",
'zh-tw': "奇異之光",
th: "แสงประหลาด"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card