Correct grammar, tags, procs involving food processing (#74097)

The wording of microwable/grillable/processable outputs now takes into
accounts plurals.

For example, the examine text for an onion slice is now: "The onion
slices can be baked into _some_ onion rings", rather than "an onion
rings".

- Examining microwavable things now uses "can be", rather than "could
be"; the same verb as bakeable and griddlable.
- Processing atoms now uses `plural_s()` rather than just a flat `/s`,
which is unreliable.
- The use of `<b>` tags has been changed to `span_bold()`.
This commit is contained in:
Jack Edge
2023-03-19 18:33:33 -06:00
committed by GitHub
parent 78ee7d7f22
commit 21ba2c10a8
5 changed files with 28 additions and 6 deletions
+4 -1
View File
@@ -92,7 +92,10 @@
if(!current_bake_time) //Not baked yet
if(positive_result)
examine_list += span_notice("[parent] can be <b>baked</b> into \a [initial(bake_result.name)].")
if(initial(bake_result.gender) == PLURAL)
examine_list += span_notice("[parent] can be [span_bold("baked")] into some [initial(bake_result.name)].")
else
examine_list += span_notice("[parent] can be [span_bold("baked")] into \a [initial(bake_result.name)].")
return
if(positive_result)