
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@opendnd/genetica
Advanced tools
This is a tool for using a simplified genetics system to generate inheritable traits for DnD characters.
Genetica is a tool for using a simplified genetics system to generate inheritable traits for DnD characters.
You will need node and npm installed. Then run the command:
npm install -g genetica
genetica
Follow the prompts for Race and Gender (optional) and your DNA is outputted with information on traits.
Require genetica into your file and create a new Genetica class.
const Genetica = require('genetica');
const genetica = new Genetica();
const opts = {
gender: 'female',
race: 'Dragonborn'
};
const DNA = genetica.generate(opts);
Each generated character has a set of DNA with chromosomes. These chromosomes go to applying traits.
Each chromosome has two pairs with dice rolls based on the size of the chromosome: either d2, d4, d6, d8, d12, d20, or d100. So for example, Chromosome 1 has a size of d8 and the pair rolls for 5=8 which means the mother gave a roll of 5 and the father gave a roll of 8.
Rules
3 means if 3 is the highest rolled then the trait applies. For example: a chromosome pair of 1=3 would mean the rule applies as 3 is the highest roll, but for a pair of 8=3 it would not.1=3 means that the roll for the mother must be 1 and the father must be 3 in that order. A 3=1 would not apply the rule. This rule is checked BEFORE the dominant/recessive rules.Inspiration: http://www.chromosomewalk.ch/en/list-of-chromosomes/
To develop genetica,
git clone https://github.com/opendnd/genetica.git
cd genetica/
npm install
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are welcome!
Genetica uses the Airbnb javascript style.
FAQs
This is a tool for using a simplified genetics system to generate inheritable traits for DnD characters.
We found that @opendnd/genetica demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.