aboutsummaryrefslogtreecommitdiffstats
path: root/js/shop.js
diff options
context:
space:
mode:
authoralexichi <alexbankai96@gmail.com>2016-05-07 12:08:36 +0200
committeralexichi <alexbankai96@gmail.com>2016-05-07 12:08:36 +0200
commit79cfbb29042fd60dfbc76a6810f75cce21d3ffe0 (patch)
treeed1425c2bf94fd7e2b068bfe64134e0689f83285 /js/shop.js
parentee02581b7fabd087fc4056bda739c88656fbca14 (diff)
downloadcandybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.gz
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.bz2
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.xz
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.zip
add the use of the life bottle
Diffstat (limited to 'js/shop.js')
-rw-r--r--js/shop.js18
1 files changed, 17 insertions, 1 deletions
diff --git a/js/shop.js b/js/shop.js
index bda3885..efb347a 100644
--- a/js/shop.js
+++ b/js/shop.js
@@ -37,7 +37,7 @@ function addItem(ret) {
var itemtag = document.querySelector("[data-name=\""+ret[0].name+"\"]");
if(!itemtag){ //si c'est la première itération de l'objet
itemhtml += "<li>";
- itemhtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"useItem('" + ret[0].name + "')\"><span class=\"item-icon\">" + ret[0].icon + "</span><br />" + ret[0].name + "(<span data-name=\""+ ret[0].name + "\">"+ret[1]+"</span>)</button>";
+ itemhtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"useItem('" + ret[0].name + "')\"><span class=\"item-icon\">" + ret[0].icon + "</span><br />" + ret[0].name + "(<span id=\"nbItem\" data-name=\""+ ret[0].name + "\">"+ret[1]+"</span>)</button>";
itemhtml += "</li>";
}
else{ // si c'est une n-ième itération
@@ -68,6 +68,22 @@ function buyItem(name) {
function useItem(name) {
sendRequest("craftmine.php", "op=useItem&item="+name, function(ret) {
+ if(parseInt(ret[1])>=0){
+ var nb = parseInt(document.getElementById("nbItem").innerHTML);
+ if(nb>0){
+ nb--;
+ switch(ret[0].name){
+ case "Life Bottle": data.hp = parseInt(data.hp) + 3; break;
+ case "Strength Bottle" : break; // to do
+ case "Wooden Sword" : break; //to do
+ case "Metal Sword" : break; //to do
+ }
+ }
+ document.getElementById("nbItem").innerHTML = nb;
+ sendRequest("craftmine.php", "op=updatePerso&hp="+data.hp+"&xp="+data.xp+"&lv="+data.level, function(){
+ displayPerso(data.hp,data.xp,data.level);
+ });
+ }
});
}