diff --git a/assets/.DS_Store b/assets/.DS_Store
index 57f62c7ae..b84bb15b7 100644
Binary files a/assets/.DS_Store and b/assets/.DS_Store differ
diff --git a/assets/DEMO_FAZA1/.DS_Store b/assets/DEMO_FAZA1/.DS_Store
index 40506e2d0..f5e70d271 100644
Binary files a/assets/DEMO_FAZA1/.DS_Store and b/assets/DEMO_FAZA1/.DS_Store differ
diff --git a/nova farma TRAE/assets/DEMO_FAZA1/Buildings/chest_closed.png b/nova farma TRAE/assets/DEMO_FAZA1/Buildings/chest_closed.png
new file mode 100644
index 000000000..92cecebc4
Binary files /dev/null and b/nova farma TRAE/assets/DEMO_FAZA1/Buildings/chest_closed.png differ
diff --git a/nova farma TRAE/assets/DEMO_FAZA1/Buildings/wooden_fence.png b/nova farma TRAE/assets/DEMO_FAZA1/Buildings/wooden_fence.png
new file mode 100644
index 000000000..d0be70836
Binary files /dev/null and b/nova farma TRAE/assets/DEMO_FAZA1/Buildings/wooden_fence.png differ
diff --git a/nova farma TRAE/remove_bg.py b/nova farma TRAE/remove_bg.py
new file mode 100644
index 000000000..e68c5f3b5
--- /dev/null
+++ b/nova farma TRAE/remove_bg.py
@@ -0,0 +1,25 @@
+import sys
+from PIL import Image
+
+def process_image(input_path, output_path):
+ img = Image.open(input_path).convert("RGBA")
+ datas = img.getdata()
+
+ newData = []
+ # Convert white background to transparent
+ for item in datas:
+ # Check if the pixel color is white or close to white (tolerance)
+ if item[0] >= 240 and item[1] >= 240 and item[2] >= 240:
+ newData.append((255, 255, 255, 0)) # Replace with transparent
+ else:
+ newData.append(item)
+
+ img.putdata(newData)
+ img.save(output_path, "PNG")
+ print(f"Saved {output_path}")
+
+if __name__ == "__main__":
+ if len(sys.argv) < 3:
+ print("Usage: python remove_bg.py