Merge pull request #3 from jmdejong/master

Added more plant information to json file.
pull/5/head
Jake Funke 2017-04-18 11:09:26 -07:00 committed by GitHub
commit a7baf50055
1 changed files with 12 additions and 0 deletions

12
botany.py 100644 → 100755
View File

@ -1,3 +1,5 @@
#!/usr/bin/python2
from __future__ import division from __future__ import division
import time import time
import pickle import pickle
@ -462,7 +464,17 @@ class DataManager(object):
"is_dead":this_plant.dead, "is_dead":this_plant.dead,
"last_watered":this_plant.watered_timestamp, "last_watered":this_plant.watered_timestamp,
"file_name":this_plant.file_name, "file_name":this_plant.file_name,
"stage": this_plant.stage_dict[this_plant.stage],
} }
if this_plant.stage >= 3:
plant_info["rarity"] = this_plant.rarity_dict[this_plant.rarity]
if this_plant.mutation != 0:
plant_info["mutation"] = this_plant.mutation_dict[this_plant.mutation]
if this_plant.stage >= 4:
plant_info["color"] = this_plant.color_dict[this_plant.color]
if this_plant.stage >= 2:
plant_info["species"] = this_plant.species_dict[this_plant.species]
with open(json_file, 'w') as outfile: with open(json_file, 'w') as outfile:
json.dump(plant_info, outfile) json.dump(plant_info, outfile)