-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
require "Farming/ScavengeDefinition"; | ||
|
||
local BirchBark = {}; | ||
BirchBark.type="DLTS.LTSBirchBark"; | ||
BirchBark.minCount=1; | ||
BirchBark.maxCount=2; | ||
BirchBark.skill=0; | ||
table.insert(scavenges.forestGoods, BirchBark); | ||
|
||
local HoneyComb = {}; | ||
HoneyComb.type="DLTS.LTSHoneyComb"; | ||
HoneyComb.minCount=1; | ||
HoneyComb.maxCount=2; | ||
HoneyComb.skill=5; | ||
table.insert(scavenges.berries, HoneyComb); | ||
|
||
local PineCone = {}; | ||
PineCone.type="DLTS.LTSPineCone"; | ||
PineCone.minCount=1; | ||
PineCone.maxCount=3; | ||
PineCone.skill=0; | ||
table.insert(scavenges.forestGoods, PineCone); | ||
|
||
local WildOnion = {}; | ||
WildOnion.type="DLTS.LTSWildOnion"; | ||
WildOnion.minCount=1; | ||
WildOnion.maxCount=2; | ||
WildOnion.skill=4; | ||
table.insert(scavenges.mushrooms, WildOnion); | ||
|
||
local WildNuts = {}; | ||
WildNuts.type="DLTS.LTSWildNuts"; | ||
WildNuts.minCount=1; | ||
WildNuts.maxCount=2; | ||
WildNuts.skill=3; | ||
table.insert(scavenges.berries, WildNuts); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
module DLTS { | ||
|
||
imports { | ||
Base | ||
} | ||
|
||
/** ------------------------------------------------------------------------- **/ | ||
/** Foraging: New Forage-ables **/ | ||
|
||
item LTSWildNuts { | ||
HungerChange=-10, | ||
Weight=0.05, | ||
Type=Food, | ||
FoodType=NoExplicit, | ||
DisplayName=Wild Nuts, | ||
Icon=Nuts, | ||
EvolvedRecipe=Pie:10;Salad:10;Roasted Vegetables:10;RicePot:10;RicePan:10, | ||
Carbohydrates=12.48, | ||
Proteins=11.46, | ||
Lipids=14.49, | ||
Calories=187, | ||
} | ||
|
||
item LTSWildOnion { | ||
HungerChange=-10, | ||
Weight=0.2, | ||
Type=Food, | ||
FoodType=Vegetables, | ||
DaysFresh=9, | ||
DaysTotallyRotten=12, | ||
DisplayName=Wild Onion, | ||
Icon=WildOnions, | ||
EvolvedRecipe=Soup:10;Stew:10;Pie:10;Stir fry Griddle Pan:10;Stir fry:10;Sandwich:5;Burger:10;Salad:10;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10, | ||
Carbohydrates=7.76, | ||
Proteins=0.93, | ||
Lipids=0.12, | ||
Calories=63, | ||
StaticModel=RoundFood_Peach, | ||
} | ||
|
||
item LTSPineCone { | ||
Type=Normal, | ||
DisplayName=Pine Cone, | ||
Icon=PineCone, | ||
Weight=0.05, | ||
} | ||
|
||
item LTSHoneyComb { | ||
Type=Normal, | ||
DisplayName=Honeycomb, | ||
Icon=HoneyComb, | ||
Weight=0.3, | ||
} | ||
|
||
item LTSBirchBark { | ||
Type=Normal, | ||
DisplayName=Birch Bark, | ||
Icon=BirchBark, | ||
Weight=0.2, | ||
} | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.