From 99cfcf4b486dd35585433cbc600d861eea4e9c54 Mon Sep 17 00:00:00 2001 From: Nick Dyer Date: Sat, 5 Jun 2021 16:36:30 -0400 Subject: [PATCH] added contentness and metabolism value to eggs --- pocket_friends/game_files/resources/data/egg_info/blue.json | 6 +++++- .../game_files/resources/data/egg_info/rainbow.json | 6 +++++- pocket_friends/game_files/resources/data/egg_info/red.json | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pocket_friends/game_files/resources/data/egg_info/blue.json b/pocket_friends/game_files/resources/data/egg_info/blue.json index 780dd86..376b00e 100644 --- a/pocket_friends/game_files/resources/data/egg_info/blue.json +++ b/pocket_friends/game_files/resources/data/egg_info/blue.json @@ -1 +1,5 @@ -{"description": "Blue egg description"} \ No newline at end of file +{ + "description": "Blue egg description", + "contentness": 10, + "metabolism": 10 +} \ No newline at end of file diff --git a/pocket_friends/game_files/resources/data/egg_info/rainbow.json b/pocket_friends/game_files/resources/data/egg_info/rainbow.json index e4f43a2..7f6c244 100644 --- a/pocket_friends/game_files/resources/data/egg_info/rainbow.json +++ b/pocket_friends/game_files/resources/data/egg_info/rainbow.json @@ -1 +1,5 @@ -{"description": "Rainbow egg description"} \ No newline at end of file +{ + "description": "Rainbow egg description", + "contentness": 10, + "metabolism": 10 +} \ No newline at end of file diff --git a/pocket_friends/game_files/resources/data/egg_info/red.json b/pocket_friends/game_files/resources/data/egg_info/red.json index bbf92c9..fc7e758 100644 --- a/pocket_friends/game_files/resources/data/egg_info/red.json +++ b/pocket_friends/game_files/resources/data/egg_info/red.json @@ -1 +1,5 @@ -{"description": "Red egg description"} \ No newline at end of file +{ + "description": "Red egg description", + "contentness": 10, + "metabolism": 10 +} \ No newline at end of file