Ship a disk example pack so last-wins, patches and create-with-a-mod are tested for real.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leonid Pershin
2026-08-20 01:06:12 +03:00
co-authored by Cursor
parent edd3d35c79
commit 505b1429ab
20 changed files with 405 additions and 14 deletions
@@ -0,0 +1,17 @@
{
"defName": "ExampleNames",
"patronymicRule": "slavic",
"defaultGivenDeclension": "hard",
"defaultSurnameDeclension": "ov",
"nativeLanguages": ["RussianLanguage"],
"relatedLanguageChance": 0,
"maleGiven": [
{ "form": "Иван" },
],
"femaleGiven": [
{ "form": "Анна", "declension": "a" },
],
"surnames": [
{ "male": "Тестов", "female": "Тестова" },
],
}
@@ -0,0 +1,7 @@
{
"defName": "ExampleStore",
"slots": [
{ "key": "lockers", "thing": "Locker", "count": 4 },
],
"travelMinutes": 0.5,
}
@@ -0,0 +1,2 @@
// Same defName as core: the last pack wins and the loader warns. Chat is already a core action.
{ "defName": "Chair", "actions": ["Sit", "Chat"] }
@@ -0,0 +1,14 @@
[
{
"defName": "ExampleEarlyRiser",
"weight": 1,
"incompatible": ["ExampleNightOwl"],
"commuteMinutes": 2,
},
{
"defName": "ExampleNightOwl",
"weight": 1,
"incompatible": ["ExampleEarlyRiser"],
"commuteMinutes": -2,
},
]