1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

27 lines
882 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: "Taira Akitsu",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "次の相手の番、自分のポケモン全員が、相手のポケモンから受けるワザのダメージは「-30」される。新しく場に出したポケモンもふくむ。",
'zh-tw': "在下個對手的回合,自己的所有寶可夢受到對手的寶可夢招式的傷害「-30」點。包含新上場的寶可夢。",
'zh-cn': "在下個對手的回合,自己的所有寶可夢受到對手的寶可夢招式的傷害「-30」點。包含新上場的寶可夢。"
},
trainerType: "Supporter",
regulationMark: "H"
}
export default card