1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

68
data-asia/SV/SV10/039.ts Normal file
View File

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