diff --git a/src/app/items.coffee b/src/app/items.coffee index 5990a24412..a539781df7 100644 --- a/src/app/items.coffee +++ b/src/app/items.coffee @@ -56,6 +56,10 @@ items = module.exports.items = {index: 15, text: 'Zombie Wolf', name: 'wolfZombie', icon: 'Pet-Wolf-Zombie.png', value: 3} {index: 16, text: 'Wolf', name: 'wolfBorder', icon: 'wolf_border.png', value: 3} ] + meats: [ + {index: 0, name: 'Red Meat', text: 'Turns your animal into a mean red meat eater.'} + {index: 1, name: 'Blue Meat', text: 'Turns your animal into Neo.' } + ] # add "type" to each item, so we can reference that as "weapon" or "armor" in the html _.each ['weapon', 'armor', 'head', 'shield'], (key) -> diff --git a/views/app/avatar.html b/views/app/avatar.html index 871f59a5d6..87c08073ff 100644 --- a/views/app/avatar.html +++ b/views/app/avatar.html @@ -181,6 +181,11 @@
- testing + {#if not(_user.items.meats)} +

You don't have any meat yet.

+ {/if} + {#each _user.items.meats as :meat} + {:meat} + {/each}
diff --git a/views/app/pets.html b/views/app/pets.html index fb5c1b1a39..3f5a41e01b 100644 --- a/views/app/pets.html +++ b/views/app/pets.html @@ -1,5 +1,8 @@ -

Highly discouraged because red tasks provide good incentive to improve (read more). However, this becomes necessary after long bouts of bad habits.

+

You've unlocked the drop system.

+ <@footer> + +
\ No newline at end of file