-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Varanus nests spawn interval increased from every 8 hours to once a day Added Goblinpedia and its interactive manual Added chest Added input bin Added ground shelf Added wall shelf Added crafter output storage Added fiber rug Added pole banner Added window plant box Fixed varanus not dropping items Fixed Beast Tamer summons appearing in pet traders
- Loading branch information
1 parent
27d2171
commit 902863a
Showing
95 changed files
with
1,210 additions
and
136 deletions.
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
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,12 @@ | ||
{ | ||
"type": "command", | ||
"name": "goblinpedia", | ||
"display_name": "i18n(swamp_goblins:data.commands.goblinpedia.display_name)", | ||
"description": "i18n(swamp_goblins:data.commands.goblinpedia.description)", | ||
"icon": "file(goblinpedia.png)", | ||
"ordinal": 9, | ||
"action": "fire_event", | ||
"event_name": "swamp_goblins:goblinpedia", | ||
"event_data": {}, | ||
"visible_to_all_players": true | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+508 Bytes
(110%)
entities/construction/wooden_window_frame/wooden_window_frame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
Binary file not shown.
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,55 @@ | ||
{ | ||
"type": "entity", | ||
"mixins": "file(input_bin_wood_ghost.json)", | ||
"components": { | ||
"stonehearth:entity_forms": { | ||
"iconic_form": "file(input_bin_wood_iconic.json)", | ||
"ghost_form": "file(input_bin_wood_ghost.json)", | ||
"placeable_on_ground": true | ||
}, | ||
"destination": { | ||
"region": [ | ||
{ | ||
"min": { "x": 0, "y": 0, "z": 0 }, | ||
"max": { "x": 2, "y": 1, "z": 2 } | ||
} | ||
] | ||
}, | ||
"region_collision_shape": { | ||
"region": [ | ||
{ | ||
"min": { "x": 0, "y": 0, "z": 0 }, | ||
"max": { "x": 2, "y": 2, "z": 2 } | ||
} | ||
] | ||
}, | ||
"stonehearth:storage": { | ||
"type": "input_crate", | ||
"capacity": 12, | ||
"render_contents": true, | ||
"filter_list": "stonehearth:ui:input_box:filters", | ||
"is_single_filter": true | ||
}, | ||
"effect_list": { | ||
"default": "/stonehearth/data/rigs/entities/containers/input_bin/effects/idle.json" | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:net_worth": { | ||
"value_in_gold": 4, | ||
"rarity": "common", | ||
"shop_info": { | ||
"buyable": true, | ||
"sellable": true, | ||
"shopkeeper_level": 2, | ||
"shopkeeper_type": "caravan" | ||
} | ||
}, | ||
"stonehearth:appeal": { | ||
"appeal": 4 | ||
}, | ||
"stonehearth:item_quality": { | ||
"variable_quality": true | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
29 changes: 29 additions & 0 deletions
29
entities/containers/input_bin_wood/input_bin_wood_ghost.json
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,29 @@ | ||
{ | ||
"mixins": "stonehearth:mixins:placed_object", | ||
"components": { | ||
"model_variants": { | ||
"default": { | ||
"models": [ | ||
"file(input_bin_wood.qb)" | ||
] | ||
} | ||
}, | ||
"mob": { | ||
"model_origin": { "x": -0.5, "y": 0, "z": -0.5 }, | ||
"region_origin": { "x": 0.5, "y": 0, "z": 0.5 } | ||
}, | ||
"render_info": { | ||
"scale": 0.1, | ||
"animation_table": "/stonehearth/data/rigs/entities/containers/input_bin/input_bin.json" | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:catalog": { | ||
"display_name": "i18n(stonehearth:entities.containers.input_bin_wood.input_bin_wood_ghost.display_name)", | ||
"description": "i18n(stonehearth:entities.containers.input_bin_wood.input_bin_wood_ghost.description)", | ||
"icon": "file(input_bin_wood.png)", | ||
"category": "storage", | ||
"material_tags": ["wood", "containers", "crafted", "furniture", "stockpile_furniture"] | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
entities/containers/input_bin_wood/input_bin_wood_iconic.json
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,22 @@ | ||
{ | ||
"mixins": "stonehearth:mixins:item_properties", | ||
"type": "entity", | ||
"components": { | ||
"model_variants": { | ||
"default": { | ||
"models": [ | ||
"file(input_bin_wood_iconic.qb)" | ||
] | ||
} | ||
}, | ||
"mob": { | ||
"model_origin": { "x": 0, "y": 0, "z": 0 } | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:catalog": { | ||
"is_item": true, | ||
"category": "storage" | ||
} | ||
} | ||
} |
Binary file not shown.
56 changes: 56 additions & 0 deletions
56
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood.json
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,56 @@ | ||
{ | ||
"type": "entity", | ||
"mixins": "file(input_shelf_ground_wood_ghost.json)", | ||
"components": { | ||
"stonehearth:entity_forms": { | ||
"iconic_form": "file(input_shelf_ground_wood_iconic.json)", | ||
"ghost_form": "file(input_shelf_ground_wood_ghost.json)", | ||
"placeable_on_ground": true | ||
}, | ||
"destination": { | ||
"region": [ | ||
{ | ||
"min": { "x": -1, "y": 0, "z": 0 }, | ||
"max": { "x": 2, "y": 2, "z": 1 } | ||
} | ||
], | ||
"adjacency_flags": [ | ||
"front", | ||
"back" | ||
] | ||
}, | ||
"region_collision_shape": { | ||
"region": [ | ||
{ | ||
"min": { "x": -1, "y": 0, "z": 0 }, | ||
"max": { "x": 2, "y": 2, "z": 1 } | ||
} | ||
] | ||
}, | ||
"stonehearth:storage": { | ||
"type": "input_crate", | ||
"capacity": 12, | ||
"render_contents": true, | ||
"filter_list": "stonehearth:ui:input_box:filters", | ||
"is_single_filter": true | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:net_worth": { | ||
"value_in_gold": 5, | ||
"rarity": "common", | ||
"shop_info": { | ||
"buyable": true, | ||
"sellable": true, | ||
"shopkeeper_level": 2, | ||
"shopkeeper_type": "caravan" | ||
} | ||
}, | ||
"stonehearth:appeal": { | ||
"appeal": 4 | ||
}, | ||
"stonehearth:item_quality": { | ||
"variable_quality": true | ||
} | ||
} | ||
} |
Binary file added
BIN
+4.79 KB
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.3 KB
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood.qb
Binary file not shown.
32 changes: 32 additions & 0 deletions
32
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood_ghost.json
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,32 @@ | ||
{ | ||
"mixins": "stonehearth:mixins:placed_object", | ||
"components": { | ||
"model_variants": { | ||
"default": { | ||
"models": [ | ||
"file(input_shelf_ground_wood.qb)" | ||
] | ||
} | ||
}, | ||
"mob": { | ||
"model_origin": { "x": 0, "y": 0, "z": 0 }, | ||
"region_origin": { "x": 0.5, "y": 0, "z": 0.5 } | ||
}, | ||
"render_info": { | ||
"scale": 0.1, | ||
"animation_table": "/stonehearth/data/rigs/entities/containers/input_shelf/input_shelf.json" | ||
}, | ||
"effect_list": { | ||
"default": "/stonehearth/data/rigs/entities/containers/input_shelf/effects/idle.json" | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:catalog": { | ||
"display_name": "i18n(stonehearth:entities.containers.input_shelf_ground_wood.input_shelf_ground_wood_ghost.display_name)", | ||
"description": "i18n(stonehearth:entities.containers.input_shelf_ground_wood.input_shelf_ground_wood_ghost.description)", | ||
"icon": "file(input_shelf_ground_wood.png)", | ||
"category": "storage", | ||
"material_tags": ["wood", "containers", "crafted", "furniture", "stockpile_furniture"] | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood_iconic.json
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,22 @@ | ||
{ | ||
"mixins": "stonehearth:mixins:item_properties", | ||
"type": "entity", | ||
"components": { | ||
"model_variants": { | ||
"default": { | ||
"models": [ | ||
"file(input_shelf_ground_wood_iconic.qb)" | ||
] | ||
} | ||
}, | ||
"mob": { | ||
"model_origin": { "x": 0, "y": 0, "z": 0 } | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:catalog": { | ||
"is_item": true, | ||
"category": "storage" | ||
} | ||
} | ||
} |
Binary file added
BIN
+481 Bytes
entities/containers/input_shelf_ground_wood/input_shelf_ground_wood_iconic.qb
Binary file not shown.
57 changes: 57 additions & 0 deletions
57
entities/containers/input_shelf_wall_wood/input_shelf_wall_wood.json
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,57 @@ | ||
{ | ||
"type": "entity", | ||
"mixins": "file(input_shelf_wall_wood_ghost.json)", | ||
"components": { | ||
"stonehearth:entity_forms": { | ||
"iconic_form": "file(input_shelf_wall_wood_iconic.json)", | ||
"ghost_form": "file(input_shelf_wall_wood_ghost.json)", | ||
"placeable_on_walls": true | ||
}, | ||
"destination": { | ||
"region": [ | ||
{ | ||
"min": { "x": -1, "y": -2, "z": 0 }, | ||
"max": { "x": 2, "y": 2, "z": 1 } | ||
} | ||
], | ||
"adjacency_flags": [ | ||
"front", | ||
"left", | ||
"right" | ||
] | ||
}, | ||
"region_collision_shape": { | ||
"region": [ | ||
{ | ||
"min": { "x": -1, "y": 0, "z": 0 }, | ||
"max": { "x": 2, "y": 2, "z": 1 } | ||
} | ||
] | ||
}, | ||
"stonehearth:storage": { | ||
"type": "input_crate", | ||
"capacity": 12, | ||
"render_contents": true, | ||
"filter_list": "stonehearth:ui:input_box:filters", | ||
"is_single_filter": true | ||
} | ||
}, | ||
"entity_data": { | ||
"stonehearth:net_worth": { | ||
"value_in_gold": 4, | ||
"rarity": "common", | ||
"shop_info": { | ||
"buyable": true, | ||
"sellable": true, | ||
"shopkeeper_level": 2, | ||
"shopkeeper_type": "caravan" | ||
} | ||
}, | ||
"stonehearth:appeal": { | ||
"appeal": 4 | ||
}, | ||
"stonehearth:item_quality": { | ||
"variable_quality": true | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.