1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 04:19:54 +00:00

68 lines
1.7 KiB
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>超夢ex",
'zh-cn': "<火箭隊的>超夢ex",
ja: "ロケット団のミュウツーex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 280,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "力量抑制者",
'zh-cn': "力量抑制者",
ja: "パワーセーバー"
},
effect: {
'zh-tw': "只有在自己的場上的「火箭隊的寶可夢」數量為4隻以上時這隻寶可夢才可使用招式。",
'zh-cn': "只有在自己的場上的「火箭隊的寶可夢」數量為4隻以上時這隻寶可夢才可使用招式。",
ja: "自分の場の「ロケット団のポケモン」が4匹以上のときにしか、このポケモンはワザが使えない。"
}
}],
attacks: [{
name: {
'zh-tw': "擦除球",
'zh-cn': "擦除球",
ja: "イレイザーボール"
},
effect: {
'zh-tw': "若希望將最多2張自己的備戰寶可夢身上附加的能量卡丟棄增加其張數×60點傷害。",
'zh-cn': "若希望將最多2張自己的備戰寶可夢身上附加的能量卡丟棄增加其張數×60點傷害。",
ja: "のぞむなら、自分のベンチポケモンについているエネルギーを2枚までトラッシュし、その枚数×60ダメージ追加。"
},
damage: "160",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 3,
regulationMark: "I",
rarity: "Double rare"
}
export default card