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

62
data-asia/S/S10a/002.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
th: "พาราเซ็คท์",
'zh-tw': "派拉斯特"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
th: "ส่วนที่เป็นแมลงเกือบจะตายแล้วส่วนตัวจริงของมันคือเห็ดที่อยู่บนหลัง ถ้าเด็ดออกจะเคลื่อนไหวไม่ได้อีก",
'zh-tw': "本體是背上的蘑菇,底下的蟲子幾乎已經死亡。 一旦蘑菇脫落,牠就再也不會動了。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "สปอร์หมดกำลัง",
'zh-tw': "力竭孢子"
},
effect: {
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่ายแต่ละตัวเป็นสภาวะ[พิษ]และ[หลับ]",
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。將雙方的戰鬥寶可夢【中毒】與【睡眠】。"
}
}],
attacks: [{
name: {
th: "ซิสเซอร์ครอส",
'zh-tw': "十字剪"
},
effect: {
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 50",
'zh-tw': "擲1次硬幣若為正面則增加50點傷害。"
},
damage: "50+",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card