Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Branden
/
thiccmud
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
cf6e08c3
authored
2016-12-20 23:45:48 -0500
by
Branden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
#Babbies first Kobold
1 parent
6e04988e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
thiccMud/typeclasses/mobs/kobold.py
thiccMud/typeclasses/mobs/kobold.py
View file @
cf6e08c
...
...
@@ -4,10 +4,10 @@ Created on Dec 20, 2016
@author: Xorfos
'''
from
mobs
import
n
pc
from
npc
import
N
pc
from
random
import
randint
class
WeakKobold
(
n
pc
):
class
WeakKobold
(
N
pc
):
def
at_object_creation
(
self
):
self
.
db
.
strength
=
randint
(
1
,
2
)
...
...
@@ -18,7 +18,7 @@ class WeakKobold(npc):
return
self
.
db
.
strength
,
self
.
db
.
agility
,
self
.
db
.
magic
class
KoboldShaman
(
n
pc
):
class
KoboldShaman
(
N
pc
):
def
at_object_creation
(
self
):
self
.
db
.
strength
=
1
...
...
Please
register
or
sign in
to post a comment