* Rebalance the max programs that a PDA can hold
* Give Caps PDA more programs too.
* Make the max programs a static 8
* I forgor sec and med
* CaseCase
* Empty commit to re-run checks
* The final change, I hope.
(cherry picked from commit a08da9d31f1f1c63f5124edff5a23d5443659bfc)
* WantedListCartridge has been added
* WantedListCartridge user interface works
* WantedListCartridge is added as standard in some PDAs
* The CriminalRecordsSystem can now also take into account who created the record
* Added offense history table
* Fix of missing loaderUid for a cartridge without installing the program
* Added personalized information about the target
* The crime history has been finalized
* Added StatusList
* The officer's name has been added to the automatic history
* WantedListCartridge has been added to the HOS locker
* WantedListCartridge has been removed from brigmedic's preset programs
* The StealConditionSystem now takes into account whether a cartridge is inserted or installed
* Added target to thief on WantedListCartridge
* Merge fix
* Removing copypaste
* Fix merge 2
* The sprite of WantedListCartridge has been changed
* Update pda.yml
* Fix scrollbar in the history table
* Upstream localization fix
* `StatusList` has been replaced by `ListContainer` with `TextureRect`
* Margin fix
(cherry picked from commit 1468cbdb8a59beb2dfc9188a3108157496549a57)
* Localization of steal targets
* Correction of localization of theft objects
* The second correction of the localization of theft targets
* Update steal-target-groups.ftl
Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
* Revision of the localization method
* Choosing a simple option for localization
* Fix TechnologyDisk name
* Corrections based on feedback received
* correction of declension
---------
Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
(cherry picked from commit ccc5f61584b4017c315cb3df1178eb8a4e391194)
* fixed cartridges installing more than once
* replaced prototypes with CartridgeComponent
* relocated checks from InstallProgram to InstallCartridge
(cherry picked from commit fc40cd79fb1e4a9890b6b7eba3ab707ddbd35bf6)
* Insert when held item has no interaction with stored item
* Decouple inserting on failure
* Add component that stores the used entity when no interaction happened
* Add prediction
(cherry picked from commit 2f77d0d4f380ab50c4b66dd2349949c0da184809)
* tweak(geras): Add a confirmation popup for gera transformation
* remove abstract parent
(cherry picked from commit 4a9bd17a86be792955e88847d8c6e589e00a469b)
* Give the chef access to fiber bags
* Update Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml
---------
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
(cherry picked from commit 85da2351c811f794709e89b9b3947b095f353d03)
* A looooooooot of new cotton foods for the moffs
* address slam's comments on the food for moffs not having any moff food in the food (the food that's intended for moffs)
* alternative sprites for bagel-cottondough.png, baguette-cotton.png, and croissant-cotton.png
* update requested sprites
* change requested sprites
* address part of sloth's review, awaiting response
* address second half of review, fix magical food nutriment mitosis bug
(cherry picked from commit e07609b3b3109604b664ec62d6712334ec2fbc97)
* Nacho recipes, nutrition, and trash
In meal_recipes.yml: Add recipes for Nachos, Cheesy Nachos, and Cuban Nachos.
In meals.yml: Add a solutions container to regular nachos so it lines up with the others, and add a small plate as trash to each one.
* Volumes, nutritional tweaks, and flavor
In meals.yml: Lowered maxVol on nachos to leave 5 units of space. Nachos nutriment and vitamin lowered for costing so little. A cheese wedge is 3.75 nutriment, so cheesy having 4 more total nutritional value lines up nicely to me.
Cuban nachos had too little volume to fit its reagents in the first place, so increased maxVol by 10. Chili peppers are 4 nutri / 4 vitamin and ketchup has a touch of tomato, so bumped to 8 and 5. Capsaicin lowered partly to make it an even 20u. Ketchup dilutes I guess. Also they don't have cheese so I changed the flavor profile to tomato instead.
In meal_recipes.yml: Cuban Nachos recipe tweaked to require one less pepper. Given above numbers, this fits the nutritional value imo.
(cherry picked from commit e50c98c6188c9e23df5227e2828fc27df74108fa)
* Add meat tag to Five Alarm Burger
* Revert "Add meat tag to Five Alarm Burger"
This reverts commit e483b5effe63a8cbdcce81eeddc622f5555ae240.
* Re-add tag, but in notepad
* Move tag down to follow hierarchy
---------
Co-authored-by: LevitatingTree <None>
(cherry picked from commit b46f487503b15e79a2f1c324a5aad2b431a7c822)
* Add a festive lemon-lime soda variant: cranberry!
* Gave lemon-lime a brand name
* Make the CrateFoodSoftdrinksLarge slightly larger to accomodate the extra drinks.
* Extend the Christmas anomaly with extra jolliness
* Minor spelling mistake. Jollyness will not be denied.
* Removed redundant delay from meta file
(cherry picked from commit c33d3350bd99eeaeee1f32342ad1dfb98221b716)
Instead of each mutation being a flag that gets checked at some unique point in BotanySystem somewhere, they're now EntityEffects that get applied when the mutation occurs and when produce is harvested. One new list was added to SeedData so that multiple other fields could be removed.
All the non-stat-change mutations that have been rolled are added to the Mutations list, and get applied to the plant when the mutation occurs or when a seed with the mutation is planted. Produce get mutations applied at harvest if they apply to the produce, and carry all of the plant's mutations over as a seed. This gets rid of the one-off checks for things like Slippery, Bioluminescent, Sentient, etc.
The base odds of a mutation applying should be equal to the odds of the original mutation check. It pretended to have 1 bit flip (on averge) per mutation power, and odds of each mutation was the odds of one of its bit being flipped (1 /275 * bits). The 'thermometer code' applied for numbers will be replaced with simple random rolls, as both average out to the middle value. The new checks are much easier to understand and don't obfuscate the actual changes of something happening behind 3 layers of math. The biggest player-facing change is that Potency will be able to get over 65 significantly more often than it did in the previous system, but it will be just as common to get low values as high ones.
Mutation definitions have been moved to a .yml file. These include the odds per tick per mutagen strength of that mutation applying that tick, the effect applied, if it applies to the plant and/or its produce. This makes mutations simpler to add and edit.
This PR is limited specifically to the mutation logic. Improving other aspects of the system will be done in other PRs per the design document. Mutations was chosen first because its got the largest amount of one-off checks scattered all over that could be consolidated. Once this is merged, mutations could be contributed to the codebase with minimal extra work for later botany refactor PRs.
(cherry picked from commit 1dec19cc052dd22c73cc25dc92b3d0a918ef13fd)
* First round of anomaly core functionalities added
* Added sliceTime to anom meat mass and cooked version
* Adds SmokeOnUse component, system and shared system, adds new functions to inert electrical anom core
* Added more functions
* Final touches to branch
* Cleaning up some of the metadata for sprites and component definitions
* PR_Changes_v2_rev.0_Final_FINALFORREALTHISTIME.yml
* Lol jk these goddamn tests why me
* Quick updates based on feedback
* more changes to improve
* additional fixes and edits
* Changed tech core functionality
* added magboot functionality to grav core
* fixed issue with bluespace core sizing
* Reverting changes per request
* extra file to be deleted
* File cleanup
* Update chemicals.ftl
* Update cores.yml
* Update cores.yml
* Update meta.json
* Update chemicals.yml
* Update Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml
Co-authored-by: chromiumboy <50505512+chromiumboy@users.noreply.github.com>
* Update meal_recipes.yml
* Update cores.yml
---------
Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com>
Co-authored-by: chromiumboy <50505512+chromiumboy@users.noreply.github.com>
(cherry picked from commit bd2d0ee5e593606da094804f5822cf740a1f1084)
* make flare recipe roundstart instead of blueprint
* migrate it
---------
Co-authored-by: deltanedas <@deltanedas:kde.org>
(cherry picked from commit 9b9853439c28e466bee4ee595fab4427938bc14b)
* Adds salvage magnet board to lathe as default recipe, changes board sprite to supply sprite
* Adds the salvage magnet board to the QM's locker, science cannot be trusted and never should be
* my body is a machine that turns commits pushed to the wrong branch into machinations on git
---------
Co-authored-by: PJBot <pieterjan.briers+bot@gmail.com>
(cherry picked from commit b306afbf566ddf990bbb69eb4cdd3092822a9a50)
* clean up electronics lathe recipes
* result
* make door and firelock cheap
* engin
---------
Co-authored-by: deltanedas <@deltanedas:kde.org>
(cherry picked from commit 3f6846b8b294649467215bd35e7bf72f8b1b9ce0)