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

61 lines
1.6 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: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "高傲指令",
'zh-cn': "高傲指令",
ja: "こうまんしれい"
},
effect: {
'zh-tw': "將對手的牌庫上方10張卡翻到正面。若希望選擇1個其中的寶可夢持有的招式作為這個招式使用。將翻到正面的卡放回牌庫並重洗。",
'zh-cn': "將對手的牌庫上方10張卡翻到正面。若希望選擇1個其中的寶可夢持有的招式作為這個招式使用。將翻到正面的卡放回牌庫並重洗。",
ja: "相手の山札を上から10枚オモテにする。のぞむなら、その中にあるポケモンが持つワザを1つ選び、このワザとして使う。オモテにしたカードは山札にもどして切る。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "殘酷斬",
'zh-cn': "殘酷斬",
ja: "クルーエルスラッシュ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
'zh-cn': "將對手的戰鬥寶可夢【混亂】。",
ja: "相手のバトルポケモンをこんらんにする。"
},
damage: 140,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
rarity: "Double rare"
}
export default card