CoralMUD-0.26/
CoralMUD-0.26/core/
CoralMUD-0.26/data/
CoralMUD-0.26/data/help/
CoralMUD-0.26/data/socials/
CoralMUD-0.26/lib/automap/
CoralMUD-0.26/lib/items/
class Social
  define_creatable
  define_editor :social_edit
  define_editor_field({:name=>"vtag", :filter=>:filt_to_tag, :type=>:vtag},
                      {:name=>"name"},
                      {:name=>"noarg"},
                      {:name=>"onoarg"},
                      {:name=>"found"},
                      {:name=>"ofound"},
                      {:name=>"tfound"},
                      {:name=>"auto"},
                      {:name=>"oauto"})

  def self.create ch
    social = self.new
    social.namespace = nil
    social.assign_tag Tag.gen_generic_tag(social), nil
    return social
  end
end