• R/O
  • SSH

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

前提Mod: Minecraft1.7.10 IC2Exp


Commit MetaInfo

Revisiond9223281c024559a785b81f2ca854864db1099ce (tree)
Zeit2015-08-06 21:40:45
AutorMirrgieRiana
CommiterMirrgieRiana

Log Message

InitializerCrops: 一部のCropを×形描画に指定

Ändern Zusammenfassung

Diff

diff -r f2d5f864667d -r d9223281c024 MirageCrops6/src/main/java/miragecrops6/InitializerCrops.java
--- a/MirageCrops6/src/main/java/miragecrops6/InitializerCrops.java Thu Aug 06 21:40:10 2015 +0900
+++ b/MirageCrops6/src/main/java/miragecrops6/InitializerCrops.java Thu Aug 06 21:40:45 2015 +0900
@@ -86,6 +86,7 @@
8686 setEmittedLight(c, array(5), 0);
8787 addCropComponentSarracenia(c, array(4, 5), COLLISION, 2,
8888 entityLiving -> entityLiving.getCreatureAttribute() == EnumCreatureAttribute.ARTHROPOD);
89+ ModMirageCrops6.proxy.setCrossing(c);
8990
9091 c = r("sarraceniaLightning", 6, 5, s(4, 0, 5, 2, 1), a(a1, a2, "Purple", "Lightning"));
9192 setGain(c, cropTile -> AliItemStack.cropSarraceniaLightning.copy());
@@ -94,6 +95,7 @@
9495 setEmittedLight(c, array(5), 12);
9596 addCropComponentSarracenia(c, array(4, 5), COLLISION, 5,
9697 entityLiving -> entityLiving.getCreatureAttribute() == EnumCreatureAttribute.ARTHROPOD);
98+ ModMirageCrops6.proxy.setCrossing(c);
9799
98100 c = r("sarraceniaNagae", 10, 5, s(0, 4, 7, 5, 0), a(a1, a2, "Fish", "Food", "Edible", "Lightning", "Cloth"));
99101 setGain(c, cropTile -> {
@@ -107,6 +109,7 @@
107109 setTextureRespect(c, max(4), AliCrop.sarracenia);
108110 setEmittedLight(c, array(5), 8);
109111 setTickerNagae(c, array(4));
112+ ModMirageCrops6.proxy.setCrossing(c);
110113
111114 c = r("sarraceniaManeater", 8, 5, s(0, 0, 6, 3, 1), a(a1, a2, "Pink", "Red", "Blood", "Undead"));
112115 setGain(c, cropTile -> AliItemStack.cropSarraceniaManeater.copy());
@@ -116,6 +119,7 @@
116119 addCropComponentSarracenia(c, array(4, 5), COLLISION, 3, entityLiving -> entityLiving instanceof EntityZombie);
117120 addCropComponentSarracenia(c, array(4, 5), COLLISION, 3, entityLiving -> entityLiving instanceof EntityVillager);
118121 addCropComponentSarracenia(c, array(4, 5), COLLISION, 1, entityLiving -> entityLiving instanceof EntityPlayerMP);
122+ ModMirageCrops6.proxy.setCrossing(c);
119123
120124 c = r("sarraceniaDevil", 14, 5, s(0, 0, 8, 3, 0), a(a1, a2, "Red", "Redstone", "Undead", "Blood"));
121125 setGain(c, cropTile -> AliItemStack.cropSarraceniaDevil.copy());
@@ -124,6 +128,7 @@
124128 setEmittedLight(c, array(5), 4);
125129 addCropComponentSarracenia(c, array(4, 5), COLLISION, 3,
126130 entityLiving -> entityLiving.getCreatureAttribute() == EnumCreatureAttribute.UNDEAD);
131+ ModMirageCrops6.proxy.setCrossing(c);
127132
128133 }
129134
@@ -168,6 +173,7 @@
168173 setGain(c, cropTile -> AliItemStack.cropReedCircuit.copy());
169174 setGain(c, range(2, 3), cropTile -> HItemStack.copy(AliItemStack.cropReedWire, cropTile.getSize() - 1));
170175 setSizeAfterHarvest(c, array(4), cropTile -> rBw(cropTile, 1, 3));
176+ ModMirageCrops6.proxy.setCrossing(c);
171177
172178 c = r("berriesMatter", 9, 4, s(1002, 0, 0, 6, 0), a(a1, "Matter", "Purple"));
173179 setGain(c, cropTile -> w()
@@ -187,6 +193,7 @@
187193 .entry(300, () -> new ItemStack(Items.glowstone_dust))
188194 .entry(200, () -> new ItemStack(Items.dye, 1, 4))
189195 .get(cropTile.getWorld().rand).get());
196+ ModMirageCrops6.proxy.setCrossing(c);
190197
191198 c = r("wartGlass", 8, 3, s(1000, 0, 0, 0, 0), a(a1, "Glass", "Silica"));
192199 setGain(c, cropTile -> w()
@@ -226,12 +233,14 @@
226233 setGain(c, cropTile -> AliItemStack.cropCactus.copy());
227234 addCropComponentCactus(c, array(4), COLLISION, 1.0f);
228235 registerBaseSeed(c, () -> HItemStack.copy(AliItemStack.cropCactus, 1));
236+ ModMirageCrops6.proxy.setCrossing(c);
229237
230238 c = r("cactusObsidian", 7, 4, s(3, 0, 6, 3, 0), a(a1, a2, "Purple", "Black", "Obsidian", "Glass", "Fire"));
231239 setGain(c, cropTile -> AliItemStack.cropCactusObsidian.copy());
232240 setTextureRespect(c, max(3), AliCrop.cactus);
233241 addCropComponentCactus(c, array(4), COLLISION, 2.0f);
234242 registerBaseSeed(c, () -> HItemStack.copy(AliItemStack.cropCactusObsidian, 1));
243+ ModMirageCrops6.proxy.setCrossing(c);
235244
236245 c = r("cactusSnow", 6, 5, s(2, 0, 5, 2, 0), a(a1, a2, "White", "Ice", "Snow"));
237246 setGain(c, cropTile -> w()
@@ -246,6 +255,8 @@
246255 addCropComponentCactus(c, array(4, 5), COLLISION | CLICK, 1.0f);
247256 addCropComponentSlow(c, array(5), COLLISION);
248257 registerBaseSeed(c, () -> HItemStack.copy(AliItemStack.cropCactusSnow, 1));
258+ ModMirageCrops6.proxy.setCrossing(c);
259+
249260 }
250261
251262 private static void registerWeeds()
@@ -260,10 +271,12 @@
260271 c = r("fern", 1, 4, s(0, 0, 0, 1, 4), a(a1, a2, a5, "Weed"));
261272 setGain(c, cropTile -> new ItemStack(Blocks.tallgrass, 1, 2));
262273 registerBaseSeed(c, () -> new ItemStack(Blocks.tallgrass, 1, 2));
274+ ModMirageCrops6.proxy.setCrossing(c);
263275
264276 c = r("fernHoney", 5, 5, s(0, 3, 0, 1, 2), a(a1, a2, a5, "Bee", "Honey", "Edible"));
265277 setGain(c, cropTile -> null);
266278 setTextureRespect(c, max(4), AliCrop.fern);
279+ ModMirageCrops6.proxy.setCrossing(c);
267280 }
268281
269282 {
@@ -273,6 +286,7 @@
273286 c = r("vine", 1, 4, s(0, 0, 1, 0, 4), a(a3, a4, a5, "Weed"));
274287 setGain(c, cropTile -> new ItemStack(Blocks.vine));
275288 registerBaseSeed(c, () -> new ItemStack(Blocks.vine));
289+ ModMirageCrops6.proxy.setCrossing(c);
276290
277291 c = r("vineApatite", 6, 4, s(3, 0, 0, 2, 1), a(a3, a4, a5, "Blue", "Apatite", "Crystal", "Phosphorus"));
278292 setGain(c, cropTile -> w()
@@ -282,9 +296,11 @@
282296 setGrowthLightRegion(c, array(3), 15, 15);
283297 setGrowthDurationRatio(c, array(3), 5);
284298 setTextureRespect(c, max(3), AliCrop.vine);
299+ ModMirageCrops6.proxy.setCrossing(c);
285300
286301 c = r("vineFluoroberries", 9, 4, s(6, 0, 4, 3, 1), a(a3, a4, "Yellow", "Fluorine", "Berry"));
287302 setGain(c, cropTile -> HItemStack.copy(AliItemStack.cropVineFluoroberries, rBw(cropTile, 1, 10)));
303+ ModMirageCrops6.proxy.setCrossing(c);
288304 }
289305 }
290306
@@ -313,14 +329,18 @@
313329 setGain(c, cropTile -> null);
314330
315331 c = r("coffeeJava", 6, 4, s(1, 4, 0, 1, 0), a("Coffee", "Leaves", "Java"));
332+ ModMirageCrops6.proxy.setCrossing(c);
316333 setGain(c, cropTile -> null);
317334
318335 c = r("mandrake", 5, 4, s(5, 3, 5, 2, 3), a("Mandrake"));
319336 setGain(c, cropTile -> AliItemStack.cropMandrake.copy());
337+ ModMirageCrops6.proxy.setCrossing(c);
320338
321339 c = r("dreamflower", 7, 4, s(0, 0, 0, 3, 0), a("Dream", "Flower", "Mirage"));
322340 setGain(c, cropTile -> null);
323341 setEmittedLight(c, array(4), 8);
342+ ModMirageCrops6.proxy.setCrossing(c);
343+
324344 }
325345
326346 private static class Weighter<T>