I'm trying to make an era plugin for the TOS era, but I've hit a bit of a problem, essentially, I've just been editing the ship names in the examples and stuff like that but BC has consistantly been rejecting it at start up, on the console report it says there are syntax errors, but most of them are in parts I didn't edit from the examples.
# prototype Era Plugin - handmade
########## GENERAL ERA INFORMATION ##########
Name = "TOS Era"
Description = ["The Mid 23rd century.", "Much of the galaxy remains unexplored, but the federation is in a state of cold war with the Klingons; the Romulans, recently returning from a century of seclusion behind the neutral zone are devious and fiercely territorial"]
StardateRange = [1111.1, 5555.9]
########## RACE INFORMATION ##########
RaceInfo = {
"Romulan": {
"myFriendlys": [],
"isEnemyToAll": 1,
"myShips": ["D7StudioRom", "Cricket", "CapsizeTD.py", "CrackerTD.py", "ChowderDM.py"],
"peaceVal": 0.0,
},
"Federation": {
"myFriendlys": [],
"isEnemyToAll": 1,
"myShips": ["Saladin", "Essex", "TOSAkira","Ptolemy","Ptolemy2","Ptolemy3","Type1","ConstitutionTOS","Constitution2ndPilot","Constitution1stPilot"],
"peaceVal": 1.0,
},
#
#"Tholian": {
# "myFriendlys": [ ],
# "isEnemyToAll": 1,
# "myShips": ["Tholian"],
# },
# "peaceVal": 0.0,
#},
"Klingon": {
"myFriendlys": [ ],
"isEnemyToAll": 1,
"myShips": ["D7Studio","D7Jein","KlingonD6","KlingonD5"],
"peaceVal": 0.5}
########## SYSTEM INFORMATION ##########
SystemInfo = {
}
Right now the report says there is a syntax error on that bracket on the last line, if I delete that, the error just moves up to the previous character.