Skip to content

Commit

Permalink
Recipe to craft raw stone from clay and chitin
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoSupremo committed Jan 2, 2020
1 parent 028518e commit 41eec58
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 1 deletion.
5 changes: 5 additions & 0 deletions data/resource_constants.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"builder_sound_uri": "stonehearth:sounds:building_wall_wood",
"tooltip": "swamp_goblins:ui.game.build_mode2.tooltips.fiber_resource"
},
"chitin resource": {
"name": "i18n(swamp_goblins:ui.data.constants.chitin_resource)",
"icon": "/stonehearth/entities/resources/chitin/beetle_chitin/beetle_chitin.png",
"default_resource": "stonehearth:resources:beetle_chitin"
},

"wood stockpile_decoration": {
"name": "i18n(swamp_goblins:ui.data.constants.wood_decoration)",
Expand Down
3 changes: 3 additions & 0 deletions jobs/earthmaster/recipes/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@
"ordinal": 80,
"name": "i18n(stonehearth:jobs.mason.recipes.refined_name)",
"recipes": {
"raw_stone": {
"recipe": "file(refined/raw_stone_recipe.json)"
},
"gold_flakes": {
"recipe": "file(refined/gold_flakes_recipe.json)"
},
Expand Down
32 changes: 32 additions & 0 deletions jobs/earthmaster/recipes/refined/raw_stone_recipe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"type": "recipe",
"effort": 66,
"work_units": 8,
"recipe_name": "i18n(swamp_goblins:jobs.earthmaster.recipes.raw_stone.display_name)",
"description": "i18n(swamp_goblins:jobs.earthmaster.recipes.raw_stone.description)",
"flavor": "i18n(swamp_goblins:jobs.earthmaster.recipes.raw_stone.flavor)",
"portrait": "/stonehearth/entities/resources/stone/stone.png",
"workshop": "swamp_goblins:earthmaster:potter_kiln",
"level_requirement": 2,
"ingredients": [
{
"material": "clay resource",
"count": 1
},
{
"material": "chitin resource",
"count": 9
}
],
"produces": [
{
"item": "stonehearth:resources:stone:hunk_of_stone"
},
{
"item": "stonehearth:resources:stone:hunk_of_stone"
},
{
"item": "stonehearth:resources:stone:hunk_of_stone"
}
]
}
7 changes: 7 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,11 @@
"furniture":"Break Clay Furniture",
"portal": "Break Clay Door",
"window": "Break Clay Window"
},
"raw_stone":{
"display_name":"Raw Stone (x3)",
"description":"A mix of clay and chitin powder heated up to rock hard",
"flavor":""
}
}
},
Expand Down Expand Up @@ -1545,6 +1550,8 @@
"ui": {
"data":{
"constants":{
"chitin_resource":"Any Chitin",

"clay_decoration":"Any Clay Decoration",
"clay_fence":"Any Clay Fence",
"clay_furniture":"Any Clay Furniture",
Expand Down
3 changes: 2 additions & 1 deletion swamp_goblins_server.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
swamp_goblins = {}
print("Swamp Goblins Mod version 20.1.1")
print("Swamp Goblins Mod version 20.1.2")

--[[
check candledark compatibility
import hearthlings
move travel to earthmaster
Expand Down
17 changes: 17 additions & 0 deletions update_log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Additions:
(With ACE) bone furniture in the bonesmith recipes
Characters will avoid water when pathing, going around it most of the time
Raw stone can be crafted from clay and chitin

Changes:
(For ACE) Cattail counts as thatch too
Wood Chest craft level dropped from 3 to 2
Amberstone Campaign adapted for goblins, with custom dialogs, requests, etc..
Crafter buttons not available for the firefly now appears when the job is town (e.g. from reembarked hearthlings)
Connected equivalent workbenches (e.g. potter kiln and earthmaster kiln are interchangeable)

Fixes:
Fixed landmarks blocks not dropping stone when mined
Fixed frogs being vegetarian
Fixed weather stone locked on reload
Fixed crafters getting items already placed in the world to use them for recipes

0 comments on commit 41eec58

Please sign in to comment.