From 99bedde100fdc71b78772c027ffc2cc78c42c6cf Mon Sep 17 00:00:00 2001 From: Tianyang Zhang Date: Sun, 2 Oct 2022 17:46:36 +0000 Subject: [PATCH] Crafting recipe for black lantern --- CHANGELOG.md | 1 + assets/common/recipe_book.ron | 9 +++++++++ 2 files changed, 10 insertions(+) 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),