rename /rpg-docs to /app

This commit is contained in:
Andrew Zhu
2018-06-07 01:07:49 -07:00
parent de93636c7c
commit c099e3173b
420 changed files with 12 additions and 25 deletions

View File

@@ -0,0 +1,17 @@
var hints = [
"Drag and drop items to move them between containers.",
"Hold Ctrl while dragging items around to only move some of them.",
"Magic items are considered priceless, don't give them a gold value.",
"You can use formulae in {curly brackets} in any field with a {} icon.",
"You can disable the 'Spells' tab from the charecter menu in the top right.",
"You can share your character with others from the menu in the top right.",
"Your spells, features, and items are ordered by their colour, which you can set with the paint bucket.",
"You can only have three magic items attuned to you at once. Choose carefully!",
"Click the '+' underneath 'Hit Points' to add additional health bars for temporary HP, wild shapes, familiars and more.",
];
Template.loading.helpers({
randomHint: function(){
return Random.choice(hints);
}
});