Compare commits

..

2 Commits

Author SHA1 Message Date
06505bde64 konju 2026-01-21 12:13:23 +01:00
9736f5e5e3 lol 2026-01-21 11:09:46 +01:00
2051 changed files with 623 additions and 0 deletions

13
CAMP_PROMPTS.md Normal file
View File

@@ -0,0 +1,13 @@
# PROMPTS ZA TABORNI SET - Čakam na 12:39 za generacijo
## 1. ŠOTOR (tent_dirty.png)
Rusty dirty post-apocalyptic tent, small one-person camping tent with torn fabric, muddy dark olive green and brown canvas, heavy weathering and stains, ripped holes patched with duct tape, rusty metal poles visible, collapsed on one side, sitting on grass, top-down 3/4 angled view, thick black cartoon outlines, dark chibi noir style, isolated on solid green background RGB(0,255,0), game environment asset
## 2. SPALNA VREČA (sleeping_bag_old.png)
Old tattered sleeping bag, dirty worn-out fabric with mud stains and tears, faded military green color with brown dirt patches, partially unzipped showing worn interior lining, lying crumpled on grass, small rocks and twigs around it, top-down 3/4 view, thick black outlines, dark chibi cartoon style, post-apocalyptic aesthetic, isolated on solid green background RGB(0,255,0), game prop asset
## 3. OGNJIŠČE UGASNJENO (campfire_cold.png)
Cold campfire pit, circle of dark stones around burnt wood and ash, charred logs in center, scattered grey ash, no flames or smoke, small burnt embers barely visible, top-down view, rusty apocalyptic style with thick black outlines, dark chibi aesthetic, isolated on solid green background RGB(0,255,0), game environment prop
## 4. PRAZNE KONZERVE (empty_cans.png)
Small pile of 3-4 rusty tin cans, dented and crushed metal cans with peeling labels, dark rust brown color with exposed metal, scattered messily, some cans tipped over, top-down 3/4 view, thick black cartoon outlines, post-apocalyptic trash aesthetic, isolated on solid green background RGB(0,255,0), game litter prop

BIN
NOVE_SLIKE/UI/amnezia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 921 KiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 590 KiB

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 624 KiB

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 667 KiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 642 KiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 368 KiB

After

Width:  |  Height:  |  Size: 749 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 860 KiB

After

Width:  |  Height:  |  Size: 1.8 MiB

41
apply_green_screen.py Normal file
View File

@@ -0,0 +1,41 @@
import os
from PIL import Image
def add_green_background(image_path):
try:
if not os.path.exists(image_path):
print(f"Skipping {image_path}")
return
# Open image
img = Image.open(image_path).convert("RGBA")
# Create solid green background #00FF00
green_bg = Image.new("RGBA", img.size, (0, 255, 0, 255))
# Composite the image on top of the green background
# This fills transparent areas with green
green_bg.alpha_composite(img)
# Save back (removing alpha channel to make it fully opaque green if desired,
# but maintaining format. Usually "chroma key" implies the background is that color).
# We can save as RGB to discard alpha, ensuring it's solid.
final = green_bg.convert("RGB")
final.save(image_path)
print(f"Updated with Green BG: {image_path}")
except Exception as e:
print(f"Error: {e}")
# Files to process (The ones we just cleaned)
files = [
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/gumb_start.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/merilec_zdravja.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/okvir_zarjavel.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/amnezija_maska.png"
]
for f in files:
add_green_background(f)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

0
assets/slike/glavna_referenca/.DS_Store_1 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_10 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_11 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_12 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_13 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_14 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_15 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_16 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_17 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_18 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_19 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_2 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_20 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_21 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_22 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_23 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_24 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_25 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_26 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_27 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_28 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_29 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_3 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_30 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_31 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_32 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_33 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_34 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_35 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_36 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_37 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_38 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_4 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_5 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_6 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_7 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_8 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_9 Normal file → Executable file
View File

View File

Before

Width:  |  Height:  |  Size: 288 KiB

After

Width:  |  Height:  |  Size: 288 KiB

View File

Before

Width:  |  Height:  |  Size: 284 KiB

After

Width:  |  Height:  |  Size: 284 KiB

View File

Before

Width:  |  Height:  |  Size: 306 KiB

After

Width:  |  Height:  |  Size: 306 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 195 KiB

After

Width:  |  Height:  |  Size: 195 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 132 KiB

View File

Before

Width:  |  Height:  |  Size: 174 KiB

After

Width:  |  Height:  |  Size: 174 KiB

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 166 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 318 KiB

After

Width:  |  Height:  |  Size: 318 KiB

0
assets/slike/glavna_referenca/Animals/insects/bee.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 264 KiB

View File

Before

Width:  |  Height:  |  Size: 262 KiB

After

Width:  |  Height:  |  Size: 262 KiB

View File

Before

Width:  |  Height:  |  Size: 261 KiB

After

Width:  |  Height:  |  Size: 261 KiB

View File

Before

Width:  |  Height:  |  Size: 372 KiB

After

Width:  |  Height:  |  Size: 372 KiB

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

Before

Width:  |  Height:  |  Size: 250 KiB

After

Width:  |  Height:  |  Size: 250 KiB

View File

Before

Width:  |  Height:  |  Size: 311 KiB

After

Width:  |  Height:  |  Size: 311 KiB

View File

Before

Width:  |  Height:  |  Size: 296 KiB

After

Width:  |  Height:  |  Size: 296 KiB

View File

Before

Width:  |  Height:  |  Size: 298 KiB

After

Width:  |  Height:  |  Size: 298 KiB

View File

Before

Width:  |  Height:  |  Size: 315 KiB

After

Width:  |  Height:  |  Size: 315 KiB

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View File

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 188 KiB

View File

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 145 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View File

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 124 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

Before

Width:  |  Height:  |  Size: 356 KiB

After

Width:  |  Height:  |  Size: 356 KiB

View File

Before

Width:  |  Height:  |  Size: 231 KiB

After

Width:  |  Height:  |  Size: 231 KiB

View File

Before

Width:  |  Height:  |  Size: 333 KiB

After

Width:  |  Height:  |  Size: 333 KiB

View File

Before

Width:  |  Height:  |  Size: 390 KiB

After

Width:  |  Height:  |  Size: 390 KiB

View File

Before

Width:  |  Height:  |  Size: 444 KiB

After

Width:  |  Height:  |  Size: 444 KiB

View File

Before

Width:  |  Height:  |  Size: 397 KiB

After

Width:  |  Height:  |  Size: 397 KiB

View File

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View File

Before

Width:  |  Height:  |  Size: 280 KiB

After

Width:  |  Height:  |  Size: 280 KiB

Some files were not shown because too many files have changed in this diff Show More