From a1504799f44ba2debdfef06317f24e7f9c1129d6 Mon Sep 17 00:00:00 2001 From: aerospark Date: Tue, 23 Jun 2015 15:29:05 -0700 Subject: strip linenumbers --- .../loaders/load/GT_CoverBehaviorLoader.java | 26 +- main/java/gregtech/loaders/load/GT_FuelLoader.java | 70 ++--- .../gregtech/loaders/load/GT_SonictronLoader.java | 320 ++++++++++----------- 3 files changed, 208 insertions(+), 208 deletions(-) (limited to 'main/java/gregtech/loaders/load') diff --git a/main/java/gregtech/loaders/load/GT_CoverBehaviorLoader.java b/main/java/gregtech/loaders/load/GT_CoverBehaviorLoader.java index 6810c18a74..3fa3192b29 100644 --- a/main/java/gregtech/loaders/load/GT_CoverBehaviorLoader.java +++ b/main/java/gregtech/loaders/load/GT_CoverBehaviorLoader.java @@ -1,16 +1,16 @@ -/* 1: */ package gregtech.loaders.load; -/* 2: */ -/* 3: */ import gregtech.api.util.GT_Log; -/* 4: */ import java.io.PrintStream; -/* 5: */ -/* 6: */ public class GT_CoverBehaviorLoader -/* 7: */ implements Runnable -/* 8: */ { -/* 9: */ public void run() -/* :: */ { -/* ;:8 */ GT_Log.out.println("GT_Mod: Adding Cover Behaviors"); -/* <: */ } -/* =: */ } +package gregtech.loaders.load; + +import gregtech.api.util.GT_Log; +import java.io.PrintStream; + +public class GT_CoverBehaviorLoader + implements Runnable +{ + public void run() + { + GT_Log.out.println("GT_Mod: Adding Cover Behaviors"); + } +} /* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar diff --git a/main/java/gregtech/loaders/load/GT_FuelLoader.java b/main/java/gregtech/loaders/load/GT_FuelLoader.java index 1644f63f12..7bc957268b 100644 --- a/main/java/gregtech/loaders/load/GT_FuelLoader.java +++ b/main/java/gregtech/loaders/load/GT_FuelLoader.java @@ -1,38 +1,38 @@ -/* 1: */ package gregtech.loaders.load; -/* 2: */ -/* 3: */ import gregtech.api.enums.GT_Values; -/* 4: */ import gregtech.api.enums.Materials; -/* 5: */ import gregtech.api.enums.OrePrefixes; -/* 6: */ import gregtech.api.interfaces.internal.IGT_RecipeAdder; -/* 7: */ import gregtech.api.util.GT_Log; -/* 8: */ import gregtech.api.util.GT_ModHandler; -/* 9: */ import gregtech.api.util.GT_OreDictUnificator; -/* 10: */ import gregtech.api.util.GT_Recipe; -/* 11: */ import gregtech.api.util.GT_Recipe.GT_Recipe_Map; -/* 12: */ import gregtech.api.util.GT_Recipe.GT_Recipe_Map_Fuel; -/* 13: */ import java.io.PrintStream; -/* 14: */ import net.minecraft.init.Blocks; -/* 15: */ import net.minecraft.init.Items; -/* 16: */ import net.minecraft.item.ItemStack; -/* 17: */ -/* 18: */ public class GT_FuelLoader -/* 19: */ implements Runnable -/* 20: */ { -/* 21: */ public void run() -/* 22: */ { -/* 23:16 */ GT_Log.out.println("GT_Mod: Initializing various Fuels."); -/* 24:17 */ new GT_Recipe(new ItemStack(Items.lava_bucket), new ItemStack(Blocks.obsidian), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Copper, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Tin, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Electrum, 1L), 30, 2); -/* 25: */ -/* 26:19 */ GT_Recipe.GT_Recipe_Map.sSmallNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.bolt, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.bolt, Materials.Naquadah, 1L) }, null, null, null, 0, 0, 25000); -/* 27:20 */ GT_Recipe.GT_Recipe_Map.sLargeNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Naquadah, 1L) }, null, null, null, 0, 0, 200000); -/* 28:21 */ GT_Recipe.GT_Recipe_Map.sFluidNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.cell, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.cell, Materials.Empty, 1L) }, null, null, null, 0, 0, 200000); -/* 29: */ -/* 30:23 */ GT_Values.RA.addFuel(GT_ModHandler.getModItem("Thaumcraft", "ItemResource", 1L, 4), null, 4, 5); -/* 31:24 */ GT_Values.RA.addFuel(new ItemStack(Items.experience_bottle, 1), null, 10, 5); -/* 32:25 */ GT_Values.RA.addFuel(new ItemStack(Items.ghast_tear, 1), null, 50, 5); -/* 33:26 */ GT_Values.RA.addFuel(new ItemStack(Blocks.beacon, 1), null, Materials.NetherStar.mFuelPower * 2, Materials.NetherStar.mFuelType); -/* 34: */ } -/* 35: */ } +package gregtech.loaders.load; + +import gregtech.api.enums.GT_Values; +import gregtech.api.enums.Materials; +import gregtech.api.enums.OrePrefixes; +import gregtech.api.interfaces.internal.IGT_RecipeAdder; +import gregtech.api.util.GT_Log; +import gregtech.api.util.GT_ModHandler; +import gregtech.api.util.GT_OreDictUnificator; +import gregtech.api.util.GT_Recipe; +import gregtech.api.util.GT_Recipe.GT_Recipe_Map; +import gregtech.api.util.GT_Recipe.GT_Recipe_Map_Fuel; +import java.io.PrintStream; +import net.minecraft.init.Blocks; +import net.minecraft.init.Items; +import net.minecraft.item.ItemStack; + +public class GT_FuelLoader + implements Runnable +{ + public void run() + { + GT_Log.out.println("GT_Mod: Initializing various Fuels."); + new GT_Recipe(new ItemStack(Items.lava_bucket), new ItemStack(Blocks.obsidian), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Copper, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Tin, 1L), GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Electrum, 1L), 30, 2); + + GT_Recipe.GT_Recipe_Map.sSmallNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.bolt, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.bolt, Materials.Naquadah, 1L) }, null, null, null, 0, 0, 25000); + GT_Recipe.GT_Recipe_Map.sLargeNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.ingot, Materials.Naquadah, 1L) }, null, null, null, 0, 0, 200000); + GT_Recipe.GT_Recipe_Map.sFluidNaquadahReactorFuels.addRecipe(true, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.cell, Materials.NaquadahEnriched, 1L) }, new ItemStack[] { GT_OreDictUnificator.get(OrePrefixes.cell, Materials.Empty, 1L) }, null, null, null, 0, 0, 200000); + + GT_Values.RA.addFuel(GT_ModHandler.getModItem("Thaumcraft", "ItemResource", 1L, 4), null, 4, 5); + GT_Values.RA.addFuel(new ItemStack(Items.experience_bottle, 1), null, 10, 5); + GT_Values.RA.addFuel(new ItemStack(Items.ghast_tear, 1), null, 50, 5); + GT_Values.RA.addFuel(new ItemStack(Blocks.beacon, 1), null, Materials.NetherStar.mFuelPower * 2, Materials.NetherStar.mFuelType); + } +} /* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar diff --git a/main/java/gregtech/loaders/load/GT_SonictronLoader.java b/main/java/gregtech/loaders/load/GT_SonictronLoader.java index 21d7dabe98..b146aad94e 100644 --- a/main/java/gregtech/loaders/load/GT_SonictronLoader.java +++ b/main/java/gregtech/loaders/load/GT_SonictronLoader.java @@ -1,163 +1,163 @@ -/* 1: */ package gregtech.loaders.load; -/* 2: */ -/* 3: */ import gregtech.GT_Mod; -/* 4: */ import gregtech.api.util.GT_Log; -/* 5: */ import gregtech.common.GT_Proxy; -/* 6: */ import java.io.PrintStream; -/* 7: */ import java.util.ArrayList; -/* 8: */ import net.minecraft.init.Blocks; -/* 9: */ import net.minecraft.init.Items; -/* 10: */ import net.minecraft.item.ItemStack; -/* 11: */ -/* 12: */ public class GT_SonictronLoader -/* 13: */ implements Runnable -/* 14: */ { -/* 15: */ public void run() -/* 16: */ { -/* 17: 12 */ GT_Log.out.println("GT_Mod: Loading Sonictron Sounds"); -/* 18: 13 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.iron_block, 1)); -/* 19: 14 */ GT_Mod.gregtechproxy.mSoundNames.add("note.harp"); -/* 20: 15 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 21: 16 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.gold_block, 1)); -/* 22: 17 */ GT_Mod.gregtechproxy.mSoundNames.add("note.pling"); -/* 23: 18 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 24: 19 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.stone, 1)); -/* 25: 20 */ GT_Mod.gregtechproxy.mSoundNames.add("note.bd"); -/* 26: 21 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 27: 22 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.log, 1)); -/* 28: 23 */ GT_Mod.gregtechproxy.mSoundNames.add("note.bassattack"); -/* 29: 24 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 30: 25 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.planks, 1)); -/* 31: 26 */ GT_Mod.gregtechproxy.mSoundNames.add("note.bass"); -/* 32: 27 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 33: 28 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.glass, 1)); -/* 34: 29 */ GT_Mod.gregtechproxy.mSoundNames.add("note.hat"); -/* 35: 30 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 36: 31 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.sand, 1)); -/* 37: 32 */ GT_Mod.gregtechproxy.mSoundNames.add("note.snare"); -/* 38: 33 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); -/* 39: 34 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.record_cat, 1)); -/* 40: 35 */ GT_Mod.gregtechproxy.mSoundNames.add("streaming."); -/* 41: 36 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(12)); -/* 42: 37 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.tnt, 1)); -/* 43: 38 */ GT_Mod.gregtechproxy.mSoundNames.add("random.explode"); -/* 44: 39 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(3)); -/* 45: 40 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.fire, 1)); -/* 46: 41 */ GT_Mod.gregtechproxy.mSoundNames.add("fire.fire"); -/* 47: 42 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 48: 43 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.flint_and_steel, 1)); -/* 49: 44 */ GT_Mod.gregtechproxy.mSoundNames.add("fire.ignite"); -/* 50: 45 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 51: 46 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.lava, 1)); -/* 52: 47 */ GT_Mod.gregtechproxy.mSoundNames.add("liquid.lavapop"); -/* 53: 48 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 54: 49 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.water, 1)); -/* 55: 50 */ GT_Mod.gregtechproxy.mSoundNames.add("liquid.water"); -/* 56: 51 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 57: 52 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.water_bucket, 1)); -/* 58: 53 */ GT_Mod.gregtechproxy.mSoundNames.add("liquid.splash"); -/* 59: 54 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 60: 55 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.lava_bucket, 1)); -/* 61: 56 */ GT_Mod.gregtechproxy.mSoundNames.add("random.fizz"); -/* 62: 57 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 63: 58 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.portal, 1)); -/* 64: 59 */ GT_Mod.gregtechproxy.mSoundNames.add("portal.portal"); -/* 65: 60 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 66: 61 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.end_portal, 1)); -/* 67: 62 */ GT_Mod.gregtechproxy.mSoundNames.add("portal.travel"); -/* 68: 63 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 69: 64 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.end_portal_frame, 1)); -/* 70: 65 */ GT_Mod.gregtechproxy.mSoundNames.add("portal.trigger"); -/* 71: 66 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 72: 67 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.glass_pane, 1)); -/* 73: 68 */ GT_Mod.gregtechproxy.mSoundNames.add("random.glass"); -/* 74: 69 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 75: 70 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.ender_pearl, 1)); -/* 76: 71 */ GT_Mod.gregtechproxy.mSoundNames.add("random.orb"); -/* 77: 72 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 78: 73 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.ender_eye, 1)); -/* 79: 74 */ GT_Mod.gregtechproxy.mSoundNames.add("random.levelup"); -/* 80: 75 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 81: 76 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.stone_button, 1)); -/* 82: 77 */ GT_Mod.gregtechproxy.mSoundNames.add("random.click"); -/* 83: 78 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 84: 79 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.cobblestone, 1)); -/* 85: 80 */ GT_Mod.gregtechproxy.mSoundNames.add("damage.fallbig"); -/* 86: 81 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 87: 82 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.dirt, 1)); -/* 88: 83 */ GT_Mod.gregtechproxy.mSoundNames.add("damage.fallsmall"); -/* 89: 84 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 90: 85 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_sword, 1)); -/* 91: 86 */ GT_Mod.gregtechproxy.mSoundNames.add("damage.hurtflesh"); -/* 92: 87 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 93: 88 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.diamond_sword, 1)); -/* 94: 89 */ GT_Mod.gregtechproxy.mSoundNames.add("random.hurt"); -/* 95: 90 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 96: 91 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.bow, 1)); -/* 97: 92 */ GT_Mod.gregtechproxy.mSoundNames.add("random.bow"); -/* 98: 93 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 99: 94 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.arrow, 1)); -/* 100: 95 */ GT_Mod.gregtechproxy.mSoundNames.add("random.drr"); -/* 101: 96 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 102: 97 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.fishing_rod, 1)); -/* 103: 98 */ GT_Mod.gregtechproxy.mSoundNames.add("random.bowhit"); -/* 104: 99 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 105:100 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_shovel, 1)); -/* 106:101 */ GT_Mod.gregtechproxy.mSoundNames.add("random.break"); -/* 107:102 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 108:103 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.bucket, 1)); -/* 109:104 */ GT_Mod.gregtechproxy.mSoundNames.add("random.breath"); -/* 110:105 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 111:106 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.potionitem, 1)); -/* 112:107 */ GT_Mod.gregtechproxy.mSoundNames.add("random.drink"); -/* 113:108 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 114:109 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.glass_bottle, 1)); -/* 115:110 */ GT_Mod.gregtechproxy.mSoundNames.add("random.burp"); -/* 116:111 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 117:112 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.ender_chest == null ? Blocks.obsidian : Blocks.ender_chest, 1)); -/* 118:113 */ GT_Mod.gregtechproxy.mSoundNames.add("random.chestopen"); -/* 119:114 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 120:115 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.chest, 1)); -/* 121:116 */ GT_Mod.gregtechproxy.mSoundNames.add("random.chestclosed"); -/* 122:117 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 123:118 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_door, 1)); -/* 124:119 */ GT_Mod.gregtechproxy.mSoundNames.add("random.door_open"); -/* 125:120 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 126:121 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.wooden_door, 1)); -/* 127:122 */ GT_Mod.gregtechproxy.mSoundNames.add("random.door_close"); -/* 128:123 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 129:124 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.porkchop, 1)); -/* 130:125 */ GT_Mod.gregtechproxy.mSoundNames.add("random.eat"); -/* 131:126 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 132:127 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.wool, 1)); -/* 133:128 */ GT_Mod.gregtechproxy.mSoundNames.add("step.cloth"); -/* 134:129 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 135:130 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.grass, 1)); -/* 136:131 */ GT_Mod.gregtechproxy.mSoundNames.add("step.grass"); -/* 137:132 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 138:133 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.gravel, 1)); -/* 139:134 */ GT_Mod.gregtechproxy.mSoundNames.add("step.gravel"); -/* 140:135 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 141:136 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.snow, 1)); -/* 142:137 */ GT_Mod.gregtechproxy.mSoundNames.add("step.snow"); -/* 143:138 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 144:139 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.piston, 1)); -/* 145:140 */ GT_Mod.gregtechproxy.mSoundNames.add("tile.piston.out"); -/* 146:141 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 147:142 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.sticky_piston, 1)); -/* 148:143 */ GT_Mod.gregtechproxy.mSoundNames.add("tile.piston.in"); -/* 149:144 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 150:145 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.mossy_cobblestone, 1)); -/* 151:146 */ GT_Mod.gregtechproxy.mSoundNames.add("ambient.cave.cave"); -/* 152:147 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 153:148 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.lapis_block, 1)); -/* 154:149 */ GT_Mod.gregtechproxy.mSoundNames.add("ambient.weather.rain"); -/* 155:150 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 156:151 */ GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.diamond_block, 1)); -/* 157:152 */ GT_Mod.gregtechproxy.mSoundNames.add("ambient.weather.thunder"); -/* 158:153 */ GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); -/* 159: */ } -/* 160: */ } +package gregtech.loaders.load; + +import gregtech.GT_Mod; +import gregtech.api.util.GT_Log; +import gregtech.common.GT_Proxy; +import java.io.PrintStream; +import java.util.ArrayList; +import net.minecraft.init.Blocks; +import net.minecraft.init.Items; +import net.minecraft.item.ItemStack; + +public class GT_SonictronLoader + implements Runnable +{ + public void run() + { + GT_Log.out.println("GT_Mod: Loading Sonictron Sounds"); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.iron_block, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.harp"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.gold_block, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.pling"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.stone, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.bd"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.log, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.bassattack"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.planks, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.bass"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.glass, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.hat"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.sand, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("note.snare"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(25)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.record_cat, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("streaming."); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(12)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.tnt, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.explode"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(3)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.fire, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("fire.fire"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.flint_and_steel, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("fire.ignite"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.lava, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("liquid.lavapop"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.water, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("liquid.water"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.water_bucket, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("liquid.splash"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.lava_bucket, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.fizz"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.portal, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("portal.portal"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.end_portal, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("portal.travel"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.end_portal_frame, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("portal.trigger"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.glass_pane, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.glass"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.ender_pearl, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.orb"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.ender_eye, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.levelup"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.stone_button, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.click"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.cobblestone, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("damage.fallbig"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.dirt, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("damage.fallsmall"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_sword, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("damage.hurtflesh"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.diamond_sword, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.hurt"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.bow, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.bow"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.arrow, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.drr"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.fishing_rod, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.bowhit"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_shovel, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.break"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.bucket, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.breath"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.potionitem, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.drink"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.glass_bottle, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.burp"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.ender_chest == null ? Blocks.obsidian : Blocks.ender_chest, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.chestopen"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.chest, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.chestclosed"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.iron_door, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.door_open"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.wooden_door, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.door_close"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Items.porkchop, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("random.eat"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.wool, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("step.cloth"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.grass, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("step.grass"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.gravel, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("step.gravel"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.snow, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("step.snow"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.piston, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("tile.piston.out"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.sticky_piston, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("tile.piston.in"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.mossy_cobblestone, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("ambient.cave.cave"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.lapis_block, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("ambient.weather.rain"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + GT_Mod.gregtechproxy.mSoundItems.add(new ItemStack(Blocks.diamond_block, 1)); + GT_Mod.gregtechproxy.mSoundNames.add("ambient.weather.thunder"); + GT_Mod.gregtechproxy.mSoundCounts.add(Integer.valueOf(1)); + } +} /* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar -- cgit