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

69
data-asia/S/S12a/002.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "派拉斯特",
th: "พาราเซ็คท์",
ja: "パラセクト"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "本體是背上的蘑菇,底下的蟲子幾乎已經死亡。 一旦蘑菇脫落,牠就再也不會動了。",
th: "ส่วนที่เป็นแมลงเกือบจะตายแล้ว ส่วนตัวจริงของมันคือเห็ดที่อยู่บนหลัง ถ้าเด็ดออกจะเคลื่อนไหวไม่ได้อีก",
ja: "ムシの 方は ほぼ 死んでいて 本体は 背中の キノコだ。 もげると もう 動かなくなる。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "力竭孢子",
th: "สปอร์หมดกำลัง",
ja: "ぐったりほうし"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。將雙方的戰鬥寶可夢【中毒】與【睡眠】。",
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่ายแต่ละตัวเป็นสภาวะ[พิษ]และ[หลับ]",
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。おたがいのバトルポケモンを、それぞれどくとねむりにする。"
}
}],
attacks: [{
name: {
'zh-tw': "十字剪",
th: "ซิสเซอร์ครอส",
ja: "シザークロス"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加50點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 50",
ja: "コインを1回投げオモテなら、50ダメージ追加。"
},
damage: "50",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [47]
}
export default card