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

65
data-asia/SV/SV4K/049.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ヤブクロン",
'zh-tw': "破破袋",
th: "ยาบุคุรอน"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
dexId: [568],
hp: 70,
types: ["Darkness"],
description: {
ja: "不衛生な 場所が 好き。 ゴミで 汚したまま 放っておくと 部屋にも 現れて 棲みつく。",
'zh-tw': "喜歡不衛生的地方。如果不及時清理家裡的垃圾, 破破袋就會過來居住。",
th: "ชอบที่ไม่ถูกสุขอนามัย ถ้าทิ้งขยะให้สกปรกจะปรากฏตัวขึ้นและอาศัยอยู่ในห้อง"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ガスでつつむ",
'zh-tw': "瓦斯包圍",
th: "ห่อหุ้มด้วยแก๊ส"
},
damage: 10
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ベノムヒット",
'zh-tw': "毒液一擊",
th: "เวนอมฮิต"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card