From 7b1fac733d12b4ffe5967a8f7722ce0c1d72f3d9 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 28 Jan 2024 20:26:24 -0700 Subject: [PATCH] Cleanup and add the mob as a valid actor type --- template.bak.json | 209 ---------------------------------------------- template.json | 3 +- 2 files changed, 2 insertions(+), 210 deletions(-) delete mode 100644 template.bak.json diff --git a/template.bak.json b/template.bak.json deleted file mode 100644 index 7a0b395..0000000 --- a/template.bak.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "Actor": { - "types": [ - "npc", - "pc", - "mob" - ], - "templates": { - "common": { - "bytes": { - "value": 0, - "min": 0 - } - }, - "sync":{ - "value": 100, - "max": 100, - "min": 0 - } - }, - "NPC": { - "templates": [ - "common" - ] - }, - "PC": { - "templates": [ - "common", - "sync" - ], - "stats": { - "build": "", - "meta": "", - "presence": "", - "hands": "", - "tilt": "", - "rng": "" - }, - "skills": { - "build": { - "defense": "untrained", - "magic": "untrained", - "melee": "untrained", - "platforming": "untrained", - "strength": "untrained" - }, - "meta": { - "alchemy": "untrained", - "arcanum": "untrained", - "dreams": "untrained", - "lore": "untrained", - "navigation": "untrained" - }, - "presence": { - "animalHandling": "untrained", - "perception": "untrained", - "sneak": "untrained", - "speech": "untrained", - "vibes": "untrained" - }, - "hands": { - "accuracy": "untrained", - "crafting": "untrained", - "engineering": "untrained", - "explosives": "untrained", - "piloting": "untrained" - } - }, - "aspect": { - "name": "", - "description": "" - }, - "roles": [ - { - "name": "", - "description": "" - }, - { - "name": "", - "description": "" - }, - { - "name": "", - "description": "" - }, - { - "name": "", - "description": "" - } - ], - "weapon": { - "name": "", - "damage": "", - "quivers": { - "value": 0, - "min": 0, - "max": 5 - }, - "mags": { - "value": 0, - "min": 0, - "max": 5 - }, - "cells": { - "value": 0, - "min": 0, - "max": 5 - } - }, - "inventory": { - "backpack": [], - "bytes": { - "value": 0, - "min": 0 - }, - "supplies": { - "value": 0, - "min": 0, - "max": 5 - }, - "materials": { - "value": 0, - "min": 0, - "max": 5 - }, - "pet": {}, - "transport": {}, - "spells": {} - } - }, - "Mob": { - "templates": [] - } - }, - "Item": { - "types": [ - "weapon", - "armour", - "equipment", - "foil", - "pet", - "transportation", - "structure", - "service", - "legendaryItem", - "spell" - ], - "templates": { - "common": { - "name": "", - "rarity": "simple", - "cost": { - "min": 0, - "value": 0 - } - } - }, - "weapon": { - "templates": [ - "common" - ] - }, - "Armor": { - "templates": [ - "common" - ] - }, - "Equipment": { - "templates": [ - "common" - ] - }, - "foil": { - "templates": [ - "common" - ] - }, - "pet": { - "templates": [ - "common" - ] - }, - "transportation": { - "templates": [ - "common" - ] - }, - "structure": { - "templates": [ - "common" - ] - }, - "service": { - "templates": [ - "common" - ] - }, - "legendaryItem": { - "templates": [ - "common" - ] - }, - "spell": { - "templates": [ - "common" - ] - } - } -} \ No newline at end of file diff --git a/template.json b/template.json index f4399fe..d385103 100644 --- a/template.json +++ b/template.json @@ -2,7 +2,8 @@ "Actor": { "types": [ "player", - "sync" + "sync", + "mob" ] }, "Item": {