Done Recipe of Whitemarin Stargazer Fish

Discussion in 'Regrowth' started by Sasuke987206, Mar 5, 2017.

Thread Status:
Not open for further replies.
  1. Sasuke987206

    Sasuke987206 Well-Known Member

    Messages:
    7
    Likes Received:
    8
    Local Time:
    6:37 AM
    İm working in mariculture lately but i couldnt find a way to get whitemarin stargazer anyone know how to get it there is no recipe at nei and the wikia says thats not a basic fish.
     
  2. Sandstroem

    Sandstroem Well-Known Member

    Messages:
    1,524
    Likes Received:
    821
    Local Time:
    4:37 AM
    As stated in your ticket I am trying to get some information on that from the Regrowth Community, but maybe someone else has some ideas on that. The issue has been discussed in old posts from December 2014 in the FTB Regrowth thread and at that point it was stated that it is a mod issue.
     
  3. Sasuke987206

    Sasuke987206 Well-Known Member

    Messages:
    7
    Likes Received:
    8
    Local Time:
    6:37 AM
    Ok thanks mr sandstroem im waiting for you reply thanks for your interests
     
  4. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    9:37 PM
    I gave the information to staff, they will respond with the correct breeding info.

    Right @Aidoneus ?
     
  5. wyndman

    wyndman Well-Known Member

    Messages:
    4,045
    Likes Received:
    2,014
    Local Time:
    10:37 PM
    We're pretty much at the let's make a recipe stage, the mod is pretty much abandoned at this point.
     
  6. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    9:37 PM
    Not really, more so that all the info out there is currently wrong. The fish is actually breedable.
     
  7. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    9:37 PM
    Ok, so from Mariculture code that is on the server:

    Code:
    Fishing.mutation.addMutation(stargazer, squid, jelly)
    
    So that mean that Squid + Jelly = Stargazer
    But what is a Squid, and what is a Jelly? Well....
    Code:
    mariculture.fish.data.species.jelly=Jellyfish
    
    &
    Code:
    mariculture.fish.data.species.squid=Squid
    
    Looking at the code HERE & HERE, we can confirm the following;

    • Jelly: Good quality rod or better
    • Squid: Old rod or better
    Now get to fishing!
     
  8. Sandstroem

    Sandstroem Well-Known Member

    Messages:
    1,524
    Likes Received:
    821
    Local Time:
    4:37 AM
    Hm had a look at that code too and i think the third fish is the result. Not the first. Would fit to that table. But there is no line for our fish.
     
  9. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    9:37 PM
    HERE is the code, feel free to browse.
     
  10. Sandstroem

    Sandstroem Well-Known Member

    Messages:
    1,524
    Likes Received:
    821
    Local Time:
    4:37 AM
    Look at mariculture.api.fishery.imutations

    Signatur is father,mother,baby

    In the getmutations he uses mother,father

    Sloppy work there on the mod author's side

    Sorry, on my phone that's why no proper copy and paste
     
    Last edited: Mar 16, 2017
  11. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Messages:
    3,257
    Likes Received:
    1,097
    Local Time:
    9:37 PM
    That would make sense until you realize that there are fish that are not on the baby list that still show up in the father/mother list if we go with that order.
     
  12. Sandstroem

    Sandstroem Well-Known Member

    Messages:
    1,524
    Likes Received:
    821
    Local Time:
    4:37 AM
    I mixed father and mother up above

    If you look at mariculture/fishery/FishMutationHandler.java , which implements IMutation, you see that the method addMutations uses father, mother, then baby.

    And yes, there is no recipe defined in the fishery class.

    You would need something like

    Code:
    private static void addMutations() {
    ...
    Fishing.mutation.addMutation(fatherfish, motherfish, stargazer, <time>);
    ...
    }
    with <time> being some time. ;-)

    The real question is, what is father and mother? If we go by that chart that is going around, it would be obvious, but we might have to check all the other fish entries in that list above.

    That might be all to fix it here, but of course we can't change the mod (even if we are allowed to which I dont know), since we cant update regrowth on other launchers.

    If we know what the 2 parents are, one choice would be to make a crafting recipe with the two parents and e.g. 7 different mariculture pearls. Or just put a sign at spawn that gives you the stupid fish for 100 mym.[DOUBLEPOST=1489682990,1489652774][/DOUBLEPOST]Did a little thingy. That is how the current breeding lines look like. For some fishes it gives multiple options, I tried to use different colors. As far as I see this chart is different that the one you can find somewhere on the internet.
    If you want to recreate that, just dump the code below in any GraphViz Converter , e.g. Graphviz Online

    Code:
    digraph fish {
    
    dragon	  -> minecraft
    clown	   -> minecraft
    boneless	-> dragon
    ender	   -> dragon
    tang		-> clown
    blaze	   -> clown
    night	   -> ender
    koi		 -> ender
    glow		-> blaze
    koi		 -> blaze
    manOWar	 -> boneless
    electricRay -> boneless
    siamese	 -> koi
    catfish	 -> koi
    piranha	 -> manOWar
    jelly	   -> manOWar
    nether	  -> glow
    puffer	  -> glow
    stingRay	-> electricRay
    herring	 -> electricRay
    angler	  -> piranha
    puffer	  -> piranha
    herring	 -> catfish
    trout	   -> catfish
    bass		-> siamese
    tang		-> siamese
    lamprey	 -> angler
    bass		-> angler
    lamprey	 -> puffer
    jelly	   -> puffer
    nether	  -> herring
    tuna		-> herring
    stargazer   -> jelly
    squid	   -> jelly
    mantaRay	-> tang
    butterfly   -> tang
    perch	   -> bass [color="red"]
    undead	  -> bass [color="red"]
    trout	   -> bass [color="blue"]
    undead	  -> bass [color="blue"]
    salmon	  -> bass [color="green"]
    undead	  -> bass [color="green"}
    undead	  -> lamprey
    blaasop	 -> lamprey
    stingRay	-> mantaRay
    angel	   -> mantaRay
    angel	   -> tuna
    cod		 -> tuna 
    angel	   -> butterfly
    gold		-> butterfly 
    gold		-> trout [color="red"]
    tetra	   -> trout [color="red"]
    gold		-> trout [color="blue"]
    damsel	  -> trout [color="blue"]
    gold		-> salmon [color="green"]
    tetra	   -> salmon [color="green"]
    gold		-> salmon
    damsel	  -> salmon
    night	   -> undead
    spider	  -> undead
    tetra	   -> angel
    damsel	  -> angel
    cod		 -> gold
    minnow	  -> gold
    stingRay	-> damsel
    cod		 -> damsel
    stingRay	-> tetra
    minnow	  -> tetra
    
    }
    

    [​IMG]
     
  13. Aidoneus

    Aidoneus Director Booster

    Messages:
    4,417
    Likes Received:
    1,930
    Local Time:
    8:37 PM
Thread Status:
Not open for further replies.

Share This Page