1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

27 lines
832 B
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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "ペパーのサンドウィッチ",
'zh-tw': "派帕的三明治",
'zh-cn': "派帕的三明治"
},
illustrator: "AYUMI ODASHIMA",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分のバトルポケモンのHPを「30」回復する。そのポケモンが「ペパーのポケモン」なら、回復するHPは「100」になる。",
'zh-tw': "將自己的戰鬥寶可夢恢復「30」HP。若那隻寶可夢為「派帕的寶可夢」則恢復的HP改為「100」。",
'zh-cn': "將自己的戰鬥寶可夢恢復「30」HP。若那隻寶可夢為「派帕的寶可夢」則恢復的HP改為「100」。"
},
trainerType: "Item",
regulationMark: "I"
}
export default card