mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-22 03:53:29 +01:00
0.34.0
This commit is contained in:
parent
5a96eecf96
commit
ee6be0821a
2 changed files with 7 additions and 4 deletions
|
@ -77,15 +77,18 @@ public class ExampleMod : Mod {
|
||||||
100,
|
100,
|
||||||
// the clothes item's use cases
|
// the clothes item's use cases
|
||||||
ClothesIntention.Everyday | ClothesIntention.Workout,
|
ClothesIntention.Everyday | ClothesIntention.Workout,
|
||||||
|
// the clothes item's style preferences, which influence randomly generated tinies slightly
|
||||||
|
// neutral style preferences have the same chance to be picked for all tinies, others have a 25% chance for mismatched preferences
|
||||||
|
StylePreference.Neutral,
|
||||||
// the clothes item's color scheme
|
// the clothes item's color scheme
|
||||||
// if the item should have multiple layers, multiple color schemes can be supplied here (see docs above)
|
// if the item should have multiple layers, multiple color schemes can be supplied here (see docs above)
|
||||||
ColorScheme.WarmDark
|
ColorScheme.WarmDark
|
||||||
) {Icon = this.Icon};
|
) {Icon = this.Icon};
|
||||||
Clothes.Register(darkShirt);
|
Clothes.Register(darkShirt);
|
||||||
// adding some more custom clothing
|
// adding some more custom clothing
|
||||||
Clothes.Register(new Clothes("ExampleMod.PastelPants", ClothesLayer.Pants, this.customBottoms, new Point(4, 0), 100, ClothesIntention.Everyday, ColorScheme.Pastel) {Icon = this.Icon});
|
Clothes.Register(new Clothes("ExampleMod.PastelPants", ClothesLayer.Pants, this.customBottoms, new Point(4, 0), 100, ClothesIntention.Everyday, StylePreference.Neutral, ColorScheme.Pastel) {Icon = this.Icon});
|
||||||
Clothes.Register(new Clothes("ExampleMod.PastelShoes", ClothesLayer.Shoes, this.customBottoms, new Point(0, 0), 100, ClothesIntention.Everyday, ColorScheme.Pastel) {Icon = this.Icon});
|
Clothes.Register(new Clothes("ExampleMod.PastelShoes", ClothesLayer.Shoes, this.customBottoms, new Point(0, 0), 100, ClothesIntention.Everyday, StylePreference.Neutral, ColorScheme.Pastel) {Icon = this.Icon});
|
||||||
Clothes.Register(new Clothes("ExampleMod.WeirdHair", ClothesLayer.Hair, this.customHairs, new Point(0, 0), 0, ClothesIntention.None, ColorScheme.Modern) {Icon = this.Icon});
|
Clothes.Register(new Clothes("ExampleMod.WeirdHair", ClothesLayer.Hair, this.customHairs, new Point(0, 0), 0, ClothesIntention.None, StylePreference.Neutral, ColorScheme.Modern) {Icon = this.Icon});
|
||||||
|
|
||||||
// adding an event subscription to people
|
// adding an event subscription to people
|
||||||
MapObject.OnEventsAttachable += o => {
|
MapObject.OnEventsAttachable += o => {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="TinyLifeApi" Version="0.33.2" />
|
<PackageReference Include="TinyLifeApi" Version="0.34.0" />
|
||||||
|
|
||||||
<PackageReference Include="ExtremelySimpleLogger" Version="1.3.1" />
|
<PackageReference Include="ExtremelySimpleLogger" Version="1.3.1" />
|
||||||
<PackageReference Include="Lib.Harmony" Version="2.2.2" />
|
<PackageReference Include="Lib.Harmony" Version="2.2.2" />
|
||||||
|
|
Loading…
Reference in a new issue