DOC: Readme
parent
197d88eeb3
commit
b91356766d
|
@ -1,7 +1,9 @@
|
|||
# Old School Essentials System for Foundry VTT
|
||||
# Old School Essentials System for Foundry VTT (Unofficial)
|
||||
All the features you need to play Old School Essentials or B/X Games in Foundry VTT.
|
||||
|
||||
## Installation
|
||||
You can now find this Foundry VTT game system within Foundry VTT in the system browser.
|
||||
You can find this Foundry VTT game system within Foundry VTT in the system browser. You could also download the latest archive in the package folder, or use the manifest link below.\
|
||||
https://gitlab.com/mesfoliesludiques/foundryvtt-ose/-/raw/master/src/system.json
|
||||
|
||||
## License
|
||||
This Foundry VTT system requires Old-School Essentials Core Rules that you can find [here](https://necroticgnome.com).
|
||||
|
@ -11,7 +13,7 @@ Old-School Essentials is a trademark of Necrotic Gnome.\
|
|||
The trademark and Old-School Essentials logo are used with permission of Necrotic Gnome, under license.
|
||||
|
||||
## Contributions
|
||||
This system is currently in Beta.
|
||||
Any feedback is deeply appreciated. Please issue [tickets](https://gitlab.com/mesfoliesludiques/foundryvtt-ose/-/boards).\
|
||||
Feel free to grab a TO DO issue from the gitlab board. You can then do a merge request on the `development` branch.
|
||||
|
||||
[](https://ko-fi.com/H2H21WMKA)
|
|
@ -172,7 +172,7 @@ export class OseItem extends Item {
|
|||
case "ability":
|
||||
let roll = "";
|
||||
roll += data.roll ? data.roll : "";
|
||||
roll += data.rollType ? CONFIG.OSE.roll_type[data.rollType] : "";
|
||||
roll += data.rollTarget ? CONFIG.OSE.roll_type[data.rollType] : "";
|
||||
roll += data.rollTarget ? data.rollTarget : "";
|
||||
return `${formatTag(data.requirements)}${formatTag(roll)}`;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue