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

68
data-asia/SV/SV1S/006.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ミニーブ",
'zh-tw': "迷你芙",
th: "มินีฟ",
id: "Smoliv"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
dexId: [928],
hp: 60,
types: ["Grass"],
description: {
ja: "頭の 実から オイルを 出して 敵から 身を 守る。 オイルは とびあがるほど 苦くて 渋い。",
'zh-tw': "會從頭上的果實噴出油來保護自己不受敵人攻擊。 油的味道苦澀到會讓人跳起來。",
th: "ปล่อยน้ำมันออกมาจากผลบนหัวเพื่อปกป้องตัวเองจากศัตรู น้ำมันนั้นทั้งขมและฝาดจนน่าตกใจ",
id: "Smoliv melindungi diri dari musuh dengan mengeluarkan minyak dari buah di kepalanya. Rasa minyaknya sangat pahit dan sepat."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "えいようそ",
'zh-tw': "營養素",
th: "สารอาหาร",
id: "Nutrisi"
},
effect: {
ja: "自分のポケモン1匹のHPを「30」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [30]",
id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30."
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "しるをとばす",
'zh-tw': "噴汁",
th: "ฉีดพ่นน้ำ",
id: "Menyemprotkan Getah"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card