Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Jan 13, 2019
1 parent f1602ab commit 84a7f09
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# JSON Factory

A tool for generating Minecraft assets and data.
A tool for generating Minecraft assets and data.

## Docs
The documentation can be generated with `./gradlew dokka` for now.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "io.github.cottonmc"
version = "0.3.0-dev"
version = "0.3.0"

repositories {
jcenter()
Expand Down
9 changes: 9 additions & 0 deletions src/main/kotlin/io/github/cottonmc/jsonfactory/gens/Gens.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,35 +52,44 @@ object Gens {
basicLootTable,
PlaceholderTexture(ContentGenerator.Categories.Block),
PlaceholderTexture(ContentGenerator.Categories.Item),
// Slabs
SlabBlockModel,
SlabBlockState,
SuffixedBlockItemModel("Slab", "slab"),
SlabLootTable,
// Ores
BaseOreBlockModel,
OreBlockModel("Stone", Identifier.mc("block/stone")),
OreBlockModel("Netherrack", Identifier.mc("block/netherrack")),
// Pillars
PillarBlockModel,
PillarBlockState,
// Stairs
StairBlockModel,
StairBlockState,
SuffixedBlockItemModel("Stair", "stairs"),
SuffixedLootTable("Stair", "stairs"),
// Pressure plates
PressurePlateBlockModel,
PressurePlateBlockState,
SuffixedBlockItemModel("Pressure Plate", "pressure_plate"),
SuffixedLootTable("Pressure Plate", "pressure_plate"),
// Buttons
ButtonBlockModel,
ButtonBlockState,
SuffixedBlockItemModel("Button", "button", "button_inventory"),
SuffixedLootTable("Button", "button"),
// Fences
FenceBlockModel,
FenceBlockState,
SuffixedBlockItemModel("Fence", "fence", "fence_inventory"),
SuffixedLootTable("Fence", "fence"),
// Walls
WallBlockModel,
WallBlockState,
SuffixedBlockItemModel("Wall", "wall", "wall_inventory"),
SuffixedLootTable("Wall", "wall"),
// Signs
SignBlockModel,
SignBlockState,
SuffixedItemModel(Identifier.mc("item/generated"), "Sign", "sign"),
Expand Down

0 comments on commit 84a7f09

Please sign in to comment.