300-tier: support buying 300 tier (see http://goo.gl/qDCmX6) (FYI @danielthebard @SabreCat)
43
dist/habitrpg-shared.js
vendored
|
|
@ -10216,6 +10216,29 @@ try {
|
|||
var _ref;
|
||||
return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 4;
|
||||
})
|
||||
},
|
||||
2: {
|
||||
text: "Stephen Weber's Shaft of the Dragon",
|
||||
notes: "Stephen Weber's Shaft of the Dragon",
|
||||
str: 50,
|
||||
per: 50,
|
||||
value: 200,
|
||||
canOwn: (function(u) {
|
||||
var _ref;
|
||||
return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300;
|
||||
})
|
||||
},
|
||||
3: {
|
||||
text: "Mustaine's Milestone Mashing Morning Star",
|
||||
notes: "Mustaine's Milestone Mashing Morning Star",
|
||||
str: 50,
|
||||
int: 50,
|
||||
con: 50,
|
||||
value: 200,
|
||||
canOwn: (function(u) {
|
||||
var _ref;
|
||||
return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300;
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10392,6 +10415,17 @@ try {
|
|||
var _ref;
|
||||
return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 2;
|
||||
})
|
||||
},
|
||||
2: {
|
||||
text: "Tarutaru's Noble's Tunic",
|
||||
notes: 'Makes you extra fluffy. Adds "Refresh" effect; Cure potency +n%.',
|
||||
int: 50,
|
||||
con: 50,
|
||||
value: 200,
|
||||
canOwn: (function(u) {
|
||||
var _ref;
|
||||
return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300;
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10568,6 +10602,15 @@ try {
|
|||
var _ref;
|
||||
return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 3;
|
||||
})
|
||||
},
|
||||
2: {
|
||||
text: "??? 300-tier Helm",
|
||||
notes: '',
|
||||
value: 200,
|
||||
canOwn: (function(u) {
|
||||
var _ref;
|
||||
return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300;
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
2
dist/spritesheets.css
vendored
924
dist/spritesmith.css
vendored
BIN
dist/spritesmith.png
vendored
|
Before Width: | Height: | Size: 275 KiB After Width: | Height: | Size: 276 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
BIN
img/sprites/spritesmith/armor/slim_armor_special_2.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
|
@ -46,6 +46,8 @@ gear =
|
|||
special:
|
||||
0: text: "Dark Souls Blade", notes:'Increases experience gain by 21%.', str: 21, value:150, canOwn: ((u)-> +u.backer?.tier >= 70)
|
||||
1: text: "Crystal Blade", notes:'Increases experience gain by 24%.', str: 24, value:170, canOwn: ((u)-> +u.contributor?.level >= 4)
|
||||
2: text: "Stephen Weber's Shaft of the Dragon", notes:"Stephen Weber's Shaft of the Dragon", str: 50, per: 50, value:200, canOwn: ((u)-> +u.backer?.tier >= 300)
|
||||
3: text: "Mustaine's Milestone Mashing Morning Star", notes:"Mustaine's Milestone Mashing Morning Star", str: 50, int: 50, con: 50, value:200, canOwn: ((u)-> +u.backer?.tier >= 300)
|
||||
|
||||
armor:
|
||||
warrior:
|
||||
|
|
@ -79,6 +81,7 @@ gear =
|
|||
special:
|
||||
0: text: "Shade Armor", notes:'Decreases Health loss by 12%.', defense: 12, value:150, canOwn: ((u)-> +u.backer?.tier >= 45)
|
||||
1: text: "Crystal Armor", notes:'Decreases Health loss by 14%.', defense: 14, value:170, canOwn: ((u)-> +u.contributor?.level >= 2)
|
||||
2: text: "Tarutaru's Noble's Tunic", notes:'Makes you extra fluffy. Adds "Refresh" effect; Cure potency +n%.', int: 50, con: 50, value:200, canOwn: ((u)-> +u.backer?.tier >= 300)
|
||||
|
||||
head:
|
||||
warrior:
|
||||
|
|
@ -112,6 +115,7 @@ gear =
|
|||
special:
|
||||
0: text: "Shade Helm", notes:'Decreases Health loss by 7%.', defense: 7, value:100, canOwn: ((u)-> +u.backer?.tier >= 45)
|
||||
1: text: "Crystal Helm", notes:'Decreases Health loss by 8%.', defense: 8, value:120, canOwn: ((u)-> +u.contributor?.level >= 3)
|
||||
2: text: "??? 300-tier Helm", notes:'', value:200, canOwn: ((u)-> +u.backer?.tier >= 300)
|
||||
|
||||
shield:
|
||||
warrior:
|
||||
|
|
|
|||