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:
63
data-asia/S/S12a/199.ts
Normal file
63
data-asia/S/S12a/199.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S12a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大奶罐",
|
||||
ja: "ミルタンク"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "由於能生產營養滿分的鮮奶,自古以來支持著人類與寶可夢的生活。",
|
||||
ja: "栄養満点の ミルクを 出すことから 古くから 人間と ポケモンの 暮らしを 支えてきた。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "奇跡之軀",
|
||||
ja: "ミラクルボディ"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢不會受到對手的「寶可夢【V】」招式的傷害。",
|
||||
ja: "このポケモンは、相手の「ポケモンV」からワザのダメージを受けない。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "踢散",
|
||||
ja: "けちらす"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。",
|
||||
ja: "相手のベンチポケモンの数×20ダメージ追加。"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
dexId: [241]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user