Inital Commit

This commit is contained in:
Mueller Wayan
2025-08-15 10:40:09 +02:00
commit d31b693fd2
521 changed files with 933 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Item System
```mermaid
classDiagram
class Item{
<<abstract>>
}
class ItemStructure{
<<struct>>
Name : Text
IsStackable : Bool
Description : Text
IsConsumable : Text
MaxStackSize : Int
Durability : Float
BuyValue : Int
SellValue : Int
Weight : Int
Thumbnail : Texture_2D
Item_Type : ItemType
rarety : Rarety
DealerInterest : DealerInterests
}
```