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
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
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
[23:43:13] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. | |
[23:43:13] [main/INFO] [FML/]: Forge Mod Loader version 12.18.1.2061 for Minecraft 1.10.2 loading | |
[23:43:13] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 10:amd64:10.0, installed at C:\Program Files (x86)\Minecraft\runtime\jre-x64\1.8.0_25 | |
[23:43:13] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\lothr\AppData\Roaming\.minecraft\libraries\net\minecraftforge\forge\1.10.2-12.18.1.2061\forge-1.10.2-12.18.1.2061.jar;C:\Users\lothr\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.12\launchwrapper-1.12.jar;C:\Users\lothr\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar;C:\Users\lothr\AppData\Roaming\.minecraft\libraries\jline\jline\2.13\jline-2.13.jar;C:\Users\lothr\AppData\Roaming\.minecraft\libraries\com\typesafe\akka\akka-actor_2.11\2.3.3\akka-actor_2.11-2.3.3.jar;C:\Users\lothr\AppData\Roaming\.minecraft\libraries\co |
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
package vazkii.blockdispenser; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.List; | |
import com.google.common.collect.ImmutableSet; | |
import net.minecraft.block.Block; | |
import net.minecraft.block.BlockDirectional; |
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
Plan that lists every mod that I currently support in 1.12 | |
(If you use any of my mods that are NOT listed here, let me know. ) | |
Wave 1: Small Mods | |
Easy stuff to get used to the 1.13 workspace and learning curve | |
- Similsax https://minecraft.curseforge.com/projects/similsax-transtructors | |
- Block Layers https://minecraft.curseforge.com/projects/block-layers | |
- Absent by Design https://minecraft.curseforge.com/projects/absent-by-design/ |
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
import mods.cyclicmagic.Solidifier; | |
// output, recipe, fluid, quantity | |
Solidifier.addRecipe(<minecraft:clay>, [<minecraft:dirt>, <minecraft:dirt>], "water", 300); | |
Solidifier.removeShapedRecipe(<minecraft:obsidian>); | |
import mods.cyclicmagic.Melter; | |
// input, fluid, quantity |
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
- OS license to be determined | |
- pay is flat rate (negotiable) for ownership of code and curse page to myself (total to be determined) | |
- work input required ends when i accept the code and ship the very first build to curse, at that point it is deemed complete | |
- with regular checkings/git push as normal as we both playtest during progress (once something is running anyway) | |
- I will manage issue tracker, bugfix updates or features, curseforge stuff from then on. | |
- I will create and own github private repository (likely to go public in future on completion) | |
- both members credited as creators of mod | |
- https://github.com/Lothrazar/DiminishingReturns |
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
{ | |
"type": "minecraft:stonecutting", | |
"ingredient": { | |
"item": "minecraft:andesite" | |
}, | |
"result": "minecraft:andesite_slab", | |
"count": 2 | |
} |
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
#General settings | |
[elementaryores] | |
[elementaryores.end] | |
[elementaryores.end.redstone] | |
#Vein Size | |
#Range: 0 ~ 64 | |
high = 62 |
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
#General settings | |
[elementaryores] | |
[elementaryores.end] | |
[elementaryores.end.ender] | |
#Min and max y levels for spawn | |
#Range: 0 ~ 256 | |
high = 127 |
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
#General settings | |
[growthcontrols] | |
#List of biomes for sapling | |
"minecraft:birch_sapling" = ["minecraft:birch_forest", "minecraft:forest", "minecraft:birch_forest_hills", "minecraft:tall_birch_forest", "minecraft:tall_birch_hills"] | |
#List of biomes for sapling | |
"minecraft:jungle_sapling" = ["minecraft:jungle_edge", "minecraft:jungle", "minecraft:jungle_hills", "minecraft:modified_jungle", "minecraft:bamboo_jungle", "minecraft:bamboo_jungle_hills", "minecraft:modified_jungle_edge", "minecraft:modified_jungle"] | |
#List of biomes for sapling | |
"minecraft:oak_sapling" = ["minecraft:forest", "minecraft:dark_forest", "minecraft:wooded_mountains", "minecraft:wooded_hills", "minecraft:swamp", "minecraft:swamp_hills", "minecraft:flower_forest"] | |
#List of biomes for sapling |
OlderNewer