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

64
data-asia/S/S9a/058.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大奶罐",
ja: "ミルタンク"
},
illustrator: "saino misaki",
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",
rarity: "Rare",
dexId: [241]
}
export default card