2
0
Fork 0
main
KeyLime17 12 months ago
parent 8d30eb8168
commit 7efd097de5

@ -0,0 +1,29 @@
package com.zivilon.cinder_loe;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.world.World;
public class CinderDrinkRecipe
implements IRecipe {
@Override
public boolean matches(InventoryCrafting inv, World world) {
return false;
}
@Override
public ItemStack getCraftingResult(InventoryCrafting p_77572_1_) {
return null;
}
@Override
public int getRecipeSize() {
return 0;
}
@Override
public ItemStack getRecipeOutput() {
return null;
}
}

@ -79,6 +79,7 @@ public class SpeechBankModifier {
speechBanks.put("arnorSoldier/soldier/hostile", loadSpeechLines("arnorSoldier/soldier/hostile")); speechBanks.put("arnorSoldier/soldier/hostile", loadSpeechLines("arnorSoldier/soldier/hostile"));
speechBanks.put("corruptSpeak/all/neutral", loadSpeechLines("corruptSpeak/all/neutral")); speechBanks.put("corruptSpeak/all/neutral", loadSpeechLines("corruptSpeak/all/neutral"));
speechBanks.put("corruptSpeak/all/hostile", loadSpeechLines("corruptSpeak/all/hostile")); speechBanks.put("corruptSpeak/all/hostile", loadSpeechLines("corruptSpeak/all/hostile"));
speechBanks.put("corruptSpeak/all/skeleton", loadSpeechLines("corruptSpeak/all/skeleton"));
return speechBanks; return speechBanks;
} }

@ -41,7 +41,7 @@ public class CorruptSkeleton extends CorruptMan {
@Override @Override
public LOTRFaction getFaction() { public LOTRFaction getFaction() {
return LOTRFaction.valueOf(CinderLoE_Config.corrupt_faction); return LOTRFaction.UTUMNO;
} }
@Override @Override

@ -23,7 +23,6 @@ public class CorruptSkeletonArcher extends CorruptSkeleton {
public CorruptSkeletonArcher(World world) { public CorruptSkeletonArcher(World world) {
super(world); super(world);
((EntityLiving)this).tasks.addTask(0, (EntityAIBase)new LOTREntityAIRangedAttack(this, 1.4, 30, 50, 16.0f)); ((EntityLiving)this).tasks.addTask(0, (EntityAIBase)new LOTREntityAIRangedAttack(this, 1.4, 30, 50, 16.0f));
this.tasks.addTask(10, (EntityAIBase)new EntityAIAvoidEntity(this, EntityPlayerMP.class, 12.0f, 1.0, 1.5));
} }
@ -58,9 +57,10 @@ public class CorruptSkeletonArcher extends CorruptSkeleton {
} }
} }
@Override @Override
public LOTRFaction getFaction() { public LOTRFaction getFaction() {
return LOTRFaction.valueOf(CinderLoE_Config.corrupt_faction); return LOTRFaction.UTUMNO;
} }
@Override @Override

@ -1,4 +1,4 @@
package com.zivilon.cinder_loe.mixins.overrides; package com.zivilon.cinder_loe.mixins;
import com.zivilon.cinder_loe.CinderLoE; import com.zivilon.cinder_loe.CinderLoE;
import lotr.common.LOTRMod; import lotr.common.LOTRMod;

@ -1,4 +1,4 @@
package com.zivilon.cinder_loe.mixins.overrides; package com.zivilon.cinder_loe.mixins;
import com.zivilon.cinder_loe.CinderLoE; import com.zivilon.cinder_loe.CinderLoE;
import lotr.common.LOTRMod; import lotr.common.LOTRMod;

@ -1,4 +1,4 @@
package com.zivilon.cinder_loe.mixins.overrides; package com.zivilon.cinder_loe.mixins;
import com.zivilon.cinder_loe.CinderLoE; import com.zivilon.cinder_loe.CinderLoE;
import lotr.common.LOTRMod; import lotr.common.LOTRMod;

@ -2,10 +2,7 @@ package com.zivilon.cinder_loe;
import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.GameRegistry;
import lotr.common.LOTRMod; import lotr.common.LOTRMod;
import lotr.common.recipe.LOTRBrewingRecipes; import lotr.common.recipe.*;
import lotr.common.recipe.LOTRMillstoneRecipes;
import lotr.common.recipe.LOTRRecipePoisonWeapon;
import lotr.common.recipe.LOTRRecipes;
import com.zivilon.cinder_loe.CinderLoE; import com.zivilon.cinder_loe.CinderLoE;
import com.zivilon.cinder_loe.mixins.MixinLOTRBrewingRecipes; import com.zivilon.cinder_loe.mixins.MixinLOTRBrewingRecipes;
@ -150,10 +147,10 @@ public class recipes {
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.fruitsalad), Items.bowl, "fruit1", "fruit2", "fruit3")); GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.fruitsalad), Items.bowl, "fruit1", "fruit2", "fruit3"));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.pasta, 4), new ItemStack(LOTRMod.rollingPin, 1, OreDictionary.WILDCARD_VALUE), CinderLoE.dough, CinderLoE.dough)); GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.pasta, 4), new ItemStack(LOTRMod.rollingPin, 1, OreDictionary.WILDCARD_VALUE), CinderLoE.dough, CinderLoE.dough));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.halva), Items.sugar, CinderLoE.dough, CinderLoE.spice, LOTRMod.almond)); GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.halva), Items.sugar, CinderLoE.dough, CinderLoE.spice, LOTRMod.almond));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.doner_kebab), CinderLoE.dough, "vegetable2", CinderLoE.spice, LOTRMod.kebab));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.chocolatebar, 2), LOTRMod.mugChocolate)); GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.chocolatebar, 2), LOTRMod.mugChocolate));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.pelmen), Items.wheat, "meat", LOTRMod.salt)); GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(CinderLoE.pelmen), Items.wheat, "meat", LOTRMod.salt));
GameRegistry.addRecipe(new LOTRRecipesPoisonDrinks());
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cinderBlock), "XXX", "XYX", "XXX", GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cinderBlock), "XXX", "XYX", "XXX",
'X', Blocks.stone, 'Y', LOTRMod.balrogFire)); 'X', Blocks.stone, 'Y', LOTRMod.balrogFire));
@ -190,6 +187,10 @@ public class recipes {
// Cinder Stony Blocks // Cinder Stony Blocks
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cindercobble, 4, 1), "XY", "YX", GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cindercobble, 4, 1), "XY", "YX",
'X', new ItemStack(LOTRMod.rock, 1, 0), 'Y', LOTRMod.mordorGravel)); 'X', new ItemStack(LOTRMod.rock, 1, 0), 'Y', LOTRMod.mordorGravel));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cindercobble, 4, 2), "XX", "XX",
'X', new ItemStack(LOTRMod.silver)));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(CinderLoE.cindercobble, 4, 3), "XX", "XX",
'X', new ItemStack(CinderLoE.cindercobble, 1, 2)));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(LOTRMod.banner, 1, 44), " Y ", " X ", " Z ", GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(LOTRMod.banner, 1, 44), " Y ", " X ", " Z ",
'X', "stickWood", 'Y', new ItemStack(Blocks.wool, 1, 14), 'Z', "plankWood")); 'X', "stickWood", 'Y', new ItemStack(Blocks.wool, 1, 14), 'Z', "plankWood"));

@ -1,6 +0,0 @@
ᛒᛟᚹ ᛒᛖᚠᛟᚱᛖ ᚦᛖ ᛞᛖᛞ!
ᛒᛖᚷ ᚠᛟᚱ ᛗᛖᚱᚲᛁ!
ᛖᛏᛖᚱᚾᚨᛚ ᛈᚨᛁᚾ ᚢᛈᛟᚾ ᛁᛟᚢ!
ᛞᛖᚦ ᚢᛈᛟᚾ ᛁᛟᚢ!
ᛈᚨᛁᚾ, ᛊᚺᚨᛗᛖ, ᚺᛟᚱᚱᛟᚱ ᛏᛟ ᛁᛟᚢ!
ᛞᚱᛟᚹᚾ ᛁᚾ ᛒᛚᛟᛟᛞ ᛊᛚᚨᚢᛖ!

@ -40,7 +40,7 @@
"MixinRendererLivingEntity", "MixinRendererLivingEntity",
"MixinRenderItem", "MixinRenderItem",
"MixinSlotCrafting", "MixinSlotCrafting",
"overrides.MixinLOTREntityWarg", "MixinLOTREntityWarg",
"overrides.MixinLOTRHiredNPCInfo", "overrides.MixinLOTRHiredNPCInfo",
"overrides.MixinLOTRItemEntDraught", "overrides.MixinLOTRItemEntDraught",
"overrides.MixinLOTRReplacedMethods", "overrides.MixinLOTRReplacedMethods",

Loading…
Cancel
Save