1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +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

63
data-asia/SV/SV3a/033.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ゴース",
'zh-tw': "鬼斯",
th: "โกส"
},
illustrator: "Nobuhiro Imagawa",
rarity: "Common",
category: "Pokemon",
dexId: [92],
hp: 50,
types: ["Darkness"],
description: {
ja: "ガス状の 体で まとわりつき 獲物の 皮膚から 少しずつ 毒を 送り込んで 弱らせる。",
'zh-tw': "會用氣體狀的身體纏住獵物,再從皮膚緩緩地注入毒素, 使對手變得虛弱。",
th: "ใช้ร่างกายที่เป็นแก๊สเกาะติดเหยื่อแล้วค่อย ๆ ส่งพิษผ่านเข้าผิวหนังไปทีละนิดจนเหยื่ออ่อนแอลง"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ひきつける",
'zh-tw': "吸引",
th: "ยั่วยวน"
},
effect: {
ja: "自分の山札を1枚引く。",
'zh-tw': "從自己的牌庫抽出1張卡。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
}
}, {
cost: ["Darkness", "Colorless"],
name: {
ja: "おにび",
'zh-tw': "鬼火",
th: "ลูกไฟวิญญาณ"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card