Skip to content

Commit

Permalink
Merge pull request #223 from Kherae/master
Browse files Browse the repository at this point in the history
stat sheet update
  • Loading branch information
sayterdarkwynd authored May 1, 2020
2 parents bbe56fd + 6a4b71b commit 2bdb08a
Show file tree
Hide file tree
Showing 31 changed files with 697 additions and 52 deletions.
Binary file added interface/scripted/fu_multiupgrade/body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/bodyblue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/bodygreen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/cardmanip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/cards.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/durability.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/scripted/fu_multiupgrade/footer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
145 changes: 145 additions & 0 deletions interface/scripted/fu_multiupgrade/fu_multiupgrade.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"gui": {
"background": {
"zlevel": 0,
"type": "background",
"fileHeader": "/interface/scripted/fu_multiupgrade/header.png",
"fileBody": "/interface/scripted/fu_multiupgrade/bodyblue.png",
"fileFooter": "/interface/scripted/fu_multiupgrade/footer.png"
},

"windowtitle": {
"type": "title",
"title": " Upgrade Table",
"subtitle": " Upgrades various equipment",
"icon": {
"type": "image",
"file": "/interface/scripted/mechassembly/upgradeitemslot.png"
}
},

"itemScrollArea": {
"type": "scrollArea",
"rect": [5, 99, 174, 215],
"children": {
"itemList": {
"type": "list",
"callback": "itemSelected",
"schema": {
"selectedBG": "/interface/scripted/weaponupgrade/listitemselected.png",
"unselectedBG": "/interface/scripted/weaponupgrade/listitem.png",
"spacing": [0, 1],
"memberSize": [156, 20],
"listTemplate": {
"background": {
"type": "image",
"file": "/interface/scripted/weaponupgrade/listitem.png",
"position": [2, 0],
"zlevel": -1
},
"itemName": {
"type": "label",
"position": [25, 5],
"hAnchor": "left",
"wrapWidth": 116,
"value": "Replace Me"
},
"itemIcon": {
"type": "itemslot",
"position": [3, 1],
"callback": "null"
},
"unavailableoverlay": {
"type": "image",
"file": "/interface/scripted/weaponupgrade/unavailableoverlay.png",
"position": [2, 0],
"zlevel": 1
}
}
}
}
}
},

"essenceCostDescription": {
"type": "label",
"position": [93, 65],
"hAnchor": "mid",
"vAnchor": "bottom",
"color": "cyan",
"value": "REQUIRED MODULES"
},
"upgradeIcon": {
"type": "image",
"zlevel": 1,
"file": "/interface/scripted/fu_multiupgrade/cardupgrade.png",
"position": [25, 48],
"visible": false,
"hAnchor": "mid",
"vAnchor": "bottom",
"mouseTransparent": true
},
"manipIcon": {
"type": "image",
"zlevel": 1,
"file": "/interface/scripted/fu_multiupgrade/cardmanip.png",
"position": [25, 48],
"visible": false,
"hAnchor": "mid",
"vAnchor": "bottom",
"mouseTransparent": true
},
"essenceCost": {
"type": "label",
"position": [93, 56],
"hAnchor": "mid",
"vAnchor": "bottom",
"value": "0 / --"
},

"btnUpgrade": {
"type": "button",
"position": [92, 30],
"base": "/interface/button.png",
"hover": "/interface/buttonhover.png",
"disabledImage": "/interface/buttongrayed.png",
"caption": "Upgrade",
"callback": "doUpgrade"
},
"cancel": {
"type": "button",
"position": [33, 30],
"base": "/interface/button.png",
"hover": "/interface/buttonhover.png",
"caption": "Cancel",
"callback": "close"
},
"close": {
"type": "button",
"base": "/interface/x.png",
"hover": "/interface/xhover.png",
"pressed": "/interface/xpress.png",
"pressedOffset": [0, 0],
"position": [161, 242]
},

"emptyLabel": {
"type": "label",
"position": [90, 150],
"hAnchor": "mid",
"value": "You don't have any weapons to upgrade!",
"wrapWidth": 125,
"color": [185, 181, 178]
}
},

"scriptWidgetCallbacks": [
"itemSelected",
"doUpgrade"
],

"scripts": ["/interface/scripted/fu_multiupgrade/fu_multiupgrade.lua"],
"scriptDelta": 30,

"upgradeLevel": 10
}
Loading

0 comments on commit 2bdb08a

Please sign in to comment.