mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 03:13:30 +01:00
0.33.2
This commit is contained in:
parent
51af58bf16
commit
9c2199935d
8 changed files with 289 additions and 264 deletions
14
Changelog.md
14
Changelog.md
|
@ -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
|
||||
*May 27, 2023*
|
||||
|
||||
|
|
|
@ -580,17 +580,18 @@
|
|||
"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.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.GetEmotes(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.EmoteCategory": "TinyLife.Actions.EmoteCategory.yml",
|
||||
"TinyLife.Actions.EmoteCategory.Emotion": "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.Negative": "TinyLife.Actions.EmoteCategory.yml",
|
||||
"TinyLife.Actions.EmoteCategory.Object": "TinyLife.Actions.EmoteCategory.yml",
|
||||
"TinyLife.Actions.EmoteCategory.Travel": "TinyLife.Actions.EmoteCategory.yml",
|
||||
"TinyLife.Actions.EmoteCategory.Unable": "TinyLife.Actions.EmoteCategory.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.MemoryType": "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.ConstructedType": "TinyLife.Goals.MemoryType.yml",
|
||||
"TinyLife.Goals.MemoryType.FamilySocial": "TinyLife.Goals.MemoryType.yml",
|
||||
|
|
|
@ -5067,7 +5067,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InviteIn
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 236
|
||||
startLine: 238
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5094,7 +5094,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InspectBaby
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 248
|
||||
startLine: 253
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5121,7 +5121,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AnnouncePregnancy
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 253
|
||||
startLine: 258
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5148,7 +5148,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Talk
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 262
|
||||
startLine: 267
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5175,7 +5175,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutDay
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 266
|
||||
startLine: 271
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5202,7 +5202,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellEngagingStory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 271
|
||||
startLine: 276
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5229,7 +5229,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellStory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 276
|
||||
startLine: 281
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5256,7 +5256,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutWork
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 280
|
||||
startLine: 285
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5283,7 +5283,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutNeighborhood
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 286
|
||||
startLine: 291
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5310,7 +5310,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutOutdoors
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 291
|
||||
startLine: 296
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5337,7 +5337,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutFood
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 295
|
||||
startLine: 300
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5364,7 +5364,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DiscussWorkoutRegimen
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 299
|
||||
startLine: 304
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5391,7 +5391,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CompareMuscleSize
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 306
|
||||
startLine: 311
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5418,7 +5418,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GushAboutPartner
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 313
|
||||
startLine: 318
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5445,7 +5445,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutGamingRig
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 319
|
||||
startLine: 324
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5472,7 +5472,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutComputerSpecs
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 324
|
||||
startLine: 329
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5499,7 +5499,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BoastAboutPagesWritten
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 329
|
||||
startLine: 334
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5526,7 +5526,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PoseMathPuzzle
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 335
|
||||
startLine: 340
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5553,7 +5553,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ExpressFearOfCrowds
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 340
|
||||
startLine: 345
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5580,7 +5580,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutNaps
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 345
|
||||
startLine: 350
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5607,7 +5607,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutWatchingTv
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 351
|
||||
startLine: 356
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5634,7 +5634,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: InviteToHousehold
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 356
|
||||
startLine: 361
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5661,7 +5661,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskToTellStory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 361
|
||||
startLine: 366
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5688,7 +5688,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComplainAboutAdults
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 367
|
||||
startLine: 372
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5715,7 +5715,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComplainAboutParent
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 372
|
||||
startLine: 377
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5742,7 +5742,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutCartoons
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 377
|
||||
startLine: 382
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5769,7 +5769,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutSchool
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 382
|
||||
startLine: 387
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5796,7 +5796,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutFavoriteToys
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 387
|
||||
startLine: 392
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5823,7 +5823,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutFamilyWellbeing
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 392
|
||||
startLine: 397
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5850,7 +5850,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutFamily
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 398
|
||||
startLine: 403
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5877,7 +5877,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DebatePineappleOnPizza
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 404
|
||||
startLine: 409
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5904,7 +5904,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DiscussFineDining
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 410
|
||||
startLine: 415
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5931,7 +5931,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutSpicyFood
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 415
|
||||
startLine: 420
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5958,7 +5958,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskMedicalHistory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 420
|
||||
startLine: 425
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -5985,7 +5985,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutNatureWalks
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 425
|
||||
startLine: 430
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6012,7 +6012,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CriticizeDeforestation
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 430
|
||||
startLine: 435
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6039,7 +6039,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DiscussNpP
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 435
|
||||
startLine: 440
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6066,7 +6066,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BragAboutComputer
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 440
|
||||
startLine: 445
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6093,7 +6093,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DiscussHomeAutomation
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 445
|
||||
startLine: 450
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6120,7 +6120,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskIfSingle
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 450
|
||||
startLine: 455
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6147,7 +6147,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SuggestThriftstores
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 461
|
||||
startLine: 466
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6174,7 +6174,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EnthuseAboutCoupons
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 466
|
||||
startLine: 471
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6201,7 +6201,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutBestSpots
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 471
|
||||
startLine: 476
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6228,7 +6228,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutBestToy
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 476
|
||||
startLine: 481
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6255,7 +6255,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TeachLifeLesson
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 481
|
||||
startLine: 486
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6282,7 +6282,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HowYouveGrown
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 487
|
||||
startLine: 492
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6309,7 +6309,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComparePhysicalFeatures
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 492
|
||||
startLine: 497
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6336,7 +6336,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutCareerDreams
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 498
|
||||
startLine: 503
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6363,7 +6363,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskAboutParenting
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 504
|
||||
startLine: 509
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6390,7 +6390,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ExplainActivities
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 512
|
||||
startLine: 517
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6417,7 +6417,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ExpressPregnancyConcerns
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 519
|
||||
startLine: 524
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6444,7 +6444,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellJoke
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 529
|
||||
startLine: 534
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6471,7 +6471,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellFunnyStory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 533
|
||||
startLine: 538
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6498,7 +6498,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellRidiculousStory
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 537
|
||||
startLine: 542
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6525,7 +6525,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellComplexJoke
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 541
|
||||
startLine: 546
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6552,7 +6552,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PlayTrick
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 545
|
||||
startLine: 550
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6579,7 +6579,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutWork
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 549
|
||||
startLine: 554
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6606,7 +6606,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutOwnUnemployment
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 555
|
||||
startLine: 560
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6633,7 +6633,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutTreadmillAccidents
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 561
|
||||
startLine: 566
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6660,7 +6660,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutWritingStyle
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 566
|
||||
startLine: 571
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6687,7 +6687,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutAromance
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 571
|
||||
startLine: 576
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6714,7 +6714,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutAsexuality
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 576
|
||||
startLine: 581
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6741,7 +6741,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellJokeAboutSomething
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 581
|
||||
startLine: 586
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6768,7 +6768,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TellDadJoke
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 590
|
||||
startLine: 595
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6795,7 +6795,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutFamilyGatherings
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 596
|
||||
startLine: 601
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6822,7 +6822,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutTrees
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 602
|
||||
startLine: 607
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6849,7 +6849,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutSmartHome
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 607
|
||||
startLine: 612
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6876,7 +6876,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: JokeAboutOverspending
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 612
|
||||
startLine: 617
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6903,7 +6903,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutFunnyCityName
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 617
|
||||
startLine: 622
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6930,7 +6930,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Insult
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 624
|
||||
startLine: 629
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6957,7 +6957,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ImplyMotherIsCamel
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 629
|
||||
startLine: 634
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -6984,7 +6984,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfUnemployment
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 633
|
||||
startLine: 638
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7011,7 +7011,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfLaziness
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 639
|
||||
startLine: 644
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7038,7 +7038,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfIntroversion
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 644
|
||||
startLine: 649
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7065,7 +7065,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfNiceness
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 649
|
||||
startLine: 654
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7092,7 +7092,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComplainAboutRelationship
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 654
|
||||
startLine: 659
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7119,7 +7119,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfPoorFitness
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 659
|
||||
startLine: 664
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7146,7 +7146,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfFriends
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 665
|
||||
startLine: 670
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7173,7 +7173,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfBeingNerd
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 670
|
||||
startLine: 675
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7200,7 +7200,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfBeingBadAtSchool
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 675
|
||||
startLine: 680
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7227,7 +7227,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ShooChild
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 680
|
||||
startLine: 685
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7254,7 +7254,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfFoodIntolerance
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 686
|
||||
startLine: 691
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7281,7 +7281,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChastiseForFoodBeliefs
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 692
|
||||
startLine: 697
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7308,7 +7308,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeFunOfBeingOutdoorsy
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 698
|
||||
startLine: 703
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7335,7 +7335,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ImplyHomeSmarter
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 703
|
||||
startLine: 708
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7362,7 +7362,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ArgueAboutToyOwnership
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 708
|
||||
startLine: 713
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7389,7 +7389,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Flirt
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 715
|
||||
startLine: 720
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7416,7 +7416,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ComplimentLooks
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 719
|
||||
startLine: 724
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7443,7 +7443,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: MakeRisqueRemark
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 723
|
||||
startLine: 728
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7470,7 +7470,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BeEnticing
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 729
|
||||
startLine: 734
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7497,7 +7497,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CasualCompliment
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 734
|
||||
startLine: 739
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7524,7 +7524,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ReciteLovePoem
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 739
|
||||
startLine: 744
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7551,7 +7551,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: DeepCompliment
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 744
|
||||
startLine: 749
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7578,7 +7578,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FlirtyJoke
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 749
|
||||
startLine: 754
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7605,7 +7605,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: StartDating
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 755
|
||||
startLine: 760
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7632,7 +7632,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: FoolAround
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 772
|
||||
startLine: 777
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7659,7 +7659,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Kiss
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 785
|
||||
startLine: 790
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7686,7 +7686,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AdmitToBeingRomanticWithSomeoneElse
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 796
|
||||
startLine: 801
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7713,7 +7713,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BreakUp
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 809
|
||||
startLine: 814
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7740,7 +7740,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToggleTryingForBaby
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 827
|
||||
startLine: 832
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7767,7 +7767,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Babble
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 850
|
||||
startLine: 855
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7794,7 +7794,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CryAt
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 856
|
||||
startLine: 861
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7821,7 +7821,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskWhy
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 862
|
||||
startLine: 867
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7848,7 +7848,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskHow
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 867
|
||||
startLine: 872
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7875,7 +7875,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: TalkAboutPlaying
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 872
|
||||
startLine: 877
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7902,7 +7902,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: YoureSoTall
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 877
|
||||
startLine: 882
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7929,7 +7929,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HelpBabyBook
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 882
|
||||
startLine: 887
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7956,7 +7956,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: HelpPotty
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 895
|
||||
startLine: 900
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -7983,7 +7983,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ChangeDiaper
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 902
|
||||
startLine: 907
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -8010,7 +8010,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: CleanUpBaby
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 914
|
||||
startLine: 919
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -8037,7 +8037,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: BatheBaby
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 921
|
||||
startLine: 926
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -8064,7 +8064,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: PutInCrib
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 928
|
||||
startLine: 933
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -8091,7 +8091,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskToTakeOutOfCrib
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 935
|
||||
startLine: 940
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -8118,7 +8118,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: AskFood
|
||||
path: ../TinyLife/Actions/ActionType.Social.cs
|
||||
startLine: 949
|
||||
startLine: 954
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
|
|
@ -5,12 +5,10 @@ items:
|
|||
id: Emote
|
||||
parent: TinyLife.Actions
|
||||
children:
|
||||
- TinyLife.Actions.Emote.#ctor(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
|
||||
- TinyLife.Actions.Emote.AllCategories
|
||||
- TinyLife.Actions.Emote.Categories
|
||||
- TinyLife.Actions.Emote.GetEmotes(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
|
||||
langs:
|
||||
- csharp
|
||||
|
@ -47,35 +45,6 @@ items:
|
|||
- System.Object.ToString
|
||||
extensionMethods:
|
||||
- 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
|
||||
commentId: F:TinyLife.Actions.Emote.Texture
|
||||
id: Texture
|
||||
|
@ -94,7 +63,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Texture
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 73
|
||||
startLine: 69
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -123,7 +92,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Categories
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 77
|
||||
startLine: 73
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -134,44 +103,6 @@ items:
|
|||
return:
|
||||
type: TinyLife.Actions.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)
|
||||
commentId: M:TinyLife.Actions.Emote.GetRandomEmote(TinyLife.Actions.EmoteCategory)
|
||||
id: GetRandomEmote(TinyLife.Actions.EmoteCategory)
|
||||
|
@ -190,7 +121,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetRandomEmote
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 94
|
||||
startLine: 85
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -225,7 +156,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: GetEmotes
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 103
|
||||
startLine: 94
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -242,16 +173,16 @@ items:
|
|||
description: A set of all emotes that match the categories
|
||||
content.vb: Public Shared Function GetEmotes(possibleCategories As EmoteCategory) As IEnumerable(Of Emote)
|
||||
overload: TinyLife.Actions.Emote.GetEmotes*
|
||||
- uid: TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote)
|
||||
commentId: M:TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote)
|
||||
id: Register(TinyLife.Actions.Emote)
|
||||
- uid: TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
|
||||
commentId: M:TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
|
||||
id: Register(MLEM.Textures.TextureRegion,TinyLife.Actions.EmoteCategory)
|
||||
parent: TinyLife.Actions.Emote
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Register(Emote)
|
||||
nameWithType: Emote.Register(Emote)
|
||||
fullName: TinyLife.Actions.Emote.Register(TinyLife.Actions.Emote)
|
||||
name: Register(TextureRegion, EmoteCategory)
|
||||
nameWithType: Emote.Register(TextureRegion, EmoteCategory)
|
||||
fullName: TinyLife.Actions.Emote.Register(MLEM.Textures.TextureRegion, TinyLife.Actions.EmoteCategory)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
|
@ -260,19 +191,24 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Register
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 118
|
||||
startLine: 103
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
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: []
|
||||
syntax:
|
||||
content: public static void Register(Emote emote)
|
||||
content: public static Emote Register(TextureRegion texture, EmoteCategory categories)
|
||||
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
|
||||
description: The emote to register
|
||||
content.vb: Public Shared Sub Register(emote As Emote)
|
||||
content.vb: Public Shared Function Register(texture As TextureRegion, categories As EmoteCategory) As Emote
|
||||
overload: TinyLife.Actions.Emote.Register*
|
||||
references:
|
||||
- uid: TinyLife.Objects.Person
|
||||
|
@ -637,30 +573,6 @@ references:
|
|||
- name: .
|
||||
- uid: TinyLife.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
|
||||
commentId: T:MLEM.Textures.TextureRegion
|
||||
parent: MLEM.Textures
|
||||
|
@ -690,14 +602,12 @@ references:
|
|||
- uid: MLEM.Textures
|
||||
name: Textures
|
||||
isExternal: true
|
||||
- uid: TinyLife.Actions.Emote.#ctor*
|
||||
commentId: Overload:TinyLife.Actions.Emote.#ctor
|
||||
name: Emote
|
||||
nameWithType: Emote.Emote
|
||||
fullName: TinyLife.Actions.Emote.Emote
|
||||
nameWithType.vb: Emote.New
|
||||
fullName.vb: TinyLife.Actions.Emote.New
|
||||
name.vb: New
|
||||
- uid: TinyLife.Actions.EmoteCategory
|
||||
commentId: T:TinyLife.Actions.EmoteCategory
|
||||
parent: TinyLife.Actions
|
||||
name: EmoteCategory
|
||||
nameWithType: EmoteCategory
|
||||
fullName: TinyLife.Actions.EmoteCategory
|
||||
- uid: TinyLife.Actions.Emote.GetRandomEmote*
|
||||
commentId: Overload:TinyLife.Actions.Emote.GetRandomEmote
|
||||
name: GetRandomEmote
|
||||
|
|
|
@ -5,9 +5,12 @@ items:
|
|||
id: EmoteCategory
|
||||
parent: TinyLife.Actions
|
||||
children:
|
||||
- TinyLife.Actions.EmoteCategory.Emotion
|
||||
- TinyLife.Actions.EmoteCategory.Flirty
|
||||
- TinyLife.Actions.EmoteCategory.Food
|
||||
- TinyLife.Actions.EmoteCategory.General
|
||||
- TinyLife.Actions.EmoteCategory.Negative
|
||||
- TinyLife.Actions.EmoteCategory.Object
|
||||
- TinyLife.Actions.EmoteCategory.Travel
|
||||
- TinyLife.Actions.EmoteCategory.Unable
|
||||
langs:
|
||||
|
@ -24,7 +27,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: EmoteCategory
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 135
|
||||
startLine: 114
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
|
@ -63,12 +66,10 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: General
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 141
|
||||
startLine: 118
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nAn emote category that represents emotes for general conversations\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: General = 1
|
||||
return:
|
||||
|
@ -91,12 +92,10 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Travel
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 145
|
||||
startLine: 119
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nAn emote category that represents travel-related emotes\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: Travel = 2
|
||||
return:
|
||||
|
@ -119,12 +118,10 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Negative
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 149
|
||||
startLine: 120
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nAn emote category that represents negative emotes\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: Negative = 4
|
||||
return:
|
||||
|
@ -147,12 +144,10 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Flirty
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 153
|
||||
startLine: 121
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nAn emote category that represents sex related or suggestive emotes\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: Flirty = 8
|
||||
return:
|
||||
|
@ -175,16 +170,92 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Unable
|
||||
path: ../TinyLife/Actions/Emote.cs
|
||||
startLine: 157
|
||||
startLine: 122
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Actions
|
||||
summary: "\nAn emote category that represents emotes that represent confusion or inability to do something\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: Unable = 16
|
||||
return:
|
||||
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:
|
||||
- uid: TinyLife.Actions.Emote
|
||||
commentId: T:TinyLife.Actions.Emote
|
||||
|
|
|
@ -723,7 +723,7 @@ items:
|
|||
assemblies:
|
||||
- Tiny Life
|
||||
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'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's daily tasks make up 25% of the performance gained the next day.\n"
|
||||
example: []
|
||||
syntax:
|
||||
content: public float DailyTaskImportance { get; init; }
|
||||
|
|
|
@ -6,6 +6,7 @@ items:
|
|||
parent: TinyLife.Goals
|
||||
children:
|
||||
- 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.ConstructedType
|
||||
- TinyLife.Goals.MemoryType.FamilySocial
|
||||
|
@ -396,6 +397,33 @@ items:
|
|||
return:
|
||||
type: TinyLife.Goals.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
|
||||
commentId: F:TinyLife.Goals.MemoryType.HadAbortion
|
||||
id: HadAbortion
|
||||
|
|
|
@ -30,7 +30,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ModInfo
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 164
|
||||
startLine: 166
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -70,7 +70,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Id
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 169
|
||||
startLine: 171
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -99,7 +99,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Mod
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 173
|
||||
startLine: 175
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -128,7 +128,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Logger
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 178
|
||||
startLine: 180
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -157,7 +157,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Content
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 183
|
||||
startLine: 185
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -186,7 +186,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Harmony
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 188
|
||||
startLine: 190
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -215,7 +215,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: OptionsFile
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 192
|
||||
startLine: 194
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -244,7 +244,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Finalize
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 209
|
||||
startLine: 211
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -274,7 +274,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: Dispose
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 214
|
||||
startLine: 216
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -303,7 +303,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: ToString
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 221
|
||||
startLine: 223
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -333,7 +333,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: SaveOptions
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 240
|
||||
startLine: 242
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
@ -371,7 +371,7 @@ items:
|
|||
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
||||
id: LoadOptions
|
||||
path: ../TinyLife/Mods/ModLoader.cs
|
||||
startLine: 258
|
||||
startLine: 260
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife.Mods
|
||||
|
|
Loading…
Reference in a new issue