Needful things part 2

While looking up the nomad suit, I found @Chiko’s Extended Cataclysm mod

I think an updated version of Chiko’s shark feeder profession should be mainlined. Here’s one version linted and updated to use the no_auto_equip flag and buffed quite a bit:

  {
    "type": "profession",
    "ident": "sharkfeeder",
    "name": "Shark Feeder",
    "description": "You were working in the public aquarium when the world ended. You only survived the initial onslaught because of your shark suit, which is why you are still wearing it.",
    "points": 4,
    "skills": [ { "level": 3, "name": "swimming" } ],
    "items": {
      "both": {
        "items": [ "wetsuit", "wetsuit_hood", "wetsuit_booties", "wetsuit_gloves", "dive_bag", "bucket", "shark_suit" ],
        "entries": [
          { "item": "swim_fins", "custom-flags": [ "no_auto_equip" ] },
          { "item": "goggles_swim", "custom-flags": [ "no_auto_equip" ] },
          { "item": "rebreather", "custom-flags": [ "no_auto_equip" ] }
        ]
      }
    }
  }
2 Likes