mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/SV/SV6/052.ts
Normal file
51
data-asia/SV/SV6/052.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ペロリーム",
|
||||
'zh-tw': "胖甜妮"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Uncommon",
|
||||
illustrator: "mingo",
|
||||
dexId: [685],
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "体臭から 心と 体の 調子を 嗅ぎとる。 医療への 応用が 期待されている。",
|
||||
'zh-tw': "能從人們身上的氣味裡 嗅出他們的身心狀態。 在醫療領域的實際應用備受矚目。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ペロペロリン",
|
||||
'zh-tw': "甜甜你"
|
||||
},
|
||||
|
||||
damage: "90×",
|
||||
|
||||
effect: {
|
||||
ja: "コインを2回投げ、オモテの数×90ダメージ。すべてウラなら、相手のバトルポケモンをこんらんにする。",
|
||||
'zh-tw': "擲2次硬幣,造成正面出現的次數×90點傷害。若全部為反面,則將對手的戰鬥寶可夢【混亂】。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user