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

61
data-asia/S/S9/065.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "花岩怪",
ja: "ミカルゲ"
},
illustrator: "Uta",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "108個靈魂聚集在一起成為了寶可夢,但其中 似乎混進了壞心眼的靈魂。",
ja: "108個の 魂が 集まり ポケモンになったが 性悪の 魂が 混じってしまったらしい。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "牢記恐懼",
ja: "きょうふをきざむ"
},
effect: {
'zh-tw': "在下個自己的回合結束前,受到這個招式的寶可夢弱點改爲【惡】屬性。[弱點以「×2」計算傷害。]",
ja: "次の自分の番の終わりまで、このワザを受けたポケモンの弱点はタイプになる。弱点は「×2」でダメージ計算をする。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "詛咒水滴",
ja: "のろいのしずく"
},
effect: {
'zh-tw': "將2個傷害指示物以任意方式放置於對手的寶可夢身上。",
ja: "ダメカン2個を、相手のポケモンに好きなようにのせる。"
},
cost: ["Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [442]
}
export default card