mirror of
https://gitlab.com/EternalWanderer/sheet-parser.git
synced 2024-11-28 21:13:51 +01:00
Dangling
This commit is contained in:
parent
105843f53f
commit
dbb4a164c5
|
@ -30,8 +30,8 @@ func handleError(err error) {
|
|||
}
|
||||
}
|
||||
|
||||
func readJson() {
|
||||
envPath, isSet := os.LookupEnv("CHARSHEET")
|
||||
func ReadJson(envVar string) {
|
||||
envPath, isSet := os.LookupEnv(envVar)
|
||||
switch {
|
||||
case len(pathFlag) > 0:
|
||||
path = pathFlag
|
||||
|
@ -142,7 +142,7 @@ func savingThrow(stat Stat) (int, int, error) {
|
|||
return die + GetModifier(stat), plainDie, statErrorCheck()
|
||||
}
|
||||
|
||||
func skillCheck(skill Skill) (int, int, error) {
|
||||
func SkillCheck(skill Skill) (int, int, error) {
|
||||
die := rollDice()
|
||||
if char.Misc.ReliableTalent && skill.Proficient && die < 10 {
|
||||
die = 10
|
||||
|
@ -162,7 +162,7 @@ func skillCheck(skill Skill) (int, int, error) {
|
|||
return die, plainDie, skillErrorCheck()
|
||||
}
|
||||
|
||||
func printStatList(verbose bool) {
|
||||
func PrintStatList(verbose bool) {
|
||||
color.Magenta("Listing stats...")
|
||||
if verbose {
|
||||
var proficiency string
|
||||
|
@ -184,7 +184,7 @@ func printStatList(verbose bool) {
|
|||
}
|
||||
}
|
||||
|
||||
func printSkillList(verbose bool) {
|
||||
func PrintSkillList(verbose bool) {
|
||||
color.Magenta("Listing skills...")
|
||||
var proficiency string
|
||||
var expertise string
|
||||
|
|
3
main.go
3
main.go
|
@ -11,6 +11,7 @@ import (
|
|||
|
||||
"github.com/fatih/color"
|
||||
"gitlab.com/EternalWanderer/dice-roller/Dice"
|
||||
"gitlab.com/EternalWanderer/sheet-parser/v2/Parser"
|
||||
)
|
||||
|
||||
const exampleFile string = "/etc/sheet-parser/example.json"
|
||||
|
@ -88,7 +89,7 @@ func initMaps() {
|
|||
|
||||
func main() {
|
||||
parseFlags()
|
||||
readJson()
|
||||
char := Parser.ReadJson("CHARSHEET")
|
||||
initMaps()
|
||||
|
||||
switch {
|
||||
|
|
Loading…
Reference in a new issue