Initial commit: Entropia Universe Icon Extractor

A standalone tool for extracting game icons from cache.

Features:
- Auto-detect game cache
- Version selector
- PNG export with 320x320 canvas
- Light/Dark theme toggle
- Icon preview on double-click
This commit is contained in:
LemonNexus 2026-02-11 19:05:10 +00:00
commit 09702154db
4 changed files with 1164 additions and 0 deletions

55
README.md Normal file
View File

@ -0,0 +1,55 @@
# 🎮 Entropia Universe Icon Extractor
A standalone tool for extracting item icons from Entropia Universe game cache.
![Icon](icon.ico)
## 📝 Description
Extract item icons from Entropia Universe cache and convert them to PNG format. These icons can be submitted to [EntropiaNexus.com](https://EntropiaNexus.com) to help complete the item database.
**⚠️ Important:** Items must be seen/rendered in-game before they appear in the cache! If an icon is missing, view the item in your inventory or the auction first.
## 🚀 Usage
```bash
python icon_extractor.py
```
### Requirements
- Python 3.11+
- PyQt6: `pip install PyQt6`
- Pillow: `pip install Pillow`
## 🎨 Features
- **Auto-detects** game cache from `C:\ProgramData\Entropia Universe\public_users_data\cache\icon`
- **Version selector** - Choose which game version to extract from
- **"All Folders" option** - Extract from all versions at once
- **Double-click preview** - Preview TGA files before extraction
- **320x320 PNG output** - Icons centered on transparent canvas
- **Light/Dark theme** - Toggle between themes
- **Custom output folder** - Choose where to save extracted icons
## 📂 Output
Icons are saved to your Documents folder:
```
Documents\Entropia Universe\Icons\
```
(Same location where `chat.log` is normally stored)
## 🌐 Links
- **Developer:** ImpulsiveFPS
- **Discord:** impulsivefps
- **Website:** [EntropiaNexus.com](https://EntropiaNexus.com)
## ⚖️ Disclaimer
Entropia Universe Icon Extractor is a fan-made resource and is not affiliated with [MindArk PE AB](https://www.mindark.com/). [Entropia Universe](https://www.entropiauniverse.com/) is a trademark of MindArk PE AB.
## 📄 License
MIT License - Feel free to use and modify!

BIN
icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

1107
icon_extractor.py Normal file

File diff suppressed because it is too large Load Diff

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
PyQt6>=6.4.0
Pillow>=9.0.0