1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SV4a/203.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ミニーブ",
'zh-tw': "迷你芙",
id: "Smoliv"
},
illustrator: "otumami",
category: "Pokemon",
dexId: [928],
hp: 60,
types: ["Grass"],
description: {
ja: "頭の 実から オイルを 出して 敵から 身を 守る。 オイルは とびあがるほど 苦くて 渋い。",
'zh-tw': "會從頭上的果實噴出油來保護自己不受敵人攻擊。 油的味道苦澀到會讓人跳起來。",
id: "Smoliv melindungi diri dari musuh dengan mengeluarkan minyak dari buah di kepalanya. Minyaknya pahit dan sepat cukup untuk membuat tersentak."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "えいようそ",
'zh-tw': "營養素",
id: "Nutrisi"
},
effect: {
ja: "自分のポケモン1匹のHPを「30」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「30」HP。",
id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30."
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "しるをとばす",
'zh-tw': "噴汁",
id: "Menyemprotkan Getah"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card