1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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/SV/SV5K/080.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ゴース",
'zh-tw': "鬼斯",
th: "โกส"
},
illustrator: "Mousho",
category: "Pokemon",
dexId: [92],
hp: 60,
types: ["Darkness"],
description: {
ja: "ガス状の 体で まとわりつき 獲物の 皮膚から 少しずつ 毒を 送り込んで 弱らせる。",
'zh-tw': "會用氣體狀的身體纏住獵物,再從皮膚緩緩地注入毒素, 使對手變得虛弱。",
th: "ใช้ร่างกายที่เป็นแก๊สเกาะติดเหยื่อแล้วค่อย ๆ ส่งพิษผ่านเข้าผิวหนังไปทีละนิดจนเหยื่ออ่อนแอลง"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ふしぎなビーム",
'zh-tw': "神秘光束",
th: "ลำแสงพิศวง"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Darkness", "Darkness"],
name: {
ja: "ガスでつつむ",
'zh-tw': "瓦斯包圍",
th: "ห่อหุ้มด้วยแก๊ส"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card