# Example educational script import json

def modify_game_data(data): # Example modification: double the player's speed data['player_speed'] *= 2 return data

# Modify game data modified_data = modify_game_data(game_data)