* Add basic yaml Jobs file * Add Job Prototype * Rename Jobs to Job * Remove BaseJob * Add the Job class child of Role * Add code for spawning as an assistant. Not actually working, the job prototype can't be found. * Fix role instead of job left in yaml * Add starting gear support for job and the starting gear for assistant as an exemple * Link job with starting gear in yaml * Better naming and some error handling * Tweak error handling
31 lines
877 B
C#
31 lines
877 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
using Robust.Shared.ViewVariables;
|
|
using YamlDotNet.RepresentationModel;
|
|
|
|
namespace Content.Shared.Jobs
|
|
{
|
|
[Prototype("startingGear")]
|
|
public class StartingGearPrototype : IPrototype, IIndexedPrototype
|
|
{
|
|
private string _id;
|
|
private Dictionary<string, string> _equipment;
|
|
|
|
[ViewVariables]
|
|
public string ID => _id;
|
|
|
|
[ViewVariables]
|
|
public Dictionary<string, string> Equipment => _equipment;
|
|
|
|
public void LoadFrom(YamlMappingNode mapping)
|
|
{
|
|
var serializer = YamlObjectSerializer.NewReader(mapping);
|
|
|
|
serializer.DataField(ref _id, "id", string.Empty);
|
|
serializer.DataField(ref _equipment, "equipment", new Dictionary<string, string>());
|
|
}
|
|
}
|
|
}
|