This module provides a new content type called dnd_character to allow users to store their player characters for Dungeons and Dragons. This is a Features package which contains the fields and content type needed to manage the character.
This module is not a character generator, and does not (currently) enforce many of the rules. It is merely a record-keeping utility at this point. Future plans are to impose SRD rules and provide a way to add house rules, but this isn't currently available.
This project also contains two additional modules: D&D Fields and D&D Character Sheet.
Vote defines a new entity type (vote). Votes can be cast on ANY entity type that "your drupal" knows (even on "vote" itself).
Vote provides "functions" and "voting types":
A function basically provides a handler which defines how and where a function stores its result values. Each function can have its own db table to store the results in order to allow more complex functions to break the INTEGER barrier which the default result table uses for its results.
A voting type basically combines a group of functions. For example a voting type "percent" would combine the functions "average" and "count" while "points" would also use the "sum" function.
Voting types and functions both use a set of classes as handlers to provide custom option forms and advanced (and individual) functionality for each function / voting type. The functions handler -for example- makes it possible to store function result values in seperate db tables with different table structures.
Taxonomy dupecheck module prevents Drupal administrators from adding duplicate taxonomy vocabularies and/or terms. It's helpful when entering large amounts of terms or vocabularies in situations where each value must be unique. This saves time by preventing administrators from having to enforce a unique value policy through later cleanup of duplicate terms.