Generation

generate functionFri, 14 Apr 2023

make an horror game for mobile

def play(player_count, game_name): if player_count >= 8: if game_name == 'Evil Dead': return 'Too scary game' else: return 'Play other game' else: return 'Continue game' play(8, 'Evil Dead') play(7, 'Evil Dead') play(9, 'Evil Dead') play(8, 'Silent Hill') play(7, 'Silent Hill') play(9, 'Silent Hill')

Want to kickstart your project?Use the new AI Studio to create your code