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