1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

61
data-asia/SV/SV10/079.ts Normal file
View File

@ -0,0 +1,61 @@
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