diff options
author | alexichi <alexbankai96@gmail.com> | 2016-05-11 11:53:06 +0200 |
---|---|---|
committer | alexichi <alexbankai96@gmail.com> | 2016-05-11 11:53:06 +0200 |
commit | 2350d43a09495db18b22b86ffc815a84eeb35579 (patch) | |
tree | 8b69035a58e2900d66c174fa579bfafdc97a1548 | |
parent | 7f455adbac3c5f3c67c891249576e9045870edb6 (diff) | |
download | candybox-2350d43a09495db18b22b86ffc815a84eeb35579.tar.gz candybox-2350d43a09495db18b22b86ffc815a84eeb35579.tar.bz2 candybox-2350d43a09495db18b22b86ffc815a84eeb35579.tar.xz candybox-2350d43a09495db18b22b86ffc815a84eeb35579.zip |
add longevity feature to items
-rw-r--r-- | data/items.xml | 3 | ||||
-rw-r--r-- | inc/perso.inc | 21 |
2 files changed, 17 insertions, 7 deletions
diff --git a/data/items.xml b/data/items.xml index 4448b1c..e122826 100644 --- a/data/items.xml +++ b/data/items.xml @@ -7,6 +7,7 @@ <features> <power>+1</power> <limit>1</limit> + <longevity>2</longevity> </features> <icon>⚔</icon> <description>A sword that beginners need to use to improve their skills</description> @@ -17,6 +18,7 @@ <features> <power>+3</power> <limit>1</limit> + <longevity>2</longevity> </features> <icon>⚔</icon> <description>A sword which are often use buy skilled knight. The material is very good and the sword is very powerful</description> @@ -38,6 +40,7 @@ <features> <power>+2</power> <limit>3</limit> + <longevity>1</longevity> </features> <icon>🍶</icon> <description>If used, you have 20% more chance to hit your enemy during the battle</description> diff --git a/inc/perso.inc b/inc/perso.inc index 9293d3c..ecf2a99 100644 --- a/inc/perso.inc +++ b/inc/perso.inc @@ -1,5 +1,7 @@ <?php +require_once("Inventory.inc"); + function sendPerso() { if(empty($_SESSION["perso"])) initPerso(); @@ -27,6 +29,7 @@ function limitUse($item){ if(empty($item->feat["limit"])) return true; else if(empty($_SESSION["usedItem"])){ initUsedItem(); + $_SESSION["usedItem"][$n] = array(); $_SESSION["usedItem"][$n]["nbUse"]=1; return true; } @@ -39,13 +42,17 @@ function limitUse($item){ } } -function initUsedItem(){ - $_SESSION["usedItem"]["Strength Bottle"]["longevity"] = 0;//if longevity equals 2, it means that the item was used during 2 battles - $_SESSION["usedItem"]["Wooden Sword"]["longevity"] = 0; - $_SESSION["usedItem"]["Metal Sword"]["longevity"] = 0; - $_SESSION["usedItem"]["Strength Bottle"]["nbUse"] = 0; - $_SESSION["usedItem"]["Wooden Sword"]["nbUse"] = 0; - $_SESSION["usedItem"]["Metal Sword"]["nbUse"] = 0; +function initUsedItem(){ + $_SESSION["usedItem"]=array(); +} + +function resetUsedItem($item){ + $it = $_SESSION["usedItem"][$item]; + foreach($it as $k => $v){ + foreach($v as $val){ + $val = 0; + } + } } function reusable(){ |