Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.5 KB

Home.md

File metadata and controls

58 lines (49 loc) · 1.5 KB

TTRPG Vault

[!info] Main Goals - [[Home]]

  • Start session 01 :)

^maingoals


Sessions

TABLE level as "Level", startLocation as "Start Location", endLocation as "End Location", date as "Date"
WHERE econtains(tags, "session") and !econtains(tags, "template") and date != "{{date}}"
SORT date desc
LIMIT 5

^sessiontable

Players

TABLE player as "Player", playerPronouns as "Player Pronouns", ancestry as "Ancestry", class as "Class", charaPronouns as "Character Pronouns"
WHERE econtains(tags, "pc") and !econtains(tags, "template") and name != "{{title}}"
SORT name asc

^playertable

NPCs

TABLE ancestry as "Ancestry", location as "Location", alignment as "Alignment", status as "Status", items as "Items"
WHERE econtains(tags, "npc") and !econtains(tags, "template") and name != "{{title}}"
SORT location asc, name asc

^npctable

Locations

TABLE tags[1] as "Type", locatedIn as "Location"
WHERE econtains(tags, "location") and !econtains(tags, "template") and name != "{{title}}"
SORT tags.location asc

^locationtable

Factions

TABLE leader as "Leader", locatedIn as "Location"
WHERE econtains(tags, "faction") and !econtains(tags, "template") and name != "{{title}}"
SORT locatedIn asc, file asc

^factiontable


Items

TABLE rarity as "Rarity", price as "Price", locatedIn as "Location"
WHERE econtains(tags, "item") and !econtains(tags, "template") and name != "{{title}}"
SORT location asc, price asc