add weapon + equipment to json example (#4114)

update json with documentation

removed comments
diff --git a/samples/monsterdata.json b/samples/monsterdata.json
index 8d66914..0db1d29 100755
--- a/samples/monsterdata.json
+++ b/samples/monsterdata.json
@@ -5,5 +5,21 @@
     z: 3
   },
   hp: 300,
-  name: "Orc"
+  name: "Orc",
+  weapons:[
+    {
+      name: "axe",
+      damage:100
+    },
+    {
+      name: "bow",
+      damage:90
+    }
+  ],
+  equipped_type: "Weapon",
+  equipped:
+    {
+      name: "bow",
+      damage:90
+    }
 }