1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

63 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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