최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 Eugen Systems 의 NDF (Niche Definition Files) format 의 Python parser/serializer". 매 Wargame: Red Dragon, Steel Division, WARNO 의 mod 작성에 사용. 매 lossless round-trip + AST manipulation 을 제공.
매 핵심
매 NDF format 이란
Eugen 의 game data 정의 언어 — 매 unit stats, weapon, sound, UI binding 의 declarative description.
Lua-like syntax + GUID reference + template instantiation. 매 plain text but very large (수만 lines).
unit=source.by_name("Descriptor_Unit_M1A2_Abrams_US").value# unit is an Object node
매 module 안의 specific value 변경
modules=unit.by_name("ModulesDescriptors").valueformoduleinmodules:ifmodule.value.type=="TBaseDamageModuleDescriptor":hp_row=module.value.by_name("MaxPhysicalDamages")hp_row.value="12"# was "10"break