Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.47 KB | None | 0 0
  1. {
  2.     "type": "entity",
  3.     "mixins": "stonehearth:mixins:monster",
  4.     "components": {
  5.         "render_info": {
  6.             "animation_table": "tameable_wolves:skeletons:fWolf",
  7.             "scale": 0.15
  8.         },
  9.         "sensor_list": {
  10.             "sensors": {
  11.                 "sight": {
  12.                     "type": "sensor",
  13.                     "radius": 15
  14.                 }
  15.             }
  16.         },
  17.         "stonehearth:equipment": {
  18.             "items": [
  19.                 "stonehearth:weapons:animals:weak_wolf_teeth"
  20.             ]
  21.         },
  22.         "model_variants": {
  23.             "default": {
  24.                 "models": [
  25.                     "file(fWolf.qb)"
  26.                 ]
  27.             }
  28.         },
  29.         "stonehearth:attributes": {
  30.             "max_health": {
  31.                 "type": "basic",
  32.                 "value": 100
  33.             },
  34.             "muscle": {
  35.                 "type": "basic",
  36.                 "value": 0
  37.             },
  38.             "menace": {
  39.                 "type": "basic",
  40.                 "value": 1
  41.             },
  42.             "courage": {
  43.                 "type": "basic",
  44.                 "value": 0
  45.             },
  46.             "speed": {
  47.                 "type": "basic",
  48.                 "value": 90
  49.             },
  50.             "exp_reward": {
  51.                 "type": "basic",
  52.                 "value": 0
  53.             }
  54.         },
  55.         "stonehearth:loot_drops": {
  56.             "entries": {
  57.                 "default": {
  58.                     "items": {
  59.                         "skin": {
  60.                             "type": "bag",
  61.                             "uri": "stonehearth:loot_bag:wolf_default",
  62.                             "weight": 1
  63.                         }
  64.                     }
  65.                 }
  66.             }
  67.         }
  68.     },
  69.     "entity_data": {
  70.         "stonehearth:catalog": {
  71.             "display_name": "i18n(tameable_wolves:entities.monsters.fWolf.display_name)",
  72.             "description": "i18n(tameable_wolves:entities.monsters.fWolf.description)",
  73.             "player_id": "friendly_wolves",
  74.             "icon": "file(fWolf.png)"
  75.         },
  76.         "stonehearth:diet": {
  77.             "food_material": "meat"
  78.         }
  79.     }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement