Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

newraces.gd

var races = {
"Beastkin Pony" : {
...


globals.gd

#  newrace mod
<AddTo 0>
func _init():
    var newRaces = load(setfolders.mods + "/ponyRace/newraces.gd").new()
    for cur_race in newRaces.races:
        races[cur_race] = newRaces.races[cur_race]
var longtails = ['cat','fox','wolf','demon','dragon','scruffy','snake tail','racoon', 'horse']
var alltails = ['cat','fox','wolf','bunny','bird','demon','dragon','scruffy','snake tail','racoon', 'horse']

- global newRaces not necessary
- <AddTo -1> dont work
- newRaces is the file, races is the dictionary
- AddTo on vars also does not seem to work (but if it does: should be before each var and have only the additional content)
- penistypearray is the same as in original file