This commit is contained in:
Ell 2023-05-29 13:04:25 +02:00
parent 51af58bf16
commit 9c2199935d
8 changed files with 289 additions and 264 deletions

View file

@ -1,3 +1,17 @@
# 0.33.2
*May 29, 2023*
Fixes
- Fixed a rounding error in amount-based goals
- Fixed an exception when trying to pick up a person that a Tiny doesn't know
- Fixed children and babies repeatedly asking for food when food is already being prepared
- Fixed an exception when adding a baby as the 8th household member
- Fixed visitors leaving to do other things upon being invited in
API
- Added some more emote categories for better distinction
- Added a warning for when the issue tracker URL for a mod isn't set
# 0.33.1 # 0.33.1
*May 27, 2023* *May 27, 2023*

View file

@ -580,17 +580,18 @@
"TinyLife.Actions.DieAction.Reason": "TinyLife.Actions.DieAction.yml", "TinyLife.Actions.DieAction.Reason": "TinyLife.Actions.DieAction.yml",
"TinyLife.Actions.DieAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.DieAction.yml", "TinyLife.Actions.DieAction.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)": "TinyLife.Actions.DieAction.yml",
"TinyLife.Actions.Emote": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.AllCategories": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.Categories": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote.Categories": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.GetEmotes(TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote.GetEmotes(TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote)": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.Emote.Texture": "TinyLife.Actions.Emote.yml", "TinyLife.Actions.Emote.Texture": "TinyLife.Actions.Emote.yml",
"TinyLife.Actions.EmoteCategory": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Emotion": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Flirty": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory.Flirty": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Food": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.General": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory.General": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Negative": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory.Negative": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Object": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Travel": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory.Travel": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.EmoteCategory.Unable": "TinyLife.Actions.EmoteCategory.yml", "TinyLife.Actions.EmoteCategory.Unable": "TinyLife.Actions.EmoteCategory.yml",
"TinyLife.Actions.GoHereAction": "TinyLife.Actions.GoHereAction.yml", "TinyLife.Actions.GoHereAction": "TinyLife.Actions.GoHereAction.yml",
@ -1397,6 +1398,7 @@
"TinyLife.Goals.Memory.Validate(TinyLife.Objects.Person)": "TinyLife.Goals.Memory.yml", "TinyLife.Goals.Memory.Validate(TinyLife.Objects.Person)": "TinyLife.Goals.Memory.yml",
"TinyLife.Goals.MemoryType": "TinyLife.Goals.MemoryType.yml", "TinyLife.Goals.MemoryType": "TinyLife.Goals.MemoryType.yml",
"TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)": "TinyLife.Goals.MemoryType.yml", "TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)": "TinyLife.Goals.MemoryType.yml",
"TinyLife.Goals.MemoryType.AskedForFood": "TinyLife.Goals.MemoryType.yml",
"TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)": "TinyLife.Goals.MemoryType.yml", "TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)": "TinyLife.Goals.MemoryType.yml",
"TinyLife.Goals.MemoryType.ConstructedType": "TinyLife.Goals.MemoryType.yml", "TinyLife.Goals.MemoryType.ConstructedType": "TinyLife.Goals.MemoryType.yml",
"TinyLife.Goals.MemoryType.FamilySocial": "TinyLife.Goals.MemoryType.yml", "TinyLife.Goals.MemoryType.FamilySocial": "TinyLife.Goals.MemoryType.yml",

View file

@ -5067,7 +5067,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InviteIn id: InviteIn
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 236 startLine: 238
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5094,7 +5094,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InspectBaby id: InspectBaby
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 248 startLine: 253
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5121,7 +5121,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AnnouncePregnancy id: AnnouncePregnancy
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 253 startLine: 258
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5148,7 +5148,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Talk id: Talk
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 262 startLine: 267
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5175,7 +5175,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutDay id: AskAboutDay
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 266 startLine: 271
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5202,7 +5202,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellEngagingStory id: TellEngagingStory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 271 startLine: 276
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5229,7 +5229,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellStory id: TellStory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 276 startLine: 281
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5256,7 +5256,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutWork id: TalkAboutWork
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 280 startLine: 285
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5283,7 +5283,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutNeighborhood id: TalkAboutNeighborhood
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 286 startLine: 291
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5310,7 +5310,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutOutdoors id: TalkAboutOutdoors
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 291 startLine: 296
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5337,7 +5337,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutFood id: TalkAboutFood
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 295 startLine: 300
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5364,7 +5364,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DiscussWorkoutRegimen id: DiscussWorkoutRegimen
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 299 startLine: 304
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5391,7 +5391,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CompareMuscleSize id: CompareMuscleSize
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 306 startLine: 311
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5418,7 +5418,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GushAboutPartner id: GushAboutPartner
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 313 startLine: 318
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5445,7 +5445,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutGamingRig id: AskAboutGamingRig
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 319 startLine: 324
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5472,7 +5472,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutComputerSpecs id: AskAboutComputerSpecs
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 324 startLine: 329
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5499,7 +5499,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BoastAboutPagesWritten id: BoastAboutPagesWritten
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 329 startLine: 334
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5526,7 +5526,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PoseMathPuzzle id: PoseMathPuzzle
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 335 startLine: 340
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5553,7 +5553,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExpressFearOfCrowds id: ExpressFearOfCrowds
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 340 startLine: 345
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5580,7 +5580,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutNaps id: TalkAboutNaps
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 345 startLine: 350
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5607,7 +5607,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutWatchingTv id: TalkAboutWatchingTv
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 351 startLine: 356
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5634,7 +5634,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InviteToHousehold id: InviteToHousehold
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 356 startLine: 361
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5661,7 +5661,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToTellStory id: AskToTellStory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 361 startLine: 366
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5688,7 +5688,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComplainAboutAdults id: ComplainAboutAdults
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 367 startLine: 372
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5715,7 +5715,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComplainAboutParent id: ComplainAboutParent
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 372 startLine: 377
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5742,7 +5742,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutCartoons id: TalkAboutCartoons
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 377 startLine: 382
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5769,7 +5769,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutSchool id: TalkAboutSchool
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 382 startLine: 387
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5796,7 +5796,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutFavoriteToys id: TalkAboutFavoriteToys
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 387 startLine: 392
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5823,7 +5823,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutFamilyWellbeing id: AskAboutFamilyWellbeing
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 392 startLine: 397
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5850,7 +5850,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutFamily id: TalkAboutFamily
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 398 startLine: 403
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5877,7 +5877,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DebatePineappleOnPizza id: DebatePineappleOnPizza
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 404 startLine: 409
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5904,7 +5904,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DiscussFineDining id: DiscussFineDining
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 410 startLine: 415
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5931,7 +5931,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutSpicyFood id: TalkAboutSpicyFood
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 415 startLine: 420
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5958,7 +5958,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskMedicalHistory id: AskMedicalHistory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 420 startLine: 425
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -5985,7 +5985,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutNatureWalks id: TalkAboutNatureWalks
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 425 startLine: 430
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6012,7 +6012,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CriticizeDeforestation id: CriticizeDeforestation
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 430 startLine: 435
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6039,7 +6039,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DiscussNpP id: DiscussNpP
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 435 startLine: 440
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6066,7 +6066,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BragAboutComputer id: BragAboutComputer
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 440 startLine: 445
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6093,7 +6093,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DiscussHomeAutomation id: DiscussHomeAutomation
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 445 startLine: 450
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6120,7 +6120,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskIfSingle id: AskIfSingle
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 450 startLine: 455
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6147,7 +6147,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SuggestThriftstores id: SuggestThriftstores
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 461 startLine: 466
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6174,7 +6174,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EnthuseAboutCoupons id: EnthuseAboutCoupons
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 466 startLine: 471
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6201,7 +6201,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutBestSpots id: TalkAboutBestSpots
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 471 startLine: 476
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6228,7 +6228,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutBestToy id: TalkAboutBestToy
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 476 startLine: 481
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6255,7 +6255,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TeachLifeLesson id: TeachLifeLesson
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 481 startLine: 486
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6282,7 +6282,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HowYouveGrown id: HowYouveGrown
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 487 startLine: 492
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6309,7 +6309,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComparePhysicalFeatures id: ComparePhysicalFeatures
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 492 startLine: 497
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6336,7 +6336,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutCareerDreams id: AskAboutCareerDreams
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 498 startLine: 503
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6363,7 +6363,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskAboutParenting id: AskAboutParenting
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 504 startLine: 509
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6390,7 +6390,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExplainActivities id: ExplainActivities
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 512 startLine: 517
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6417,7 +6417,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ExpressPregnancyConcerns id: ExpressPregnancyConcerns
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 519 startLine: 524
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6444,7 +6444,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellJoke id: TellJoke
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 529 startLine: 534
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6471,7 +6471,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellFunnyStory id: TellFunnyStory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 533 startLine: 538
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6498,7 +6498,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellRidiculousStory id: TellRidiculousStory
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 537 startLine: 542
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6525,7 +6525,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellComplexJoke id: TellComplexJoke
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 541 startLine: 546
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6552,7 +6552,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PlayTrick id: PlayTrick
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 545 startLine: 550
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6579,7 +6579,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutWork id: JokeAboutWork
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 549 startLine: 554
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6606,7 +6606,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutOwnUnemployment id: JokeAboutOwnUnemployment
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 555 startLine: 560
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6633,7 +6633,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutTreadmillAccidents id: JokeAboutTreadmillAccidents
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 561 startLine: 566
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6660,7 +6660,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutWritingStyle id: JokeAboutWritingStyle
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 566 startLine: 571
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6687,7 +6687,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutAromance id: JokeAboutAromance
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 571 startLine: 576
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6714,7 +6714,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutAsexuality id: JokeAboutAsexuality
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 576 startLine: 581
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6741,7 +6741,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellJokeAboutSomething id: TellJokeAboutSomething
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 581 startLine: 586
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6768,7 +6768,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TellDadJoke id: TellDadJoke
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 590 startLine: 595
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6795,7 +6795,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutFamilyGatherings id: JokeAboutFamilyGatherings
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 596 startLine: 601
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6822,7 +6822,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutTrees id: JokeAboutTrees
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 602 startLine: 607
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6849,7 +6849,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutSmartHome id: JokeAboutSmartHome
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 607 startLine: 612
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6876,7 +6876,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: JokeAboutOverspending id: JokeAboutOverspending
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 612 startLine: 617
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6903,7 +6903,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutFunnyCityName id: TalkAboutFunnyCityName
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 617 startLine: 622
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6930,7 +6930,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Insult id: Insult
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 624 startLine: 629
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6957,7 +6957,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ImplyMotherIsCamel id: ImplyMotherIsCamel
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 629 startLine: 634
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -6984,7 +6984,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfUnemployment id: MakeFunOfUnemployment
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 633 startLine: 638
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7011,7 +7011,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfLaziness id: MakeFunOfLaziness
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 639 startLine: 644
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7038,7 +7038,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfIntroversion id: MakeFunOfIntroversion
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 644 startLine: 649
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7065,7 +7065,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfNiceness id: MakeFunOfNiceness
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 649 startLine: 654
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7092,7 +7092,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComplainAboutRelationship id: ComplainAboutRelationship
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 654 startLine: 659
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7119,7 +7119,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfPoorFitness id: MakeFunOfPoorFitness
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 659 startLine: 664
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7146,7 +7146,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfFriends id: MakeFunOfFriends
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 665 startLine: 670
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7173,7 +7173,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfBeingNerd id: MakeFunOfBeingNerd
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 670 startLine: 675
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7200,7 +7200,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfBeingBadAtSchool id: MakeFunOfBeingBadAtSchool
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 675 startLine: 680
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7227,7 +7227,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShooChild id: ShooChild
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 680 startLine: 685
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7254,7 +7254,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfFoodIntolerance id: MakeFunOfFoodIntolerance
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 686 startLine: 691
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7281,7 +7281,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChastiseForFoodBeliefs id: ChastiseForFoodBeliefs
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 692 startLine: 697
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7308,7 +7308,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeFunOfBeingOutdoorsy id: MakeFunOfBeingOutdoorsy
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 698 startLine: 703
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7335,7 +7335,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ImplyHomeSmarter id: ImplyHomeSmarter
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 703 startLine: 708
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7362,7 +7362,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ArgueAboutToyOwnership id: ArgueAboutToyOwnership
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 708 startLine: 713
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7389,7 +7389,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Flirt id: Flirt
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 715 startLine: 720
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7416,7 +7416,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ComplimentLooks id: ComplimentLooks
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 719 startLine: 724
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7443,7 +7443,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MakeRisqueRemark id: MakeRisqueRemark
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 723 startLine: 728
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7470,7 +7470,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BeEnticing id: BeEnticing
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 729 startLine: 734
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7497,7 +7497,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CasualCompliment id: CasualCompliment
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 734 startLine: 739
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7524,7 +7524,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ReciteLovePoem id: ReciteLovePoem
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 739 startLine: 744
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7551,7 +7551,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: DeepCompliment id: DeepCompliment
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 744 startLine: 749
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7578,7 +7578,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FlirtyJoke id: FlirtyJoke
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 749 startLine: 754
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7605,7 +7605,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: StartDating id: StartDating
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 755 startLine: 760
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7632,7 +7632,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: FoolAround id: FoolAround
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 772 startLine: 777
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7659,7 +7659,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Kiss id: Kiss
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 785 startLine: 790
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7686,7 +7686,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AdmitToBeingRomanticWithSomeoneElse id: AdmitToBeingRomanticWithSomeoneElse
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 796 startLine: 801
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7713,7 +7713,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BreakUp id: BreakUp
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 809 startLine: 814
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7740,7 +7740,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ToggleTryingForBaby id: ToggleTryingForBaby
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 827 startLine: 832
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7767,7 +7767,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Babble id: Babble
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 850 startLine: 855
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7794,7 +7794,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CryAt id: CryAt
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 856 startLine: 861
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7821,7 +7821,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskWhy id: AskWhy
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 862 startLine: 867
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7848,7 +7848,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskHow id: AskHow
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 867 startLine: 872
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7875,7 +7875,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TalkAboutPlaying id: TalkAboutPlaying
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 872 startLine: 877
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7902,7 +7902,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: YoureSoTall id: YoureSoTall
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 877 startLine: 882
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7929,7 +7929,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HelpBabyBook id: HelpBabyBook
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 882 startLine: 887
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7956,7 +7956,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: HelpPotty id: HelpPotty
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 895 startLine: 900
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -7983,7 +7983,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ChangeDiaper id: ChangeDiaper
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 902 startLine: 907
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8010,7 +8010,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: CleanUpBaby id: CleanUpBaby
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 914 startLine: 919
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8037,7 +8037,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: BatheBaby id: BatheBaby
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 921 startLine: 926
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8064,7 +8064,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PutInCrib id: PutInCrib
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 928 startLine: 933
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8091,7 +8091,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskToTakeOutOfCrib id: AskToTakeOutOfCrib
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 935 startLine: 940
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -8118,7 +8118,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskFood id: AskFood
path: ../TinyLife/Actions/ActionType.Social.cs path: ../TinyLife/Actions/ActionType.Social.cs
startLine: 949 startLine: 954
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions

View file

@ -5,12 +5,10 @@ items:
id: Emote id: Emote
parent: TinyLife.Actions parent: TinyLife.Actions
children: children:
- TinyLife.Actions.Emote.#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
- TinyLife.Actions.Emote.AllCategories
- TinyLife.Actions.Emote.Categories - TinyLife.Actions.Emote.Categories
- TinyLife.Actions.Emote.GetEmotes(TinyLife.Actions.EmoteCategory) - TinyLife.Actions.Emote.GetEmotes(TinyLife.Actions.EmoteCategory)
- TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory) - TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)
- TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote) - TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
- TinyLife.Actions.Emote.Texture - TinyLife.Actions.Emote.Texture
langs: langs:
- csharp - csharp
@ -47,35 +45,6 @@ items:
- System.Object.ToString - System.Object.ToString
extensionMethods: extensionMethods:
- TinyLife.Actions.Emote.TinyLife.Utilities.Extensions.JsonCopy``1 - TinyLife.Actions.Emote.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Actions.Emote.AllCategories
commentId: F:TinyLife.Actions.Emote.AllCategories
id: AllCategories
parent: TinyLife.Actions.Emote
langs:
- csharp
- vb
name: AllCategories
nameWithType: Emote.AllCategories
fullName: TinyLife.Actions.Emote.AllCategories
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AllCategories
path: ../TinyLife/Actions/Emote.cs
startLine: 20
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nA set of all valid <xref href=\"TinyLife.Actions.EmoteCategory\" data-throw-if-not-resolved=\"false\"></xref> values\n"
example: []
syntax:
content: public static readonly EmoteCategory[] AllCategories
return:
type: TinyLife.Actions.EmoteCategory[]
content.vb: Public Shared ReadOnly AllCategories As EmoteCategory()
- uid: TinyLife.Actions.Emote.Texture - uid: TinyLife.Actions.Emote.Texture
commentId: F:TinyLife.Actions.Emote.Texture commentId: F:TinyLife.Actions.Emote.Texture
id: Texture id: Texture
@ -94,7 +63,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Texture id: Texture
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 73 startLine: 69
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -123,7 +92,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Categories id: Categories
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 77 startLine: 73
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -134,44 +103,6 @@ items:
return: return:
type: TinyLife.Actions.EmoteCategory type: TinyLife.Actions.EmoteCategory
content.vb: Public ReadOnly Categories As EmoteCategory content.vb: Public ReadOnly Categories As EmoteCategory
- uid: TinyLife.Actions.Emote.#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
commentId: M:TinyLife.Actions.Emote.#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
id: '#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)'
parent: TinyLife.Actions.Emote
langs:
- csharp
- vb
name: Emote(TextureRegion, EmoteCategory)
nameWithType: Emote.Emote(TextureRegion, EmoteCategory)
fullName: TinyLife.Actions.Emote.Emote(MLEM.Textures.TextureRegion, TinyLife.Actions.EmoteCategory)
type: Constructor
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/Actions/Emote.cs
startLine: 84
assemblies:
- Tiny Life
namespace: TinyLife.Actions
summary: "\nInitializes a new emote with the given settings\n"
example: []
syntax:
content: public Emote(TextureRegion texture, EmoteCategory categories)
parameters:
- id: texture
type: MLEM.Textures.TextureRegion
description: The texture that this emote should display
- id: categories
type: TinyLife.Actions.EmoteCategory
description: The categories that this emote should have. Can be a combined flag.
content.vb: Public Sub New(texture As TextureRegion, categories As EmoteCategory)
overload: TinyLife.Actions.Emote.#ctor*
nameWithType.vb: Emote.New(TextureRegion, EmoteCategory)
fullName.vb: TinyLife.Actions.Emote.New(MLEM.Textures.TextureRegion, TinyLife.Actions.EmoteCategory)
name.vb: New(TextureRegion, EmoteCategory)
- uid: TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory) - uid: TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)
commentId: M:TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory) commentId: M:TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)
id: GetRandomEmote(TinyLife.Actions.EmoteCategory) id: GetRandomEmote(TinyLife.Actions.EmoteCategory)
@ -190,7 +121,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRandomEmote id: GetRandomEmote
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 94 startLine: 85
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -225,7 +156,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetEmotes id: GetEmotes
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 103 startLine: 94
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -242,16 +173,16 @@ items:
description: A set of all emotes that match the categories description: A set of all emotes that match the categories
content.vb: Public Shared Function GetEmotes(possibleCategories As EmoteCategory) As IEnumerable(Of Emote) content.vb: Public Shared Function GetEmotes(possibleCategories As EmoteCategory) As IEnumerable(Of Emote)
overload: TinyLife.Actions.Emote.GetEmotes* overload: TinyLife.Actions.Emote.GetEmotes*
- uid: TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote) - uid: TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
commentId: M:TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote) commentId: M:TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
id: Register(TinyLife.Actions.Emote) id: Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
parent: TinyLife.Actions.Emote parent: TinyLife.Actions.Emote
langs: langs:
- csharp - csharp
- vb - vb
name: Register(Emote) name: Register(TextureRegion, EmoteCategory)
nameWithType: Emote.Register(Emote) nameWithType: Emote.Register(TextureRegion, EmoteCategory)
fullName: TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote) fullName: TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion, TinyLife.Actions.EmoteCategory)
type: Method type: Method
source: source:
remote: remote:
@ -260,19 +191,24 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Register id: Register
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 118 startLine: 103
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nRegisters a new <xref href=\"TinyLife.Actions.Emote\" data-throw-if-not-resolved=\"false\"></xref> with the given settings\n" summary: "\nRegisters a new <xref href=\"TinyLife.Actions.Emote\" data-throw-if-not-resolved=\"false\"></xref> with the given settings.\n"
example: [] example: []
syntax: syntax:
content: public static void Register(Emote emote) content: public static Emote Register(TextureRegion texture, EmoteCategory categories)
parameters: parameters:
- id: emote - id: texture
type: MLEM.Textures.TextureRegion
description: The texture that this emote should display.
- id: categories
type: TinyLife.Actions.EmoteCategory
description: The categories that this emote should have. Can be a combined flag.
return:
type: TinyLife.Actions.Emote type: TinyLife.Actions.Emote
description: The emote to register content.vb: Public Shared Function Register(texture As TextureRegion, categories As EmoteCategory) As Emote
content.vb: Public Shared Sub Register(emote As Emote)
overload: TinyLife.Actions.Emote.Register* overload: TinyLife.Actions.Emote.Register*
references: references:
- uid: TinyLife.Objects.Person - uid: TinyLife.Objects.Person
@ -637,30 +573,6 @@ references:
- name: . - name: .
- uid: TinyLife.Utilities - uid: TinyLife.Utilities
name: Utilities name: Utilities
- uid: TinyLife.Actions.EmoteCategory
commentId: T:TinyLife.Actions.EmoteCategory
parent: TinyLife.Actions
name: EmoteCategory
nameWithType: EmoteCategory
fullName: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory[]
isExternal: true
name: EmoteCategory[]
nameWithType: EmoteCategory[]
fullName: TinyLife.Actions.EmoteCategory[]
nameWithType.vb: EmoteCategory()
fullName.vb: TinyLife.Actions.EmoteCategory()
name.vb: EmoteCategory()
spec.csharp:
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
- name: '['
- name: ']'
spec.vb:
- uid: TinyLife.Actions.EmoteCategory
name: EmoteCategory
- name: (
- name: )
- uid: MLEM.Textures.TextureRegion - uid: MLEM.Textures.TextureRegion
commentId: T:MLEM.Textures.TextureRegion commentId: T:MLEM.Textures.TextureRegion
parent: MLEM.Textures parent: MLEM.Textures
@ -690,14 +602,12 @@ references:
- uid: MLEM.Textures - uid: MLEM.Textures
name: Textures name: Textures
isExternal: true isExternal: true
- uid: TinyLife.Actions.Emote.#ctor* - uid: TinyLife.Actions.EmoteCategory
commentId: Overload:TinyLife.Actions.Emote.#ctor commentId: T:TinyLife.Actions.EmoteCategory
name: Emote parent: TinyLife.Actions
nameWithType: Emote.Emote name: EmoteCategory
fullName: TinyLife.Actions.Emote.Emote nameWithType: EmoteCategory
nameWithType.vb: Emote.New fullName: TinyLife.Actions.EmoteCategory
fullName.vb: TinyLife.Actions.Emote.New
name.vb: New
- uid: TinyLife.Actions.Emote.GetRandomEmote* - uid: TinyLife.Actions.Emote.GetRandomEmote*
commentId: Overload:TinyLife.Actions.Emote.GetRandomEmote commentId: Overload:TinyLife.Actions.Emote.GetRandomEmote
name: GetRandomEmote name: GetRandomEmote

View file

@ -5,9 +5,12 @@ items:
id: EmoteCategory id: EmoteCategory
parent: TinyLife.Actions parent: TinyLife.Actions
children: children:
- TinyLife.Actions.EmoteCategory.Emotion
- TinyLife.Actions.EmoteCategory.Flirty - TinyLife.Actions.EmoteCategory.Flirty
- TinyLife.Actions.EmoteCategory.Food
- TinyLife.Actions.EmoteCategory.General - TinyLife.Actions.EmoteCategory.General
- TinyLife.Actions.EmoteCategory.Negative - TinyLife.Actions.EmoteCategory.Negative
- TinyLife.Actions.EmoteCategory.Object
- TinyLife.Actions.EmoteCategory.Travel - TinyLife.Actions.EmoteCategory.Travel
- TinyLife.Actions.EmoteCategory.Unable - TinyLife.Actions.EmoteCategory.Unable
langs: langs:
@ -24,7 +27,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: EmoteCategory id: EmoteCategory
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 135 startLine: 114
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
@ -63,12 +66,10 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: General id: General
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 141 startLine: 118
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nAn emote category that represents emotes for general conversations\n"
example: []
syntax: syntax:
content: General = 1 content: General = 1
return: return:
@ -91,12 +92,10 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Travel id: Travel
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 145 startLine: 119
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nAn emote category that represents travel-related emotes\n"
example: []
syntax: syntax:
content: Travel = 2 content: Travel = 2
return: return:
@ -119,12 +118,10 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Negative id: Negative
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 149 startLine: 120
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nAn emote category that represents negative emotes\n"
example: []
syntax: syntax:
content: Negative = 4 content: Negative = 4
return: return:
@ -147,12 +144,10 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Flirty id: Flirty
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 153 startLine: 121
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nAn emote category that represents sex related or suggestive emotes\n"
example: []
syntax: syntax:
content: Flirty = 8 content: Flirty = 8
return: return:
@ -175,16 +170,92 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Unable id: Unable
path: ../TinyLife/Actions/Emote.cs path: ../TinyLife/Actions/Emote.cs
startLine: 157 startLine: 122
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Actions namespace: TinyLife.Actions
summary: "\nAn emote category that represents emotes that represent confusion or inability to do something\n"
example: []
syntax: syntax:
content: Unable = 16 content: Unable = 16
return: return:
type: TinyLife.Actions.EmoteCategory type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Food
commentId: F:TinyLife.Actions.EmoteCategory.Food
id: Food
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Food
nameWithType: EmoteCategory.Food
fullName: TinyLife.Actions.EmoteCategory.Food
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Food
path: ../TinyLife/Actions/Emote.cs
startLine: 123
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Food = 32
return:
type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Object
commentId: F:TinyLife.Actions.EmoteCategory.Object
id: Object
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Object
nameWithType: EmoteCategory.Object
fullName: TinyLife.Actions.EmoteCategory.Object
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Object
path: ../TinyLife/Actions/Emote.cs
startLine: 124
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Object = 64
return:
type: TinyLife.Actions.EmoteCategory
- uid: TinyLife.Actions.EmoteCategory.Emotion
commentId: F:TinyLife.Actions.EmoteCategory.Emotion
id: Emotion
parent: TinyLife.Actions.EmoteCategory
langs:
- csharp
- vb
name: Emotion
nameWithType: EmoteCategory.Emotion
fullName: TinyLife.Actions.EmoteCategory.Emotion
type: Field
source:
remote:
path: TinyLife/Actions/Emote.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Emotion
path: ../TinyLife/Actions/Emote.cs
startLine: 125
assemblies:
- Tiny Life
namespace: TinyLife.Actions
syntax:
content: Emotion = 128
return:
type: TinyLife.Actions.EmoteCategory
references: references:
- uid: TinyLife.Actions.Emote - uid: TinyLife.Actions.Emote
commentId: T:TinyLife.Actions.Emote commentId: T:TinyLife.Actions.Emote

View file

@ -723,7 +723,7 @@ items:
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Goals namespace: TinyLife.Goals
summary: "\nThe importance of the <xref href=\"TinyLife.Goals.JobType.DailyTasks\" data-throw-if-not-resolved=\"false\"></xref> for job progress.\nThis value defaults to 0.2, meaning the completion of this job&apos;s daily tasks make up 20% of the performance gained the next day.\n" summary: "\nThe importance of the <xref href=\"TinyLife.Goals.JobType.DailyTasks\" data-throw-if-not-resolved=\"false\"></xref> for job progress.\nThis value defaults to 0.25, meaning the completion of this job&apos;s daily tasks make up 25% of the performance gained the next day.\n"
example: [] example: []
syntax: syntax:
content: public float DailyTaskImportance { get; init; } content: public float DailyTaskImportance { get; init; }

View file

@ -6,6 +6,7 @@ items:
parent: TinyLife.Goals parent: TinyLife.Goals
children: children:
- TinyLife.Goals.MemoryType.#ctor(System.String,System.Type) - TinyLife.Goals.MemoryType.#ctor(System.String,System.Type)
- TinyLife.Goals.MemoryType.AskedForFood
- TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan) - TinyLife.Goals.MemoryType.Construct``1(TinyLife.Actions.ActionInfo,System.TimeSpan)
- TinyLife.Goals.MemoryType.ConstructedType - TinyLife.Goals.MemoryType.ConstructedType
- TinyLife.Goals.MemoryType.FamilySocial - TinyLife.Goals.MemoryType.FamilySocial
@ -396,6 +397,33 @@ items:
return: return:
type: TinyLife.Goals.MemoryType type: TinyLife.Goals.MemoryType
content.vb: Public Shared ReadOnly HadChild As MemoryType content.vb: Public Shared ReadOnly HadChild As MemoryType
- uid: TinyLife.Goals.MemoryType.AskedForFood
commentId: F:TinyLife.Goals.MemoryType.AskedForFood
id: AskedForFood
parent: TinyLife.Goals.MemoryType
langs:
- csharp
- vb
name: AskedForFood
nameWithType: MemoryType.AskedForFood
fullName: TinyLife.Goals.MemoryType.AskedForFood
type: Field
source:
remote:
path: TinyLife/Goals/MemoryType.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: AskedForFood
path: ../TinyLife/Goals/MemoryType.cs
startLine: 43
assemblies:
- Tiny Life
namespace: TinyLife.Goals
syntax:
content: public static readonly MemoryType AskedForFood
return:
type: TinyLife.Goals.MemoryType
content.vb: Public Shared ReadOnly AskedForFood As MemoryType
- uid: TinyLife.Goals.MemoryType.HadAbortion - uid: TinyLife.Goals.MemoryType.HadAbortion
commentId: F:TinyLife.Goals.MemoryType.HadAbortion commentId: F:TinyLife.Goals.MemoryType.HadAbortion
id: HadAbortion id: HadAbortion

View file

@ -30,7 +30,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ModInfo id: ModInfo
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 164 startLine: 166
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -70,7 +70,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Id id: Id
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 169 startLine: 171
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -99,7 +99,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Mod id: Mod
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 173 startLine: 175
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -128,7 +128,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Logger id: Logger
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 178 startLine: 180
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -157,7 +157,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Content id: Content
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 183 startLine: 185
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -186,7 +186,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Harmony id: Harmony
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 188 startLine: 190
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -215,7 +215,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OptionsFile id: OptionsFile
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 192 startLine: 194
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -244,7 +244,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Finalize id: Finalize
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 209 startLine: 211
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -274,7 +274,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Dispose id: Dispose
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 214 startLine: 216
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -303,7 +303,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ToString id: ToString
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 221 startLine: 223
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -333,7 +333,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SaveOptions id: SaveOptions
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 240 startLine: 242
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods
@ -371,7 +371,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LoadOptions id: LoadOptions
path: ../TinyLife/Mods/ModLoader.cs path: ../TinyLife/Mods/ModLoader.cs
startLine: 258 startLine: 260
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Mods namespace: TinyLife.Mods