Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiiragi283 committed Nov 24, 2024
1 parent e40fcd0 commit 747dc17
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "hiiragi283.ragium"
version = "0.8.0+121x"
version = "0.9.0+121x"

sourceSets {
main {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ class HTMachineRecipeCategory(private val key: HTMachineKey) : HTDisplayCategory
this += createSlot(bounds, 0, 0, display.inputEntries.getOrNull(0)).markInput()
this += createSlot(bounds, 1, 0, display.inputEntries.getOrNull(1)).markInput()
this += createSlot(bounds, 2, 0, display.inputEntries.getOrNull(2)).markInput()
this += createSlot(bounds, 0, 1, display.inputEntries.getOrNull(4)).markInput()
this += createSlot(bounds, 1, 1, display.inputEntries.getOrNull(5)).markInput()
this += createSlot(bounds, 2, 1, display.inputEntries.getOrNull(6)).markInput()
this += createSlot(bounds, 0, 1, display.inputEntries.getOrNull(3)).markInput()
this += createSlot(bounds, 1, 1, display.inputEntries.getOrNull(4)).markInput()
this += createSlot(bounds, 2, 1, display.inputEntries.getOrNull(5)).markInput()
// outputs
this += createSlot(bounds, 5, 0, display.outputEntries.getOrNull(0)).markOutput()
this += createSlot(bounds, 6, 0, display.outputEntries.getOrNull(1)).markOutput()
this += createSlot(bounds, 7, 0, display.outputEntries.getOrNull(2)).markOutput()
this += createSlot(bounds, 5, 1, display.outputEntries.getOrNull(4)).markOutput()
this += createSlot(bounds, 6, 1, display.outputEntries.getOrNull(5)).markOutput()
this += createSlot(bounds, 7, 1, display.outputEntries.getOrNull(6)).markOutput()
this += createSlot(bounds, 5, 1, display.outputEntries.getOrNull(3)).markOutput()
this += createSlot(bounds, 6, 1, display.outputEntries.getOrNull(4)).markOutput()
this += createSlot(bounds, 7, 1, display.outputEntries.getOrNull(5)).markOutput()
// catalyst
this += createSlot(bounds, 3.5, 1.0, display.catalyst).markInput()
// info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
{
"type": "patchouli:spotlight",
"item": "ragium:raginite_ore",
"link_recipe": true
"link_recipe": true,
"text": "Found in Overworld, between y = -48 ~ y = 48"
},
{
"type": "patchouli:spotlight",
"item": "ragium:raw_crude_raginite",
"link_recipe": true
"link_recipe": true,
"text": "Drops 1 ~ 3 from Crude Raginite Ore"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"icon": "ragium:ragi_alloy_ingot",
"name": "Ragi-Alloy",
"pages": [
{
"type": "patchouli:spotlight",
"item": "ragium:ragi_alloy_ingot",
"link_recipe": true,
"text": "Tier 1 Main Material"
},
{
"type": "patchouli:crafting",
"recipe": "ragium:shaped/ragi_alloy_compound",
Expand Down

0 comments on commit 747dc17

Please sign in to comment.