Skip to content

Commit

Permalink
diet fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sayterdarkwynd committed Jul 1, 2019
1 parent d0df63f commit 1479757
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"requires" : [],
"steamContentId" : "763259329",
"tags" : "Species|Mechanics",
"version" : "5.2.48"
"version" : "5.2.49"
}
2 changes: 1 addition & 1 deletion interface/scripted/statWindow/statWindow.config
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
},


"races": [ "apex", "avian", "floran", "glitch", "human", "hylotl", "mauskin", "novakid", "shadow", "elduukhar", "argonian", "avali", "slimeperson", "deerfolk", "lastree", "avikan", "bunnykin", "callistan", "calskies","droden", "elunite", "familiar", "felin", "fenerox", "gardevan", "aegi", "greckan", "gyrusen", "calskie", "kazdra", "kemono", "kineptic", "lamia", "mantizi","fumantizi", "mlp", "munari", "neko", "nightar", "ningen", "orcana", "fupeglaci","peglaci", "phox", "ponex", "sergal", "skelekin", "trink", "vespoid", "viera", "moogle", "vulpes", "wasphive", "arachne", "Indix", "skath", "pygs", "kitsune", "indix", "thelusian", "fukirhos", "kirhos", "radien", "woggle", "dragon", "tauren", "lucario", "inkling", "eevee", "elysian", "fennix", "lombax_striped", "lombax_pointed", "saturn", "saturn2", "blattra", "sarasinor", "webber", "candavaswebber", "Zoroark","everis","changenykt", "demon", "shade", "veluu", "cat", "deerkin", "terrakin","merrkin", "spiritguardian", "fragmentedruin" ],
"races": [ "apex", "avian", "floran", "glitch", "human", "hylotl", "mauskin", "novakid", "shadow", "elduukhar", "argonian", "avali", "fuslimeperson", "slimeperson", "deerfolk", "lastree", "avikan", "bunnykin", "callistan", "calskies","droden", "elunite", "familiar", "felin", "fenerox", "gardevan", "aegi", "greckan", "gyrusen", "calskie", "kazdra", "kemono", "kineptic", "lamia", "mantizi","fumantizi", "mlp", "munari", "neko", "nightar", "ningen", "orcana", "fupeglaci","peglaci", "phox", "ponex", "sergal", "skelekin", "trink", "vespoid", "viera", "moogle", "vulpes", "wasphive", "arachne", "Indix", "skath", "pygs", "kitsune", "indix", "thelusian", "fukirhos", "kirhos", "radien", "woggle", "dragon", "tauren", "lucario", "inkling", "eevee", "elysian", "fennix", "lombax_striped", "lombax_pointed", "saturn", "saturn2", "blattra", "sarasinor", "webber", "candavaswebber", "Zoroark","everis","changenykt", "demon", "shade", "veluu", "cat", "deerkin", "terrakin","merrkin", "spiritguardian", "fragmentedruin", "juux", "fupeglaci" ],

"elements": [ "physical", "fire", "poison", "ice", "electric", "radioactive", "cosmic", "shadow" ],
"statuses" : {
Expand Down
13 changes: 5 additions & 8 deletions scripts/fr_diets.config
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,13 @@
// The diets given below are samples; you can use them in your race files by name, but you may wish to build your own instead.
"diets" : {
// Carnivores are fine with eating cooked meat - but you won't get a diet bonus that way!
"carnivore" : [ { "ORGANIC" : false, "MEAT_RAW" : true },
{ "PLANT" : true } ],
"omnivore" : [ { "ORGANIC" : false },
{ "MEAT_RAW" : true } ],
"carnivore" : [ { "ORGANIC" : false, "MEAT_RAW" : true,"FISH" : true }, { "PLANT" : true } ],
"omnivore" : [ { "ORGANIC" : false },{ "MEAT_RAW" : true } ],
"raw_omnivore" : [ { "ORGANIC" : false, "MEAT_RAW" : true } ],

// By having ORGANIC and FISH but excluding PLANT and MEAT, Piscivores can enjoy miscellaneous ORGANIC products (milk, etc.) as well as fish
"piscivore" : [ { "ORGANIC" : false, "FISH" : true },
{ "PLANT" : true, "MEAT" : true } ],
"herbivore" : [ { "ORGANIC" : false, "PLANT" : true },
{ "MEAT" : true, "EGG" : true } ],
"piscivore" : [ { "ORGANIC" : false, "FISH" : true },{ "PLANT" : true, "MEAT" : true } ],
"herbivore" : [ { "ORGANIC" : false, "PLANT" : true }, { "MEAT" : true, "EGG" : true } ],
"robot" : [ { "ROBOT_PLANT" : true } ],
"lithivore" : [ { "ROCK": true } ],

Expand Down
12 changes: 12 additions & 0 deletions stats/effects/food/food_complex/plant_dessert.statuseffect
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name" : "plant_dessert",

"effectConfig" : {
"foodTypes" : [ "PLANT", "HIGH_GLUCOSE" ]
},
"defaultDuration" : 0,

"scripts" : [
"/stats/effects/food/foodBase.lua"
]
}

0 comments on commit 1479757

Please sign in to comment.