mythal 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +13 -0
- data/lib/mythal.rb +11 -1
- data/lib/mythal/npc.rb +74 -0
- data/lib/mythal/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93df7b88edfe676136d9a561cb269b7022802dd8
|
4
|
+
data.tar.gz: 1a2c4e411edeb7bf665c70634c09d14e876f605f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 164157372e5163be879f270d064565fb7c5294ce03889e50dc49327cece0a5575651505cb338e31e855016a97c969eaf5f4c356390c7f6b17efa836f578b4957
|
7
|
+
data.tar.gz: 0be663be40c9c0cc936c2a4db483f00b49d4571f3fe30ae29dbdbd53eabd427783680078049cc3446815f6ebc944aeb4dc634c6c65d221a57219f7ee5fddb173
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Mythal
|
2
|
+

|
2
3
|
|
3
4
|
## Installation
|
4
5
|
|
@@ -16,6 +17,18 @@ Or install it yourself as:
|
|
16
17
|
|
17
18
|
$ gem install mythal
|
18
19
|
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
## Development
|
23
|
+
|
24
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
25
|
+
|
26
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
27
|
+
|
28
|
+
## Contributing
|
29
|
+
|
30
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Inglorion-G/mythal.
|
31
|
+
|
19
32
|
## License
|
20
33
|
|
21
34
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/mythal.rb
CHANGED
@@ -1,13 +1,23 @@
|
|
1
|
-
require "mythal"
|
1
|
+
# require "mythal"
|
2
2
|
require "thor"
|
3
3
|
require "procto"
|
4
|
+
require "mythal/version"
|
4
5
|
require "mythal/roll"
|
6
|
+
require "mythal/npc"
|
5
7
|
|
6
8
|
module Mythal
|
7
9
|
class CLI < Thor
|
10
|
+
|
8
11
|
desc "roll", "roll some number of dice, plus modifiers e.g. 1d20, or 3d8 + 4"
|
12
|
+
|
9
13
|
def roll(*args)
|
10
14
|
puts Mythal::Roll.call(*args)
|
11
15
|
end
|
16
|
+
|
17
|
+
desc "npc", "generate a random npc, e.g. 'a half-orc barbarian'"
|
18
|
+
|
19
|
+
def npc
|
20
|
+
puts Mythal::Npc.call
|
21
|
+
end
|
12
22
|
end
|
13
23
|
end
|
data/lib/mythal/npc.rb
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
module Mythal
|
2
|
+
class Npc
|
3
|
+
include Procto.call
|
4
|
+
|
5
|
+
def call
|
6
|
+
character_description
|
7
|
+
end
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def character_description
|
12
|
+
trait + " " + race + " " + dnd_class
|
13
|
+
end
|
14
|
+
|
15
|
+
def trait
|
16
|
+
[
|
17
|
+
"bombastic",
|
18
|
+
"scrappy",
|
19
|
+
"nimble",
|
20
|
+
"argumentative",
|
21
|
+
"grumpy",
|
22
|
+
"drunk",
|
23
|
+
"overly friendly",
|
24
|
+
"touchy",
|
25
|
+
"flirtatious",
|
26
|
+
"ponderous",
|
27
|
+
"inquisitive",
|
28
|
+
"skeptical",
|
29
|
+
"ruminating",
|
30
|
+
"articulate",
|
31
|
+
"ejaculatory (in terms of sound)",
|
32
|
+
"timid",
|
33
|
+
"bold",
|
34
|
+
"dubious",
|
35
|
+
"overly sympathetic",
|
36
|
+
"boorish",
|
37
|
+
"feckless",
|
38
|
+
"nefarious",
|
39
|
+
"honorable",
|
40
|
+
"spasmodic",
|
41
|
+
].sample
|
42
|
+
end
|
43
|
+
|
44
|
+
def race
|
45
|
+
[
|
46
|
+
"orc",
|
47
|
+
"half-orc",
|
48
|
+
"human",
|
49
|
+
"elf",
|
50
|
+
"half-elf",
|
51
|
+
"halfling",
|
52
|
+
"dragonborn",
|
53
|
+
"tiefling",
|
54
|
+
"dwarf",
|
55
|
+
"gnome",
|
56
|
+
].sample
|
57
|
+
end
|
58
|
+
|
59
|
+
def dnd_class
|
60
|
+
[
|
61
|
+
"fighter",
|
62
|
+
"rogue",
|
63
|
+
"wizard",
|
64
|
+
"sorceror",
|
65
|
+
"druid",
|
66
|
+
"cleric",
|
67
|
+
"bard",
|
68
|
+
"monk",
|
69
|
+
"warlock",
|
70
|
+
"paladin",
|
71
|
+
].sample
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
data/lib/mythal/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mythal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Groh
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -113,6 +113,7 @@ files:
|
|
113
113
|
- bin/setup
|
114
114
|
- exe/mythal
|
115
115
|
- lib/mythal.rb
|
116
|
+
- lib/mythal/npc.rb
|
116
117
|
- lib/mythal/roll.rb
|
117
118
|
- lib/mythal/version.rb
|
118
119
|
- mythal.gemspec
|