1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

27 lines
845 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "リリバのみ",
'zh-tw': "霹霹果",
'zh-cn': "霹霹果"
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。",
'zh-tw': "附有這張卡的寶可夢受到對手的【鋼】寶可夢招式的傷害時,那個傷害「-60」點將這張卡丟棄。",
'zh-cn': "附有這張卡的寶可夢受到對手的【鋼】寶可夢招式的傷害時,那個傷害「-60」點將這張卡丟棄。"
},
trainerType: "Tool",
regulationMark: "H"
}
export default card