diff --git a/CHANGELOG.md b/CHANGELOG.md index a52ec830c9..06f2126fb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Limits on the view distance by the server no longer affect the settings saved on the client. - HQX upscaling shader for people playing on low internal resolutions - Pets can now be traded with. +- Crafting recipe for black lantern ### Changed - Use fluent for translations diff --git a/assets/common/recipe_book.ron b/assets/common/recipe_book.ron index f9c9ee09bc..b6251a10c8 100644 --- a/assets/common/recipe_book.ron +++ b/assets/common/recipe_book.ron @@ -1890,6 +1890,15 @@ ], craft_sprite: Some(CraftingBench), ), +/// LANTERN + "black lantern": ( + output: ("common.items.lantern.black_0", 1), + inputs: [ + (Item("common.items.mineral.ingot.tin"), 5, false), + (Item("common.items.mineral.ore.veloritefrag"), 3, false), + ], + craft_sprite: Some(Anvil), + ), /// MODULAR WEAPONS/SWORDS/SECONDARY COMPONENTS "short hilt": ( output: ("common.items.modular.weapon.secondary.sword.short", 1),