1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/055.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: "Nisota Niso",
category: "Pokemon",
hp: 230,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "雷吉充能",
'zh-cn': "雷吉充能",
ja: "レジチャージ"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡附於這隻寶可夢身上。",
'zh-cn': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡附於這隻寶可夢身上。",
ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、このポケモンにつける。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "巨型岩石",
'zh-cn': "巨型岩石",
ja: "ジャイアントロック"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為【2階進化】寶可夢則增加140點傷害。",
'zh-cn': "若對手的戰鬥寶可夢為【2階進化】寶可夢則增加140點傷害。",
ja: "相手のバトルポケモンが2進化ポケモンなら、140ダメージ追加。"
},
damage: "140",
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I",
rarity: "Double rare"
}
export default card