add descriptions

This commit is contained in:
flux 2023-04-07 17:17:10 -07:00
parent 82f0e25969
commit 7c94903317
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
3 changed files with 7 additions and 7 deletions

View File

@ -7,5 +7,5 @@
"repo": "https://github.com/fluxionary/minetest-toolcap_monoids.git", "repo": "https://github.com/fluxionary/minetest-toolcap_monoids.git",
"website": "https://github.com/fluxionary/minetest-toolcap_monoids", "website": "https://github.com/fluxionary/minetest-toolcap_monoids",
"issue_tracker": "https://github.com/fluxionary/minetest-toolcap_monoids/issues", "issue_tracker": "https://github.com/fluxionary/minetest-toolcap_monoids/issues",
"short_description": "TODO: write a description" "short_description": "an API to allow multiple sources to apply changes to a tools's capabilities."
} }

View File

@ -1,23 +1,23 @@
# toolcap_monoids # toolcap_monoids
some standard tool_monoids. an API to allow multiple sources to apply changes to a tools's capabilities.
* `toolcap_monoids.full_punch` ### `toolcap_monoids.full_punch`
modifies the "full punch" interval. multiplicative. values > 1 will increase time between full punches, modifies the "full punch" interval. multiplicative. values > 1 will increase time between full punches,
< 1 will decrease the same. < 1 will decrease the same.
* `toolcap_monoids.dig_speed` ### `toolcap_monoids.dig_speed`
modifies dig times. multiplicative. values > 1 will increase dig time, < 1 will decrease dig time. modifies dig times. multiplicative. values > 1 will increase dig time, < 1 will decrease dig time.
values can also be tables mapping specific groupcaps to specific multipliers. values can also be tables mapping specific groupcaps to specific multipliers.
* `toolcap_monoids.durability` ### `toolcap_monoids.durability`
modifies tool uses. multiplicative. values > 1 will increase durability, < 1 will decrease durability. modifies tool uses. multiplicative. values > 1 will increase durability, < 1 will decrease durability.
values can also be tables mapping specific groupcaps to specific multipliers. values can also be tables mapping specific groupcaps to specific multipliers.
* `toolcap_monoids.damage` ### `toolcap_monoids.damage`
modifies tool damage groups. *additive*, not multiplicative. modifies tool damage groups. *additive*, not multiplicative.
values must be tables mapping damage groups to the increase (or decrease) in damage for that group. values must be tables mapping damage groups to the increase (or decrease) in damage for that group.

View File

@ -1,6 +1,6 @@
name = toolcap_monoids name = toolcap_monoids
title = toolcap_monoids title = toolcap_monoids
description = TODO: write a description description = an API to allow multiple sources to apply changes to a tools's capabilities.
website = https://content.minetest.net/packages/rheo/toolcap_monoids/ website = https://content.minetest.net/packages/rheo/toolcap_monoids/
author = flux author = flux
license = AGPL-3.0-or-later license = AGPL-3.0-or-later