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

60
data-asia/SV/SV6/030.ts Normal file
View File

@ -0,0 +1,60 @@
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