This commit is contained in:
2026-09-10 10:59:40 +03:00
commit f8323f947a
3 changed files with 36 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"id": "test_defaults_and_patches",
"name": "Test Defaults and Patches",
"version": "1.0.0",
"author": "ct",
"description": "Test mod demonstrating property patches system with wildcard and targeted patches",
"depends": ["core>=1"]
}
+14
View File
@@ -0,0 +1,14 @@
{
"Items": [
{
"Id": "Marao",
"TestPatched": 42,
"TestDefault": 100
},
{
"Id": "*",
"TestDefault": -20,
"TestGlobalPatch": 1
}
]
}
+14
View File
@@ -0,0 +1,14 @@
{
"Items": [
{
"Id": "food/ration",
"Durability": 99,
"SpecialProp": true
},
{
"Id": "*",
"Durability": 50,
"GlobalItemProp": "patched"
}
]
}