last updated: 4-28-2022T19:47.69Z
id | name | alignment | disabled? | new? | description |
---|---|---|---|---|---|
1 | Armorer | town | false | false | Each night, may give out a @{item:Vest} |
2 | Revenant | town | false | false | If attempted to be killed, will bleed for a day before dying |
3 | Luckyguard | town | false | false | Each night, may visit and protect a player from a night kill --- --- If the player is protected successfully, either the Luckyguard or the killer is killed |
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
// === types === | |
let __ = { | |
any: inp => inp, | |
nat: inp => { | |
if (typeof inp === 'function') | |
return inp(x=>x+1)(0); | |
if (typeof inp === 'string') | |
return __.nat(Number(inp)) | |
if (typeof inp === 'number' && |
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
;;; tmuxmicro.el --- Keybinds ported from a tmux/micro setup. -*- coding: utf-8; -*- | |
;; M-x package-install RET undo-tree RET | |
(require 'term) | |
(global-undo-tree-mode 1) | |
(cua-mode t) | |
(setq cua-keep-region-after-copy t) | |
(setq org-support-shift-select t) | |
(setq recording-macro nil) | |
(setq-default truncate-lines t) |
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
{ | |
class Response_sync extends Response { | |
#zzz | |
constructor(...args) { | |
super(...args); | |
this.#zzz = args[0]; | |
} | |
text() { // WASM-safe Response.textd() | |
return this.#zzz; | |
} |