NAME ==== Game::Covid19 - Play the COVID-19 game SYNOPSIS ======== ```raku use Game::Covid::19; play(age => 64); # must specify age play(age => 34, :mask, :distancing); ``` DESCRIPTION =========== Game::Covid19 is an implementation of a DND-type game that is based on CDC data and was posted by Stephen Richard Watson at: https://www.facebook.com/photo.php?fbid=10163856786525537&set=gm.1155683021483491&type=3&theater It exports a single sub called `play`. SUBROUTINES =========== play ---- play(age => 64); The `play` subroutine will play the game. You need to at least specify the `age` named parameter. It will return your final constitution, with `0` indicating death. The following named parameters are optional: * constitution constitution => 80, A value of 1..100 indicating the state of your constitution, with `100` indicating fully healthy. Defaults to `100`. * mask :mask A Boolean indicating whether or not you're wearing a mask. Defaults to `False`. * distancing :distancing A Boolean indicating whether or not you're socially distancing. Defaults to `False`. * verbose :!verbose A Boolean indicating whether verbose play output is wanted. Defaults to `True`. AUTHOR ====== Elizabeth Mattijsen Source can be located at: https://github.com/lizmat/Game-Covid19 . Comments and Pull Requests are welcome. COPYRIGHT AND LICENSE ===================== Copyright 2020 Elizabeth Mattijsen This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.