From 9bc9d46975fd1ad327ab9e98bdcf97db5d66deaa Mon Sep 17 00:00:00 2001 From: Fantom-Balatro Date: Sun, 23 Mar 2025 04:41:07 -0600 Subject: [PATCH] Added lovely.toml --- lovely.toml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 lovely.toml diff --git a/lovely.toml b/lovely.toml new file mode 100644 index 0000000..81b7120 --- /dev/null +++ b/lovely.toml @@ -0,0 +1,47 @@ +[manifest] +version = "1.0" +dump_lua = true +priority = 0 + +# This manifest assumes the following release structure: +# +# DVSimulate/ +# ├─ Engine.lua +# ├─ Init.lua +# ├─ Utils.lua +# ├─ Jokers/ +# │ ├─ _Vanilla.lua +# │ ├─ etc. + +[[patches]] +[patches.copy] +target = "globals.lua" +position = "append" +sources = ["FNSimulate/Init.lua", "FNPreview/Init.lua", "FNPreview/Card.lua"] + +[[patches]] +[patches.copy] +target = "main.lua" +position = "append" +sources = ["FNPreview/Core.lua", "FNPreview/Utils.lua"] + +[[patches]] +[patches.copy] +target = "functions/common_events.lua" +position = "append" +sources = ["FNSimulate/Engine.lua", "FNSimulate/Utils.lua"] + +[[patches]] +[patches.copy] +target = "card.lua" +position = "append" +sources = [ + "FNSimulate/Jokers/_Vanilla.lua", + "FNSimulate/Jokers/Multiplayer.lua", +] + +[[patches]] +[patches.copy] +target = "functions/UI_definitions.lua" +position = "append" +sources = ["FNPreview/Interface.lua"]