Fork of https://github.com/modality/charred-black.
Short term, has some fixes.
Long term, may include a tool to create and edit stock/lifepath/skill/trait data.
http://charred.obscuritus.ca:8080/#/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
require 'json'
|
|
require_relative '../stock'
|
|
|
|
module Charred
|
|
module Gold
|
|
def load_gold(data)
|
|
file = File.read('data/gold/skills.json')
|
|
skills = JSON.parse(file)
|
|
|
|
file = File.read('data/gold/traits.json')
|
|
traits = JSON.parse(file)
|
|
|
|
lifepaths = {}
|
|
resources = {}
|
|
stat_pts = {}
|
|
stock_objs = {}
|
|
|
|
stocks = ['dwarf', 'elf', 'man', 'orc', 'roden', 'wolf']
|
|
|
|
stocks.each do |stock|
|
|
file = File.read("data/gold/lifepaths/#{stock}.json")
|
|
lifepaths[stock] = JSON.parse(file)
|
|
|
|
file = File.read("data/gold/resources/#{stock}.json")
|
|
resources[stock] = JSON.parse(file)
|
|
|
|
file = File.read("data/gold/starting_stat_pts/#{stock}.json")
|
|
stat_pts[stock] = JSON.parse(file)
|
|
|
|
file = File.read("data/gold/stocks/#{stock}.json")
|
|
stock_objs[stock] = Stock.new(JSON.parse(file))
|
|
end
|
|
|
|
data.merge!({
|
|
:stocks => stocks,
|
|
:skills => skills,
|
|
:traits => traits,
|
|
:lifepaths => lifepaths,
|
|
:resources => resources,
|
|
:stat_pts => stat_pts,
|
|
:stock_objs => stock_objs
|
|
})
|
|
end
|
|
end
|
|
end
|
|
|