mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
27 lines
882 B
TypeScript
27 lines
882 B
TypeScript
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 |