Done World gen missing

Discussion in 'Beyond' started by AlexRyuujin, Mar 8, 2017.

  1. AlexRyuujin

    AlexRyuujin Well-Known Member

    Messages:
    54
    Likes Received:
    9
    Local Time:
    3:21 AM
    I'm not sure this is the case for other mods, but there seems to be no world gen for Actually Additions. This includes
    • Black Lotus
    • Canola
    • Coffee
    • Rice
    • Black Quartz
    • Flax
     
    Last edited: Mar 8, 2017
  2. ben_mkiv

    ben_mkiv Well-Known Member

    Messages:
    482
    Likes Received:
    106
    Local Time:
    3:21 AM
    flax and canola is at least in villages, black quartz can be crafted. no idea about coffee/rice
     
  3. neronix17

    neronix17 Well-Known Member

    Messages:
    46
    Likes Received:
    13
    Local Time:
    2:21 AM
    Rice I've found in the Aroma Mining Dimension, Bees on the other hand, only able to find Rocky in that dimension and Steadfast in dungeon chests.
     
  4. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Ive found all world gen plants in villages.
     
  5. _prpl_

    _prpl_ Well-Known Member

    Messages:
    528
    Likes Received:
    185
    Local Time:
    8:21 PM
    Bees are sadly missing in the world. rockys are in aroma as stated. you might find a bee villager but those are few are far between. I needs my bees!
     
  6. neronix17

    neronix17 Well-Known Member

    Messages:
    46
    Likes Received:
    13
    Local Time:
    2:21 AM
    I feel like a good solution would be to make the hives craftable, since initially you just need to be able to find them that wouldn't really break anything.
     
  7. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    I'll come up with some easy peasy recipes for the bees and plants.
     
    SanndyTheManndy and neronix17 like this.
  8. ben_mkiv

    ben_mkiv Well-Known Member

    Messages:
    482
    Likes Received:
    106
    Local Time:
    3:21 AM
    if you go south from spawn (x: 185, z: 450) you'll find a public villager spawner, where you can sit and wait for beekeepers
     
  9. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Here you go @_prpl_ & @Aidoneus

    Code:
    var beePrincess = <forestry:beePrincessGE>;
    var blackLotus = <actuallyadditions:blockBlackLotus>;
    var cactus = <minecraft:cactus>;
    var dyeBlack = <ore:dyeBlack>;
    var dyeBrown = <ore:dyeBrown>;
    var dyeGrey = <minecraft:dye:8>;
    var dyePurple = <minecraft:dye:5>;
    var hiveEnder = <forestry:beehives:4>;
    var hiveForest = <forestry:beehives:0>;
    var hiveMarshy = <forestry:beehives:6>;
    var hiveMeadows = <forestry:beehives:1>;
    var hiveModest = <forestry:beehives:2>;
    var hiveRock = <morebees:hive>;
    var hiveTropical = <forestry:beehives:3>;
    var hiveWinter = <forestry:beehives:5>;
    var oxeyeDaisy = <minecraft:red_flower:8>;
    var royalGrub = <harvestcraft:grubItem>;
    var saplingBirch = <minecraft:sapling:2>;
    var saplingChorus = <minecraft:chorus_fruit>;
    var saplingOak = <minecraft:sapling:0>;
    var saplingRubber = <ic2:sapling>;
    var seedBeet = <minecraft:beetroot_seeds>;
    var seedCanola = <actuallyadditions:itemCanolaSeed>;
    var seedCoffee = <actuallyadditions:itemCoffeeSeed>;
    var seedFlax = <actuallyadditions:itemFlaxSeed>;
    var seedRice = <actuallyadditions:itemRiceSeed>;
    var seedWheet = <minecraft:wheat_seeds>;
    var snow = <ore:blockSnow>;
    var rock = <ore:stone>;
    var vine = <ore:vine>;
    var shardNether = <woot:shard:3>;
    var combHoney = <harvestcraft:honeycombItem>;
    
    recipes.addShaped(hiveRock * 1, [
    	[shardNether, royalGrub, shardNether],
    	[royalGrub, combHoney, royalGrub],
    	[shardNether, royalGrub, shardNether]]);
    
    recipes.addShaped(hiveRock * 1, [
    	[rock, rock, rock],
    	[rock, beePrincess, rock],
    	[rock, royalGrub, rock]]);
       
    recipes.addShaped(hiveForest * 1, [
    	[saplingOak, saplingOak, saplingOak],
    	[saplingOak, beePrincess, saplingOak],
    	[saplingOak, royalGrub, saplingOak]]);
    
    recipes.addShaped(hiveMeadows * 1, [
    	[saplingBirch, saplingBirch, saplingBirch],
    	[saplingBirch, beePrincess, saplingBirch],
    	[saplingBirch, royalGrub, saplingBirch]]);
    
    recipes.addShaped(hiveModest * 1, [
    	[cactus, cactus, cactus],
    	[cactus, beePrincess, cactus],
    	[cactus, royalGrub, cactus]]);
    
    recipes.addShaped(hiveTropical * 1, [
    	[vine, vine, vine],
    	[vine, beePrincess, vine],
    	[vine, royalGrub, vine]]);
    
    recipes.addShaped(hiveEnder * 1, [
    	[saplingChorus, saplingChorus, saplingChorus],
    	[saplingChorus, beePrincess, saplingChorus],
    	[saplingChorus, royalGrub, saplingChorus]]);
    
    recipes.addShaped(hiveWinter * 1, [
    	[snow, snow, snow],
    	[snow, beePrincess, snow],
    	[snow, royalGrub, snow]]);
    
    recipes.addShaped(hiveMarshy * 1, [
    	[saplingRubber, saplingRubber, saplingRubber],
    	[saplingRubber, beePrincess, saplingRubber],
    	[saplingRubber, royalGrub, saplingRubber]]);
    
    recipes.addShaped(blackLotus * 8, [
    	[oxeyeDaisy, oxeyeDaisy, oxeyeDaisy],
    	[oxeyeDaisy, dyeBlack, oxeyeDaisy],
    	[oxeyeDaisy, oxeyeDaisy, oxeyeDaisy]]);
    
    recipes.addShaped(seedCanola * 8, [
    	[seedWheet, seedWheet, seedWheet],
    	[seedWheet, dyeBrown, seedWheet],
    	[seedWheet, seedWheet, seedWheet]]);
       
    recipes.addShaped(seedCoffee * 8, [
    	[seedBeet, seedBeet, seedBeet],
    	[seedBeet, dyeBrown, seedBeet],
    	[seedBeet, seedBeet, seedBeet]]);
       
    recipes.addShaped(seedRice * 8, [
    	[seedWheet, seedWheet, seedWheet],
    	[seedWheet, dyeGrey, seedWheet],
    	[seedWheet, seedWheet, seedWheet]]);
       
    recipes.addShaped(seedFlax * 8, [
    	[seedWheet, seedWheet, seedWheet],
    	[seedWheet, dyePurple, seedWheet],
    	[seedWheet, seedWheet, seedWheet]]);
    

    Gist of the code HERE
     
    Last edited: Mar 16, 2017
    wyndman and neronix17 like this.
  10. wyndman

    wyndman Well-Known Member

    Messages:
    4,048
    Likes Received:
    2,016
    Local Time:
    9:21 PM
    Added, and if nothing goes wrong you should see them with the next restart. Thanks Booker, your recipes are much more intense than the ones I was going to deploy.
     
    BookerTheGeek and Datsaltysnek like this.
  11. _prpl_

    _prpl_ Well-Known Member

    Messages:
    528
    Likes Received:
    185
    Local Time:
    8:21 PM
    not seeing what im supposed to do...
     
  12. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Got to do them right if ya going to do them, right?
     
  13. _prpl_

    _prpl_ Well-Known Member

    Messages:
    528
    Likes Received:
    185
    Local Time:
    8:21 PM
    i logged on.. im assuming you make hives? but there were no recipes.. and to get royal jelly.. you need bees :p
     
  14. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Rick hive can be silked touched.

    @_prpl_ Royal jelly is from pams bees... Are they not spawning either?
     
  15. ben_mkiv

    ben_mkiv Well-Known Member

    Messages:
    482
    Likes Received:
    106
    Local Time:
    3:21 AM
    afaik they do spawn in overworld, but that would make them kinda limited as i havent seen lots of them
     
  16. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Ill modify them tonight then.
     
  17. wyndman

    wyndman Well-Known Member

    Messages:
    4,048
    Likes Received:
    2,016
    Local Time:
    9:21 PM
    Pams bees are in the world I've seen oodles of them flying around.
     
    BookerTheGeek likes this.
  18. BookerTheGeek

    BookerTheGeek Well-Known Member

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    8:21 PM
    Then we are all good.
     
  19. Aidoneus

    Aidoneus Director Booster

    Messages:
    4,447
    Likes Received:
    1,943
    Local Time:
    7:21 PM
    Currently there is a problem with JEI and CraftTweaker. CraftTweaker being the one adding the recipes in JEI. The recipes will sometimes not show clients new recipes. If the player makes the recipe in a crafting table, it will look like there is no output. Click on the output anyways, and it will give you the item. I want to keep this here as it could answer some people's questions about the new recipes.
     
  20. neronix17

    neronix17 Well-Known Member

    Messages:
    46
    Likes Received:
    13
    Local Time:
    2:21 AM
    How do you go about silk touching a rocky hive? I'm guessing it's just enchanting a scoop but just clarifying before I go and use up my xp trying to do that.
     

Share This Page