Skip to content
Snippets Groups Projects
Commit 539668f0 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix

parent 5078c774
No related branches found
No related tags found
1 merge request!7504Wardrobe shopping to DOM
App.UI.WardrobeShopping = function() { App.UI.WardrobeShopping = function() {
const el = document.createElement("p"); const el = document.createElement("p");
let p;
el.id = "wardrobe-shopping"; el.id = "wardrobe-shopping";
App.UI.DOM.appendNewElement("H1", el, `Slave Wardrobe`); App.UI.DOM.appendNewElement("H1", el, `Slave Wardrobe`);
...@@ -49,7 +50,10 @@ App.UI.WardrobeShopping = function() { ...@@ -49,7 +50,10 @@ App.UI.WardrobeShopping = function() {
App.UI.DOM.appendNewElement("H2", el, `Accessories`); App.UI.DOM.appendNewElement("H2", el, `Accessories`);
el.append(accessoryBlock()); p = document.createElement("p");
p.id = "accessory-block";
p.append(accessoryBlock());
el.append(p);
return el; return el;
...@@ -81,6 +85,12 @@ App.UI.WardrobeShopping = function() { ...@@ -81,6 +85,12 @@ App.UI.WardrobeShopping = function() {
function createCell(clothing, oldOutfit = "") { function createCell(clothing, oldOutfit = "") {
const el = document.createElement("div"); const el = document.createElement("div");
el.classList.add("wardrobe-shopping-cell"); el.classList.add("wardrobe-shopping-cell");
el.onclick = () => {
// Randomize devotion and trust a bit, so the model moves their arms and "poses" for the player.
model.devotion = random(-10, 70);
model.trust = random(30, 100);
jQuery(`#${clothing}`).empty().append(createCell(clothing, model.clothes));
};
/** @type {wardrobeItem} */ /** @type {wardrobeItem} */
const clothingObj = App.Data.WardrobeShopping.Clothing[category][clothing]; const clothingObj = App.Data.WardrobeShopping.Clothing[category][clothing];
const cost = Math.trunc(clothingObj.cost * V.upgradeMultiplierTrade); const cost = Math.trunc(clothingObj.cost * V.upgradeMultiplierTrade);
...@@ -107,12 +117,6 @@ App.UI.WardrobeShopping = function() { ...@@ -107,12 +117,6 @@ App.UI.WardrobeShopping = function() {
model[prop] = "none"; model[prop] = "none";
} }
} }
el.onclick = () => {
// Randomize devotion and trust a bit, so the model moves their arms and "poses" for the player.
model.devotion = random(-10, 70);
model.trust = random(30, 100);
jQuery(`#${clothing}`).empty().append(createCell(clothing, model.clothes));
};
} }
if (!isItemAccessible.entry(model.clothes, "clothing")) { if (!isItemAccessible.entry(model.clothes, "clothing")) {
if (cost < V.cash) { if (cost < V.cash) {
...@@ -124,7 +128,6 @@ App.UI.WardrobeShopping = function() { ...@@ -124,7 +128,6 @@ App.UI.WardrobeShopping = function() {
() => { () => {
cashX(forceNeg(cost), "capEx"); cashX(forceNeg(cost), "capEx");
V.boughtItem.clothing[clothing] = 1; V.boughtItem.clothing[clothing] = 1;
refresh();
} }
) )
); );
...@@ -177,7 +180,7 @@ App.UI.WardrobeShopping = function() { ...@@ -177,7 +180,7 @@ App.UI.WardrobeShopping = function() {
() => { () => {
cashX(forceNeg(cost), "capEx"); cashX(forceNeg(cost), "capEx");
_.set(V.boughtItem, name, 1); _.set(V.boughtItem, name, 1);
refresh(); jQuery(`#accessory-block`).empty().append(accessoryBlock());
} }
) )
); );
...@@ -202,8 +205,4 @@ App.UI.WardrobeShopping = function() { ...@@ -202,8 +205,4 @@ App.UI.WardrobeShopping = function() {
return line; return line;
} }
} }
function refresh() {
jQuery(`#wardrobe-shopping`).empty().append(App.UI.WardrobeShopping());
}
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment