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

70
data-asia/SV/SV2a/046.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "パラス",
'zh-tw': "派拉斯",
th: "พารัส",
id: "Paras"
},
illustrator: "Yoriyuki Ikegami",
rarity: "Common",
category: "Pokemon",
dexId: [46],
hp: 70,
types: ["Grass"],
description: {
ja: "冬虫夏草と いう キノコが 虫を 操っているのだ。 虫の 意思は 無視される。",
'zh-tw': "控制蟲子的是一種 叫做冬蟲夏草的蕈類。 蟲子的意志會被忽視。",
th: "เห็ดที่ชื่อโทจูคะโซจะคอยบงการแมลง โดยไม่สนใจความต้องการของแมลง",
id: "Jamur ulat Yarsagumba mengendalikan bagian tubuh serangga dari Paras. Kemauan serangga tidak dipedulikan."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ",
id: "Menginjak"
},
damage: 10
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "ほうしだま",
'zh-tw': "孢子彈",
th: "ลูกสปอร์",
id: "Bola Spora"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card