This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pools": [ <lootpool> ... ] // Every pool is queried by the table the number of times specified in "rolls" | |
} | |
------------- | |
<lootpool> == { | |
"name": <autogenerated for vanilla pools | table-unique name for this pool> | |
"conditions": [ <lootcondition> ... ], | |
"rolls": <randomvaluerange> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//<script> | |
function clearBlock(el) { | |
const node = el.parentElement.parentElement; | |
node.innerHTML = ''; | |
return node; | |
} | |
const SELECTOR = 'code:not([super-embed-seen])'; | |
function setupEmbeds() { |