-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
701a300
commit 852f0b7
Showing
3,050 changed files
with
51,090 additions
and
1,591 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/java/net/dakotapride/garnished/block/ZultaniteStairsBlock.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package net.dakotapride.garnished.block; | ||
|
||
import net.dakotapride.garnished.registry.GarnishedBlocks; | ||
import net.minecraft.world.level.block.StairBlock; | ||
|
||
public class ZultaniteStairsBlock extends StairBlock { | ||
public ZultaniteStairsBlock(Properties properties) { | ||
super(GarnishedBlocks.ZULTANITE.getDefaultState(), properties); | ||
} | ||
} |
366 changes: 351 additions & 15 deletions
366
src/main/java/net/dakotapride/garnished/item/tab/GarnishedCreativeModeTab.java
Large diffs are not rendered by default.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
src/main/java/net/dakotapride/garnished/recipe/BlackDyeBlowingFanRecipe.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package net.dakotapride.garnished.recipe; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; | ||
|
||
import com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder; | ||
|
||
import net.dakotapride.garnished.registry.GarnishedRecipeTypes; | ||
|
||
@ParametersAreNonnullByDefault | ||
public class BlackDyeBlowingFanRecipe extends DyeBlowingFanRecipe { | ||
public BlackDyeBlowingFanRecipe(ProcessingRecipeBuilder.ProcessingRecipeParams params) { | ||
super(GarnishedRecipeTypes.BLACK_DYE_BLOWING, params); | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/main/java/net/dakotapride/garnished/recipe/BrownDyeBlowingFanRecipe.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package net.dakotapride.garnished.recipe; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; | ||
|
||
import com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder; | ||
|
||
import net.dakotapride.garnished.registry.GarnishedRecipeTypes; | ||
|
||
@ParametersAreNonnullByDefault | ||
public class BrownDyeBlowingFanRecipe extends DyeBlowingFanRecipe { | ||
public BrownDyeBlowingFanRecipe(ProcessingRecipeBuilder.ProcessingRecipeParams params) { | ||
super(GarnishedRecipeTypes.BROWN_DYE_BLOWING, params); | ||
} | ||
|
||
|
||
} |
16 changes: 16 additions & 0 deletions
16
src/main/java/net/dakotapride/garnished/recipe/CyanDyeBlowingFanRecipe.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package net.dakotapride.garnished.recipe; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; | ||
|
||
import com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder; | ||
|
||
import net.dakotapride.garnished.registry.GarnishedRecipeTypes; | ||
|
||
@ParametersAreNonnullByDefault | ||
public class CyanDyeBlowingFanRecipe extends DyeBlowingFanRecipe { | ||
public CyanDyeBlowingFanRecipe(ProcessingRecipeBuilder.ProcessingRecipeParams params) { | ||
super(GarnishedRecipeTypes.CYAN_DYE_BLOWING, params); | ||
} | ||
|
||
|
||
} |
46 changes: 46 additions & 0 deletions
46
src/main/java/net/dakotapride/garnished/recipe/DyeBlowingFanRecipe.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package net.dakotapride.garnished.recipe; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; | ||
|
||
import com.simibubi.create.content.processing.recipe.ProcessingRecipe; | ||
import com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder; | ||
|
||
import com.simibubi.create.foundation.recipe.IRecipeTypeInfo; | ||
|
||
import io.github.fabricators_of_create.porting_lib.transfer.item.ItemStackHandler; | ||
import io.github.fabricators_of_create.porting_lib.transfer.item.RecipeWrapper; | ||
import net.dakotapride.garnished.registry.GarnishedRecipeTypes; | ||
import net.minecraft.world.level.Level; | ||
|
||
@ParametersAreNonnullByDefault | ||
public class DyeBlowingFanRecipe extends ProcessingRecipe<DyeBlowingFanRecipe.DyeBlowingWrapper> { | ||
|
||
public DyeBlowingFanRecipe(IRecipeTypeInfo info, ProcessingRecipeBuilder.ProcessingRecipeParams params) { | ||
super(info, params); | ||
} | ||
|
||
@Override | ||
public boolean matches(DyeBlowingWrapper inv, Level worldIn) { | ||
if (inv.isEmpty()) | ||
return false; | ||
return ingredients.get(0) | ||
.test(inv.getItem(0)); | ||
} | ||
|
||
@Override | ||
protected int getMaxInputCount() { | ||
return 1; | ||
} | ||
|
||
@Override | ||
protected int getMaxOutputCount() { | ||
return 12; | ||
} | ||
|
||
public static class DyeBlowingWrapper extends RecipeWrapper { | ||
public DyeBlowingWrapper() { | ||
super(new ItemStackHandler(1)); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.