177
|
1 ## 7th Sea Dieroller
|
|
2 #!/usr/bin/env python
|
|
3 # Copyright (C) 2000-2001 The OpenRPG Project
|
|
4 #
|
|
5 # openrpg-dev@lists.sourceforge.net
|
|
6 #
|
|
7 # This program is free software; you can redistribute it and/or modify
|
|
8 # it under the terms of the GNU General Public License as published by
|
|
9 # the Free Software Foundation; either version 2 of the License, or
|
|
10 # (at your option) any later version.
|
|
11 #
|
|
12 # This program is distributed in the hope that it will be useful,
|
|
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 # GNU General Public License for more details.
|
|
16 #
|
|
17 # You should have received a copy of the GNU General Public License
|
|
18 # along with this program; if not, write to the Free Software
|
|
19 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
20 # --
|
|
21 #
|
|
22 # File: wod.py
|
|
23 # Author: OpenRPG Dev Team
|
|
24 # Maintainer:
|
|
25 # Version:
|
195
|
26 # $Id: wod.py,v Traipse 'Ornery-Orc' prof.ebral Exp $
|
177
|
27 #
|
|
28 # Description: WOD die roller
|
|
29 #
|
|
30 # Targetthr is the Threshhold target
|
|
31 # for compatibility with Mage die rolls.
|
|
32 # Threshhold addition by robert t childers
|
|
33
|
195
|
34 __version__ = "$Id: wod.py,v Traipse 'Ornery-Orc' prof.ebral Exp $"
|
177
|
35
|
|
36 from std import std
|
|
37 from orpg.dieroller.base import *
|
|
38
|
|
39 class seventhsea(std):
|
|
40 name = "7sea"
|
|
41
|
|
42 def __init__(self,source=[]):
|
|
43 std.__init__(self,source)
|
|
44
|
|
45 def non_stdDie(self, s):
|
|
46 print '7th Sea'
|
|
47 num_sides = s.split('k')
|
|
48 if len(num_sides) > 1:
|
|
49 num_sides; num = num_sides[0]; sides = '10'; target = num_sides[1]
|
|
50 ret = ['(', num.strip(), "**die_rollers['7sea'](",
|
|
51 sides.strip(), ')).takeHighest(', target, ').open(10)']
|
|
52 s = ''.join(ret); return str(eval(s))
|
|
53
|
|
54 die_rollers.register(seventhsea)
|