mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
It's currently a copy of the Mason ruleset. Where Mason focuses on letting the users create the world themselves, Deeds instead focuses on allowing world authors to set up enticing worlds with gameplay and stories. In contrast to Mason there are more features available to the world authors which allow for automatic creation of entities and so on.
13 lines
504 B
Python
13 lines
504 B
Python
#This file is distributed under the terms of the GNU General Public license.
|
|
#Copyright (C) 2005 Al Riddoch (See the file COPYING for details).
|
|
|
|
from atlas import *
|
|
|
|
class Bucksaw(server.Thing):
|
|
"""This is a large saw for cutting logs"""
|
|
def cut_operation(self, op):
|
|
print "Bucksaw.cur_operation() Don't call this."
|
|
to_ = op[0].id
|
|
if not to_:
|
|
return self.error(op,"To is undefined object")
|
|
return Oplist(Operation("saw",op[0],Entity(op.from_),to=to_))
|