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

49
data-asia/SV/SV5a/010.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ロコン",
'zh-tw': "六尾",
th: "โรคอน"
},
illustrator: "sowsow",
rarity: "Common",
category: "Pokemon",
dexId: [37],
hp: 70,
types: ["Fire"],
description: {
ja: "温かい 6本の 尻尾は 体が 育つごとに 毛並みが 良くなり 美しく なっていく。",
'zh-tw': "隨著身體的成長, 溫暖的6根尾巴的 毛髮也會變得更漂亮。",
th: "ขนของหางทั้ง 6 ที่แสนอบอุ่นนั้นจะค่อย ๆ เรียงสวยขึ้นและงดงามยิ่งขึ้นเมื่อร่างกายของมันเติบใหญ่"
},
stage: "Basic",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "ひだね",
'zh-tw': "火種",
th: "เชื้อไฟ"
},
damage: 40
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card