no idea if this is fixed in GT7 or not, but the nano/quark armor has actual armor points now
This commit is contained in:
parent
ffd7630d2d
commit
8b9da9c142
2 changed files with 45 additions and 0 deletions
44
kubejs/startup_scripts/gtceu/modifications.js
Normal file
44
kubejs/startup_scripts/gtceu/modifications.js
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
function registerGTCEuItemModifications(event) {
|
||||
|
||||
event.modify('gtceu:nanomuscle_helmet', item => {
|
||||
item.armorProtection = 5
|
||||
item.armorKnockbackResistance = 0.2
|
||||
})
|
||||
event.modify('gtceu:nanomuscle_chestplate', item => {
|
||||
item.armorProtection = 10
|
||||
item.armorKnockbackResistance = 0.2
|
||||
})
|
||||
event.modify('gtceu:nanomuscle_leggings', item => {
|
||||
item.armorProtection = 8
|
||||
item.armorKnockbackResistance = 0.2
|
||||
})
|
||||
event.modify('gtceu:nanomuscle_boots', item => {
|
||||
item.armorProtection = 4
|
||||
item.armorKnockbackResistance = 0.2
|
||||
})
|
||||
event.modify('gtceu:avanced_nanomuscle_chestplate', item => {
|
||||
item.armorProtection = 10
|
||||
item.armorKnockbackResistance = 0.2
|
||||
})
|
||||
|
||||
event.modify('gtceu:quarktech_helmet', item => {
|
||||
item.armorProtection = 7
|
||||
item.armorKnockbackResistance = 0.25
|
||||
})
|
||||
event.modify('gtceu:quarktech_chestplate', item => {
|
||||
item.armorProtection = 12
|
||||
item.armorKnockbackResistance = 0.25
|
||||
})
|
||||
event.modify('gtceu:quarktech_leggings', item => {
|
||||
item.armorProtection = 10
|
||||
item.armorKnockbackResistance = 0.25
|
||||
})
|
||||
event.modify('gtceu:quarktech_boots', item => {
|
||||
item.armorProtection = 6
|
||||
item.armorKnockbackResistance = 0.25
|
||||
})
|
||||
event.modify('gtceu:advanced_quarktech_chestplate', item => {
|
||||
item.armorProtection = 12
|
||||
item.armorKnockbackResistance = 0.25
|
||||
})
|
||||
}
|
||||
|
|
@ -22,6 +22,7 @@ ItemEvents.modification(event => {
|
|||
registerBeneathItemModifications(event)
|
||||
registerConstructionWandsItemModifications(event)
|
||||
registerCreateItemModifications(event)
|
||||
registerGTCEuItemModifications(event)
|
||||
registerMinecraftItemModifications(event)
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue