Skip to content

Commit

Permalink
Do a pass over text content for official wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyorl committed Jan 29, 2024
1 parent 9330af7 commit d2c40e8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
![](https://github.com/foundryvtt/dnd5e/blob/v10-dev/media/repo-dnd5e.jpg?raw=true)

# Foundry Virtual Tabletop - DnD5e Game System
# Foundry Virtual Tabletop - D&D Fifth Edition Game System

This game system for [Foundry Virtual Tabletop](http://foundryvtt.com) provides character sheet and game system
support for the Fifth Edition of the world's most popular roleplaying game.

This system provides character sheet support for Actors and Items, mechanical support for dice and rules necessary to
play games of 5th Edition, and compendium content for Monsters, Heroes, Items, Spells, Class Features, Monster
play games of Fifth Edition, and compendium content for Monsters, Heroes, Items, Spells, Class Features, Monster
Features, and more!

This work includes material taken from the System Reference Document 5.1 ("SRD 5.1") by Wizards of the Coast LLC and available at https://dnd.wizards.com/resources/systems-reference-document. The SRD 5.1 is licensed under the Creative Commons Attribution 4.0 International License available at https://creativecommons.org/licenses/by/4.0/legalcode.
Expand All @@ -17,7 +17,7 @@ The software component of this system is distributed under the MIT license.

## Installation Instructions

To install and use the DnD5e system for Foundry Virtual Tabletop, simply paste the following URL into the
To install and use the D&D fifth edition system for Foundry Virtual Tabletop, simply paste the following URL into the
**Install System** dialog on the Setup menu of the application.

https://raw.githubusercontent.com/foundryvtt/dnd5e/master/system.json
Expand Down
4 changes: 2 additions & 2 deletions dnd5e.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* The DnD5e game system for Foundry Virtual Tabletop
* The D&D fifth edition game system for Foundry Virtual Tabletop
* A system for playing the fifth edition of the world's most popular role-playing game.
* Author: Atropos
* Software License: MIT
Expand Down Expand Up @@ -46,7 +46,7 @@ globalThis.dnd5e = {

Hooks.once("init", function() {
globalThis.dnd5e = game.dnd5e = Object.assign(game.system, globalThis.dnd5e);
console.log(`DnD5e | Initializing the DnD5e Game System - Version ${dnd5e.version}\n${DND5E.ASCII}`);
console.log(`D&D 5e | Initializing the D&D Fifth Game System - Version ${dnd5e.version}\n${DND5E.ASCII}`);

// TODO: Remove when v11 support is dropped.
CONFIG.compatibility.excludePatterns.push(/Math\.clamped/);
Expand Down
8 changes: 4 additions & 4 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"TYPES.Item.weapon": "Weapon",
"TYPES.Item.weaponPl": "Weapons",

"DND5E.title": "DnD5e Game System",
"DND5E.title": "D&D Fifth Edition Game System",
"DND5E.AbbreviationCR": "CR",
"DND5E.AbbreviationConc": "Conc.",
"DND5E.AbbreviationDC": "DC",
Expand Down Expand Up @@ -1613,9 +1613,9 @@
"MACRO.5eNoActorSelected": "No selected or assigned actor could be found to target with macro.",
"MACRO.5eUnownedWarn": "You can only create macro buttons for owned Items",

"MIGRATION.5eBegin": "Applying DnD5E System Migration for version {version}. Please be patient and do not close your game or shut down your server.",
"MIGRATION.5eComplete": "DnD5E System Migration to version {version} completed!",
"MIGRATION.5eVersionTooOldWarning": "Your DnD5e system data is from too old a Foundry version and cannot be reliably migrated to the latest version. The process will be attempted, but errors may occur.",
"MIGRATION.5eBegin": "Applying D&D 5e System Migration for version {version}. Please be patient and do not close your game or shut down your server.",
"MIGRATION.5eComplete": "D&D 5e System Migration to version {version} completed!",
"MIGRATION.5eVersionTooOldWarning": "Your D&D 5e system data is from too old a Foundry version and cannot be reliably migrated to the latest version. The process will be attempted, but errors may occur.",

"SETTINGS.5eAllowPolymorphingL": "Allow players to polymorph their own actors.",
"SETTINGS.5eAllowPolymorphingN": "Allow Polymorphing",
Expand Down
2 changes: 1 addition & 1 deletion module/enrichers.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ async function rollAction(event) {
options.ability = ability;
return await actor.rollToolCheck(tool, options);
default:
return console.warn(`DnD5e | Unknown roll type ${type} provided.`);
return console.warn(`D&D 5e | Unknown roll type ${type} provided.`);
}
} finally {
target.disabled = false;
Expand Down
6 changes: 3 additions & 3 deletions system.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dnd5e",
"title": "DnD5e - Fifth Edition System",
"description": "A system for playing the fifth edition of the worlds most popular role-playing game in the Foundry Virtual Tabletop environment.",
"title": "D&D Fifth Edition System",
"description": "A system for playing the fifth edition of the world's most popular role-playing game in the Foundry Virtual Tabletop environment.",
"version": "3.0.0",
"compatibility": {
"minimum": "11.315",
Expand Down Expand Up @@ -128,7 +128,7 @@
],
"packFolders": [
{
"name": "DnD5e SRD Content",
"name": "D&D 5e SRD Content",
"sorting": "m",
"color": "#cd2c1e",
"packs": [
Expand Down

0 comments on commit d2c40e8

Please sign in to comment.