1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

60 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ミロカロス",
'zh-tw': "美納斯"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Taira Akitsu",
dexId: [350],
hp: 120,
types: ["Water"],
description: {
ja: "澄んだ 湖の 底に 棲む。 戦争が 起こるとき 現れ 人々の 心を いやす。",
'zh-tw': "棲息在清澈的湖底。 在發生戰爭時出現, 治癒人們的心。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "なぎのきょうち",
'zh-tw': "平穩境地"
},
effect: {
ja: "このポケモンがいるかぎり、相手の場のポケモンと、そのポケモンについているすべてのカードは、手札にもどせない。",
'zh-tw': "只要這隻寶可夢在場上,對手的場上寶可夢與那隻寶可夢身上附加的卡,全部無法放回手牌。"
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "ハイドロスプラッシュ",
'zh-tw': "水炮濺射"
},
damage: 100
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card