1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SV6/052.ts Normal file
View 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