Fixing missing SHELBI starter definition. Fixing merchant not having access to right-click preview
This commit is contained in:
@@ -195,7 +195,8 @@ var packBlueprints = {
|
||||
"Random Common Foil": "/gemp-lotr/images/boosters/random_foil.png",
|
||||
"Random Uncommon Foil": "/gemp-lotr/images/boosters/random_foil.png",
|
||||
"Random Rare Foil": "/gemp-lotr/images/boosters/random_foil.png",
|
||||
"Random Ultra Rare Foil": "/gemp-lotr/images/boosters/random_foil.png"
|
||||
"Random Ultra Rare Foil": "/gemp-lotr/images/boosters/random_foil.png",
|
||||
"(S)SHELBI - Starter": "/gemp-lotr/images/boosters/starter_selection.png"
|
||||
};
|
||||
|
||||
var Card = Class.extend({
|
||||
|
||||
@@ -102,6 +102,15 @@ var GempLotrMerchantUI = Class.extend({
|
||||
function (event) {
|
||||
return that.clickCardFunction(event);
|
||||
});
|
||||
$("body")[0].addEventListener("contextmenu",
|
||||
function (event) {
|
||||
if(!that.clickCardFunction(event))
|
||||
{
|
||||
event.preventDefault();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
$("body").mousedown(
|
||||
function (event) {
|
||||
return that.dragStartCardFunction(event);
|
||||
|
||||
@@ -387,4 +387,16 @@
|
||||
1xRoS - Evil Man Starter
|
||||
]
|
||||
}
|
||||
|
||||
{
|
||||
name: (S)SHELBI - Starter
|
||||
type: selection
|
||||
selectionCount: 1
|
||||
items: [
|
||||
1xSHELBI - Aragorn Starter
|
||||
1xSHELBI - Gandalf Starter
|
||||
1xSHELBI - Gimli Starter
|
||||
1xSHELBI - Treebeard Starter
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user