pfrpg_races 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7fbb6b970e029ab80a95f62a22d090b5463c9613
4
- data.tar.gz: 333b37eef11f62a2631db7390d22e1052ff02429
3
+ metadata.gz: 1c4d455deb95acf9471e00f405bbfa6a0aa950b3
4
+ data.tar.gz: e4494320e793d9141fa14a446e15c90b934e5ab4
5
5
  SHA512:
6
- metadata.gz: 73f656976e9efbb2eb6633d7050e072ba3d1114877d47c561823dd6f0c8b2066e8229d12801bd1296d1b775ea16f313d7070afdd06071ab1e2fc8299cef5734e
7
- data.tar.gz: 9b697f6ff4f7328a1cb95f2c4964b552e13904bc55494df8ca63f5a402d4042e84c03e976ce2a571a878d2fd870133c17dea4fcadd8e366b680a043c4fcfdd56
6
+ metadata.gz: 5f972ad27141e37c1fc6bc98caa581536f0c50c9d177bbff6620a0d216cb8c8445ed53e5b4e68d7bc65b949a0fd80ef324f9d4d2fc07746c2a03ec3320283849
7
+ data.tar.gz: e77b4bf3e7be07c4db29ecaf64677c674fb34788ba376fb627c367ec3f2ed146e140ebc937dc9ea81cf2f61f7139ae1da996f4e529bf70f4271bf2d813f1575f
data/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+ The MIT License (MIT)
2
+ [OSI Approved License]
3
+ The MIT License (MIT)
4
+
5
+ Copyright (c) 2014 HeroSheets, LLC
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
@@ -68,7 +68,7 @@ class PfrpgRaces::Race::Elf < PfrpgRaces::Race
68
68
  :description => "+2 Perception",
69
69
  :effects =>
70
70
  [
71
- PfrpgCore::Effect.new("skill", "perception", 2)
71
+ PfrpgUtility::Effect.new("skill", "perception", 2)
72
72
  ]
73
73
  )
74
74
  ]
@@ -82,7 +82,7 @@ class PfrpgRaces::Race::Gnome < PfrpgRaces::Race
82
82
  :description => "+2 Perception",
83
83
  :effects =>
84
84
  [
85
- PfrpgCore::Effect.new("skill", "perception", 2)
85
+ PfrpgUtility::Effect.new("skill", "perception", 2)
86
86
  ]
87
87
  )
88
88
  ]
@@ -66,7 +66,7 @@ class PfrpgRaces::Race::HalfElf < PfrpgRaces::Race
66
66
  :description => "+2 Perception",
67
67
  :effects =>
68
68
  [
69
- PfrpgCore::Effect.new("skill", "perception", 2)
69
+ PfrpgUtility::Effect.new("skill", "perception", 2)
70
70
  ]
71
71
  )
72
72
  ]
@@ -57,7 +57,7 @@ class PfrpgRaces::Race::HalfOrc < PfrpgRaces::Race
57
57
  :description => "+2 racial bonus to intimidate skill checks",
58
58
  :effects =>
59
59
  [
60
- PfrpgCore::Effect.new("skill", "intimidate", 2)
60
+ PfrpgUtility::Effect.new("skill", "intimidate", 2)
61
61
  ]
62
62
  ),
63
63
  PfrpgRaces::RacialTrait.new( :name => "Orc Blood",
@@ -61,24 +61,24 @@ class PfrpgRaces::Race::Halfling < PfrpgRaces::Race
61
61
  :description => "+1 racial bonus to all saving throws",
62
62
  :effects =>
63
63
  [
64
- PfrpgCore::Effect.new("racial", "fort_save", 1),
65
- PfrpgCore::Effect.new("racial", "will_save", 1),
66
- PfrpgCore::Effect.new("racial", "ref_save", 1)
64
+ PfrpgUtility::Effect.new("racial", "fort_save", 1),
65
+ PfrpgUtility::Effect.new("racial", "will_save", 1),
66
+ PfrpgUtility::Effect.new("racial", "ref_save", 1)
67
67
  ]
68
68
  ),
69
69
  PfrpgRaces::RacialTrait.new( :name => "Sure Footed",
70
70
  :description => "+2 racial bonus on Acrobatic & Climb skill checks",
71
71
  :effects =>
72
72
  [
73
- PfrpgCore::Effect.new("skill", "climb", 2),
74
- PfrpgCore::Effect.new("skill", "acrobatics", 2)
73
+ PfrpgUtility::Effect.new("skill", "climb", 2),
74
+ PfrpgUtility::Effect.new("skill", "acrobatics", 2)
75
75
  ]
76
76
  ),
77
77
  PfrpgRaces::RacialTrait.new( :name => "Keen Senses",
78
78
  :description => "+2 Perception",
79
79
  :effects =>
80
80
  [
81
- PfrpgCore::Effect.new("skill", "perception", 2)
81
+ PfrpgUtility::Effect.new("skill", "perception", 2)
82
82
  ]
83
83
  )
84
84
  ]
@@ -1,5 +1,5 @@
1
1
  class PfrpgRaces::StatBonus
2
- include ::PfrpgCore::Affectable
2
+ include ::PfrpgUtility::Affectable
3
3
  attr_reader :stat, :bonus
4
4
  def initialize(stat, bonus)
5
5
  @stat = stat
@@ -1,3 +1,3 @@
1
1
  module PfrpgRaces
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/pfrpg_races.rb CHANGED
@@ -1,4 +1,4 @@
1
- module PfrpgRules
1
+ module PfrpgRaces
2
2
  end
3
3
 
4
4
  require 'pfrpg_races/race'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pfrpg_races
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan OMara
@@ -9,35 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-12-23 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rails
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ~>
18
- - !ruby/object:Gem::Version
19
- version: 4.1.1
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ~>
25
- - !ruby/object:Gem::Version
26
- version: 4.1.1
27
- - !ruby/object:Gem::Dependency
28
- name: sqlite3
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - '>='
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - '>='
39
- - !ruby/object:Gem::Version
40
- version: '0'
12
+ dependencies: []
41
13
  description: races
42
14
  email:
43
15
  - jordan@herosheets.com
@@ -59,6 +31,7 @@ files:
59
31
  - lib/pfrpg_races/tickle.rb
60
32
  - lib/pfrpg_races/version.rb
61
33
  - lib/pfrpg_races.rb
34
+ - LICENSE
62
35
  - Rakefile
63
36
  - test/race_test.rb
64
37
  homepage: http://herosheets.com