Initial commit: Item Interaction Ecosystem plugin (UE5.7)

Server-authoritative, data-driven item/inventory/interaction/carry/equipment/
world-slot/placement/crafting framework. 8 modules, compiles against UE 5.7.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Bonchellon
2026-06-22 20:49:56 +03:00
commit 7f7e043a88
98 changed files with 9328 additions and 0 deletions

View File

@ -0,0 +1,8 @@
Name,ItemId,PropertyTag,DefaultValue,Min,Max,ReplicationPolicy,bSave
raw_meat_freshness,raw_meat,Property.Freshness,1.0,0,1,OwnerOnly,true
raw_meat_contamination,raw_meat,Property.Contamination,0,0,1,OwnerOnly,true
flashlight_battery,flashlight,Property.BatteryCharge,1.0,0,1,OwnerOnly,true
axe_durability,axe,Property.Durability,1.0,0,1,OwnerOnly,true
fuel_canister_fuel,fuel_canister,Property.FuelAmount,10.0,0,20,OwnerOnly,true
car_battery_charge,car_battery,Property.Charge,0.65,0,1,OwnerOnly,true
generator_fuel,generator_small,Property.FuelAmount,0,0,40,Everyone,true
1 Name ItemId PropertyTag DefaultValue Min Max ReplicationPolicy bSave
2 raw_meat_freshness raw_meat Property.Freshness 1.0 0 1 OwnerOnly true
3 raw_meat_contamination raw_meat Property.Contamination 0 0 1 OwnerOnly true
4 flashlight_battery flashlight Property.BatteryCharge 1.0 0 1 OwnerOnly true
5 axe_durability axe Property.Durability 1.0 0 1 OwnerOnly true
6 fuel_canister_fuel fuel_canister Property.FuelAmount 10.0 0 20 OwnerOnly true
7 car_battery_charge car_battery Property.Charge 0.65 0 1 OwnerOnly true
8 generator_fuel generator_small Property.FuelAmount 0 0 40 Everyone true