Advertisement
Guest User

Untitled

a guest
Sep 11th, 2015
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.22 KB | None | 0 0
  1. // Mod Version: 1.2.2
  2. {
  3.     // Food included in the food group
  4.     "food": {
  5.         // A list of Ore Dictionary entries
  6.         // This example adds two oredictionary entries created by Pam's HarvestCraft,
  7.         // including all fruit and all berries
  8.         // "oredict": [
  9.         // ],
  10.         //  "listAllfishcooked"
  11.         // ],
  12.         // A list of items in "mod:name:meta" format
  13.         // This example adds red apples and golden apples (golden_apple with metadata 0),
  14.         // thereby excluding enchanted golden apples (golden_apple with metadata 1)
  15.         "items": [
  16.                 "AquacultureDangoria:item.loot",
  17.             "AquacultureDangoria:item.loot:1",
  18.                 "AquacultureDangoria:item.loot:2",
  19.                 "AquacultureDangoria:item.loot:3",
  20.                 "AquacultureDangoria:item.loot:4",
  21.                 "AquacultureDangoria:item.loot:5",
  22.                 "AquacultureDangoria:item.loot:6",
  23.                 "AquacultureDangoria:item.loot:8",
  24.                     "AquacultureDangoria:item.loot:9",
  25.                     "AquacultureDangoria:item.loot:10"
  26.         ]
  27.     },
  28.  
  29.     // The name that will be shown in the tooltip.
  30.     // Can be localized. Unused for hidden food groups.
  31.     // Optional; default if not defined: "spiceoflife.foodgroup.<filename>"
  32.     "name": "aquaculture",
  33.  
  34.     // Optional; default if not defined: true
  35.     "enabled": true,
  36.  
  37.     // Food can only belong to one food group.
  38.     // In the case of conflicting food groups, the food group with the highest priority will be selected
  39.     // Example: A food group with priority 3 will take precedence over a food group with priority 1
  40.     // Optional; default if not defined: 0
  41.     "priority": 0,
  42.  
  43.     // If true, the foods in this food group will be excluded from diminishing returns
  44.     // Optional; default if not defined: false
  45.     "blacklist": false,
  46.  
  47.     // If true, this food group will not be shown in the tooltip
  48.     // Note: blacklist food groups are always hidden
  49.     // Optional; default if not defined: false
  50.     "hidden": false,
  51.  
  52.     // If defined, this formula will be used for this food group
  53.     // instead of the main diminishing returns formula
  54.     // See the food.modifier.formula config option in the main SpiceOfLife.cfg for documentation
  55.     // Optional; default if not defined: food.modifier.formula from SpiceOfLife.cfg
  56.     "formula": "MAX(0, 1 - count/2)"
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement