diff options
author | Runakai1 <48415331+Runakai1@users.noreply.github.com> | 2022-12-21 17:17:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 17:17:11 +0100 |
commit | 7f730979c65f163f5dcc7b1b69cca5dd4a43022a (patch) | |
tree | be7adc0fcb3446f68ce19e2b473170439e36fa78 /src/main/java | |
parent | 69957f9824fdffa64c370bbd3ec6234b773df62a (diff) | |
download | GT5-Unofficial-7f730979c65f163f5dcc7b1b69cca5dd4a43022a.tar.gz GT5-Unofficial-7f730979c65f163f5dcc7b1b69cca5dd4a43022a.tar.bz2 GT5-Unofficial-7f730979c65f163f5dcc7b1b69cca5dd4a43022a.zip |
change kevlar bee parents (#1575)
* change kevlar bee parents
* spotless
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java b/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java index 8782148adb..55089c37d1 100644 --- a/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java +++ b/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java @@ -1217,33 +1217,6 @@ public enum GT_BeeDefinition implements IBeeDefinition { IBeeMutationCustom tMutation = dis.registerMutation(FIRESTONE, COAL, 4); tMutation.requireResource(GameRegistry.findBlock("IC2", "blockITNT"), 0); }), - KEVLAR( - GT_BranchDefinition.IC2, - "kevlar", - false, - new Color(0x2d542f), - new Color(0xa2baa3), - beeSpecies -> { - beeSpecies.addSpecialty(GT_Bees.combs.getStackForType(CombType.KEVLAR), 0.075f); - beeSpecies.addSpecialty(MaterialsKevlar.Kevlar.getNuggets(1), 0.05f); - beeSpecies.setHumidity(DAMP); - beeSpecies.setTemperature(COLD); - beeSpecies.setHasEffect(); - beeSpecies.setJubilanceProvider(GT_JubilanceMegaApiary.instance); - }, - template -> { - AlleleHelper.instance.set(template, SPEED, Speed.SLOWEST); - AlleleHelper.instance.set(template, LIFESPAN, Lifespan.LONGEST); - AlleleHelper.instance.set(template, EFFECT, AlleleEffect.effectSnowing); - AlleleHelper.instance.set(template, TEMPERATURE_TOLERANCE, Tolerance.NONE); - AlleleHelper.instance.set(template, NOCTURNAL, true); - AlleleHelper.instance.set(template, FLOWER_PROVIDER, Flowers.SNOW); - AlleleHelper.instance.set(template, FLOWERING, Flowering.AVERAGE); - }, - dis -> { - IBeeMutationCustom tMutation = dis.registerMutation(OIL, ENERGY, 4); - tMutation.requireResource("frameGtKevlar"); - }), // Alloy REDALLOY( GT_BranchDefinition.GTALLOY, @@ -3483,6 +3456,33 @@ public enum GT_BeeDefinition implements IBeeDefinition { if (Loader.isModLoaded("avaritiaddons")) tMutation.requireResource(GameRegistry.findBlock("avaritiaddons", "InfinityChest"), 0); }), + KEVLAR( + GT_BranchDefinition.IC2, + "kevlar", + false, + new Color(0x2d542f), + new Color(0xa2baa3), + beeSpecies -> { + beeSpecies.addSpecialty(GT_Bees.combs.getStackForType(CombType.KEVLAR), 0.075f); + beeSpecies.addSpecialty(MaterialsKevlar.Kevlar.getNuggets(1), 0.01f); + beeSpecies.setHumidity(DAMP); + beeSpecies.setTemperature(COLD); + beeSpecies.setHasEffect(); + beeSpecies.setJubilanceProvider(GT_JubilanceMegaApiary.instance); + }, + template -> { + AlleleHelper.instance.set(template, SPEED, Speed.SLOWEST); + AlleleHelper.instance.set(template, LIFESPAN, Lifespan.LONGEST); + AlleleHelper.instance.set(template, EFFECT, AlleleEffect.effectSnowing); + AlleleHelper.instance.set(template, TEMPERATURE_TOLERANCE, Tolerance.NONE); + AlleleHelper.instance.set(template, NOCTURNAL, true); + AlleleHelper.instance.set(template, FLOWER_PROVIDER, Flowers.SNOW); + AlleleHelper.instance.set(template, FLOWERING, Flowering.AVERAGE); + }, + dis -> { + IBeeMutationCustom tMutation = dis.registerMutation(OIL, INFINITY, 4); + tMutation.requireResource("frameGtKevlar"); + }), // Noble Gas Line // Helium bee, Humidity: normal, Temperature: Icy, Parents: Space & Mars, Mutationrate: 10%, Combrate: 50% |