fix commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#modloaded extrabotany
|
||||
#loader mixin
|
||||
|
||||
import native.com.meteor.extrabotany.common.item.relic.ItemExcaliber;
|
||||
|
||||
#mixin {value: "com.meteor.extrabotany.common.item.relic.ItemExcaliber"}
|
||||
zenClass MixinItemExcaliber {
|
||||
#mixin Static
|
||||
#mixin ModifyConstant
|
||||
#{
|
||||
# method: "updateBurst",
|
||||
# constant: {floatValue: 3F}
|
||||
#}
|
||||
function buffExcaliber(original as float) as float {
|
||||
return 30.0F;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
#modloaded extrabotany
|
||||
#loader mixin
|
||||
|
||||
import native.com.meteor.extrabotany.common.item.relic.ItemSpearSubspace;
|
||||
|
||||
#mixin {value: "com.meteor.extrabotany.common.item.relic.ItemSpearSubspace"}
|
||||
zenClass MixinItemSpearSubspace {
|
||||
#mixin Static
|
||||
#mixin ModifyConstant
|
||||
#{
|
||||
# method: "getAttributeModifiers",
|
||||
# constant: {doubleValue: 8.0}
|
||||
#}
|
||||
function buffSubspaceSpearMelee(original as double) as double {
|
||||
return 1500.0d;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
#modloaded extrabotany
|
||||
#loader mixin
|
||||
|
||||
import native.com.meteor.extrabotany.common.item.relic.ItemFirstFractal;
|
||||
|
||||
#mixin {value: "com.meteor.extrabotany.common.item.relic.ItemFirstFractal"}
|
||||
zenClass MixinItemFirstFractal {
|
||||
#mixin Definition
|
||||
#{
|
||||
# id: "addToolMaterial", method: "Lnet/minecraftforge/common/util/EnumHelper;addToolMaterial(Ljava/lang/String;IIFFI)Lnet/minecraft/item/Item$ToolMaterial;"
|
||||
#}
|
||||
#mixin Expression
|
||||
#{
|
||||
# value: "addToolMaterial('B_FIRSTFRACTAL', ?, ?, ?, @(?), ?)"
|
||||
#}
|
||||
#mixin Static
|
||||
#mixin ModifyExpressionValue
|
||||
#{
|
||||
# method: "<clinit>",
|
||||
# at: {value: "MIXINEXTRAS:EXPRESSION"}
|
||||
#}
|
||||
function buffExcaliber(original as float) as float {
|
||||
return 500.0F;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user