LRPG / play_game /main.py
pizb's picture
Upload folder using huggingface_hub
97f15a5 verified
from langchain_upstage import ChatUpstage
from langchain_core.prompts import PromptTemplate
from langchain_core.output_parsers import StrOutputParser, JsonOutputParser
import ast
from . import formatter
import random
from openai import OpenAI
# """
# Please answer in korean.
# You are best TRPG game master, and user is playing the game as a player with your guidance.
# The detailed information about the fictional universe of game is included in below Fictional Universe part.
# You should make round description which will be displayed to player that can explain this round story to make player understand the situation.
# Round Description should include the main event of this round story.
# Round Description should be finished with the question to player to make a decision for the next step.
# Round Description should consider this round story, entire story, player profile, player status, previous conversation, and previous round effect.
# Round Description should be interesting and naturally connected to the previous conversation, with long and detailed explanation of story.
# Round Description should be wrote in the tone of the game master.
# Round Description must start with explanation of player's previous round result and reason if below Previous Round Result section is not empty.
# Round Description should reflect the player's previous choices and their effects on this round story, so it can include slightly different from this round story but follow the entire story in big picture.
# ---
# Fictional Universe: {world_summary}
# ---
# Player Profile: {player_profile}
# ---
# Player Status: {player_status}
# ---
# Entire Story: {entire_story}
# ---
# This Round Story: {round_story}
# ---
# Previous Conversation: {previous_conversation}
# ---
# Previous Round Result: {previous_round_result}
# ---
# Round Description:
# """
def create_initial_conversation(world_summary, player_profile, player_restriction, player_capability, entire_story):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
Please explain the initial introduction which includes the greeting message as a game master and explanation of the universe and situation to make player understand the context.
Introduction should include brief explanation of the story before the first round begins, but do not include the spoiler of the detailed entire story.
Introduction should include explanation of the player's profile, restriction, and capability to make player understand the context.
Introduction should include background knowledge of the fictional universe to make player understand the situation.
Introduction should be wrote in the tone of the game master.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Entire Story: {entire_story}
---
Introduction:
"""
)
chain = prompt_template | llm | StrOutputParser()
introduction = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "entire_story": entire_story })
return introduction
def create_round_description(world_summary, player_profile, player_restriction, player_capability, entire_story, round_story, previous_conversation, previous_round_result):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
Please create round description which will be displayed to player that can explain this round story to make player understand the situation.
Round Description should include the main event of this round story.
Round Description should be finished with the question to player to make a decision for the next step.
Round Description should consider this round story, entire story, player profile, player restriction, player capability, previous conversation, and previous round effect.
Round Description should be interesting and naturally connected to the previous conversation, with long and detailed explanation of story.
Round Description should be wrote in the tone of the game master.
Round Description must start with explanation of player's previous round result and reason if below Previous Round Result section is not empty.
Round Description should reflect the player's previous choices and their effects on this round story, so it can include slightly different from this round story but follow the entire story in big picture.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Entire Story: {entire_story}
---
This Round Story: {round_story}
---
Previous Conversation: {previous_conversation}
---
Previous Round Result: {previous_round_result}
---
Round Description:
"""
)
chain = prompt_template | llm | StrOutputParser()
while(True):
round_description = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "entire_story": entire_story, "round_story": round_story, "previous_conversation": previous_conversation, "previous_round_result": previous_round_result })
if "1." in round_description and '2.' in round_description:
continue
return round_description
def get_required_capabilities(world_summary, player_profile, player_restriction, player_capability, round_description, player_response):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in english.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
This round story is included in This Round Description part.
Please select the required player capability to successfully conduct the player's response action.
Required Capability should be selected from player capability.
Required Capability should be selected based on player response and round description.
Response should be python list format consists of string which is keys of required player capability.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Round Description: {round_description}
---
Player Response: {player_response}
---
Required Capability: ["Required capabilities on english", ...]
"""
)
chain = prompt_template | llm | StrOutputParser()
while(True):
try:
response = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "round_description": round_description, "player_response": player_response })
response = '[' + response.split('[')[-1]
response_list = ast.literal_eval(response)
if len(response_list) != 0:
return response_list
except:
continue
def restrict_effect_range(effect):
new_restriction = effect.get('player_restriction')
new_capability = effect.get('player_capability')
for key, value in effect.get('player_restriction').items():
if value > 10:
new_restriction[key] = 10
elif value < -10:
new_capability[key] = -10
for key, value in effect.get('player_capability').items():
if value > 20:
new_capability[key] = 20
elif value < -20:
new_capability[key] = -20
return { "player_restriction": new_restriction, "player_capability": new_capability }
def get_expected_result(world_summary, player_profile, player_restriction, player_capability, round_description, player_response):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
This round story is included in This Round Description part.
Please create the effect from player's response from this round story, and reason to explain the effect.
Effect should be calculated based on player response, player restriction, player capability, player profile, and round description.
Effect should reduce or increase player restriction in range between (-10, 10) with reasonable amount from player response's action.
Effect should reduce or increase player capability in range between (-20, 20) with reasonable amount from player response's action if it seems to be change by player's action.
Reason should explain why the effect is happened based on player response and round description.
Reason should logically explain the amount of changes of player restriction and capability.
Reason should be wrote in the tone of the game master.
Response should follow below format which is python dictionary consist of effect and reason.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Round Description: {round_description}
---
Player Response: {player_response}
---
format:
{{
effect: {{
player_restriction: {{
life: integer of life amount change between (-10, 10),
money: integer of money amount change between (-10, 10)
}},
player_capability: {{
stamina: integer of stamina amount change between (-20, 20),
intelligence: integer of intelligence amount change between (-20, 20),
combat_power: integer of combat power amount change between (-20, 20),
agility: integer of agility amount change between (-20, 20),
}}
}}
reason: "reason of the effect which is changes of player restriction, and capability based on player response and round description",
}}
---
"""
)
chain = prompt_template | llm | JsonOutputParser()
while(True):
try:
response = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "round_description": round_description, "player_response": player_response })
# response_dict = json.loads(response)
if response.get('effect').get('player_restriction') == None or response.get("effect").get('player_capability') == None or response.get("reason") == None:
raise Exception()
response['effect'] = restrict_effect_range(response['effect'])
return response
except:
continue
def get_unexpected_result(world_summary, player_profile, player_restriction, player_capability, not_enough_capability, round_description, player_response):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
This round story is included in This Round Description part.
Please create the unexpected effect from player's response from this round story, and reason to explain the effect.
Player's response is failed to do intended action because some player's capability is not enough to conduct the action.
Not enough capability is included in Required Capability part.
Effect should be calculated based on player response, player restriction, player capability, player profile, and round description.
Effect should reduce or increase player restriction in range between (-10, 10) with reasonable amount from player response's action failure.
Effect should reduce or increase player capability in range between (-20, 20) with reasonable amount from player response's action failure if it seems to be change by player's action failure.
Reason should explain why this kind of unintended effect is happened based on situation.
Reason should logically explain the amount of changes of player restriction and capability.
Reason should be wrote in the tone of the game master.
Response should follow below format which is python dictionary consist of effect and reason.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Required Capability: {not_enough_capability}
---
Round Description: {round_description}
---
Player Response: {player_response}
---
format:
{{
effect: {{
player_restriction: {{
life: integer of life amount change between (-10, 10),
money: integer of money amount change between (-10, 10)
}},
player_capability: {{
stamina: integer of stamina amount change between (-20, 20),
intelligence: integer of intelligence amount change between (-20, 20),
combat_power: integer of combat power amount change between (-20, 20),
agility: integer of agility amount change between (-20, 20),
}}
}}
reason: "reason of the effect which is changes of player restriction, and capability based on player response's failure and round description",
}}
---
"""
)
chain = prompt_template | llm | JsonOutputParser()
while(True):
try:
response = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "not_enough_capability": not_enough_capability, "round_description": round_description, "player_response": player_response })
# response_dict = json.loads(response)
if response.get('effect').get('player_restriction') == None or response.get("effect").get('player_capability') == None or response.get("reason") == None:
raise Exception()
response['effect'] = restrict_effect_range(response['effect'])
return response
except:
continue
def create_round_result(world_summary, player_profile, player_restriction, player_capability, round_description, player_response):
required_caps = get_required_capabilities(world_summary, player_profile, player_restriction, player_capability, round_description, player_response)
for cap in required_caps:
required_cap = player_capability.get(cap)
if required_cap and random.random() > required_cap/100:
# Failed to do intended action
return get_unexpected_result(world_summary, player_profile, player_restriction, player_capability, required_caps, round_description, player_response)
# Success to do intended action
return get_expected_result(world_summary, player_profile, player_restriction, player_capability, round_description, player_response)
def create_bad_ending(world_summary, player_profile, player_restriction, player_capability, entire_story, round_story, previous_conversation, round_result):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
Player played the game and reached the bad ending by previous decisions.
Player reach bad ending when player restriction (life or money) is less or equal to 0.
Please create bad ending scenario based on previous conversation and previous round's result.
Consider fictional universe, player profile, player restriction, player capability, entire story, this round story, this round result, and previous conversation.
Bad ending story should be interesting and naturally connected to the previous conversation.
Bad ending should be wrote in the tone of the game master.
Bad ending should mention the reason in story why player reached the bad ending and make the story interesting.
Bad ending should mention the exact reason by telling player's restriction change.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Entire Story: {entire_story}
---
This Round Story: {round_story}
---
This Round Result: {round_result}
---
Previous Conversation: {previous_conversation}
---
Bad Ending:
"""
)
chain = prompt_template | llm | StrOutputParser()
bad_ending = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "entire_story": entire_story, "round_story": round_story, "round_result": round_result, "previous_conversation": previous_conversation })
return bad_ending
def create_good_ending(world_summary, player_profile, player_restriction, player_capability, entire_story, previous_conversation):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please answer in korean.
You are best TRPG game master, and user is playing the game as a player with your guidance.
The detailed information about the fictional universe of game is included in below Fictional Universe part.
User played the game and reached the entire story's ending which means game win, so it's good ending.
Please create good ending scenario based on previous conversation and entires story.
Consider fictional universe, player profile, player restriction, player capability, entire story, and previous conversation.
Good ending should be appropriate for the end of the story, which comprehensively organizes the entire story flow and the user's decisions.
Good ending story should be interesting and naturally connected to the previous conversation.
Good ending should be last part which finishes the game story and make user happy.
Good ending should be wrote in the tone of the game master.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
Player Restriction: {player_restriction}
---
Player Capability: {player_capability}
---
Entire Story: {entire_story}
---
Previous Conversation: {previous_conversation}
---
Good Ending:
"""
)
chain = prompt_template | llm | StrOutputParser()
good_ending = chain.invoke({ "world_summary": world_summary, "player_profile": player_profile, "player_restriction": player_restriction, "player_capability": player_capability, "entire_story": entire_story, "previous_conversation": previous_conversation })
return good_ending
def convert_to_image_prompt(topic, world_summary, player_profile, round_description):
llm = ChatUpstage()
prompt_template = PromptTemplate.from_template(
"""
Please provide visual prompt of the host message which will be used for text-image generation.
Host message is D&D game scenario scene with choices on {topic}.
Visual prompt should consider the context and user persona.
Visual prompt should represent the scenario's scene and choices in the image.
---
Fictional Universe: {world_summary}
---
Player Profile: {player_profile}
---
This Round Scenario: {round_description}
---
Visual Prompt:
"""
)
chain = prompt_template | llm | StrOutputParser()
response = chain.invoke({ "topic": topic, "world_summary": world_summary, "player_profile": player_profile, "round_description": round_description })
return response
def generate_image(prompt):
client = OpenAI()
response = client.images.generate(
model="dall-e-3",
prompt=prompt,
size="1024x1024",
quality="standard",
n=1,
)
image_url = response.data[0].url
return image_url
def play_game(game_scenario, world_summary, player_profile):
entire_story = [f"{idx+1}. {scenario['title']}\n{scenario['story']}\n\n" for idx, scenario in enumerate(game_scenario)]
conversation = ""
previous_conversation = ""
previous_round_result = ""
player_restriction = { "life": 10, "money": 10 }
player_capability = player_profile["params"]
# player_status = { "life": 10, "money": 10, **player_profile["params"] }
player_profile_str = formatter.player_profile_to_str(player_profile)
introduction = create_initial_conversation(world_summary, player_profile_str, player_restriction, player_capability, entire_story)
print(introduction)
print('-----------------------------')
for round_idx, round_scenario in enumerate(game_scenario):
# Display this round story
round_story = f"{round_idx+1}. {round_scenario['title']}: {round_scenario['story']}\n"
round_description = create_round_description(world_summary, player_profile_str, player_restriction, player_capability, entire_story, round_story, previous_conversation, previous_round_result)
print(f"Round {round_idx+1}: {round_description}")
# Get player's response
player_response = input("λ‹Ήμ‹ λ§Œμ˜ 결정을 λ‚΄λ €μ£Όμ„Έμš”! ν•˜λ‚˜μ˜ λ¬Έμž₯으둜 당신이 ν•  행동과 그에 λŒ€ν•œ 근거와 이유λ₯Ό λͺ…ν™•ν•˜κ²Œ μ„€λͺ…ν•΄μ£Όμ„Έμš”: ")
conversation += f"Game Master: {round_description}\nPlayer: {player_response}\n"
# Reflect the result and update player status
round_result = create_round_result(world_summary, player_profile_str, player_restriction, player_capability, round_description, player_response)
round_effect = round_result["effect"]
round_result_explanation = round_result["reason"]
for key, value in round_effect["player_restriction"].items():
if player_restriction.get(key) is not None:
modified_value = player_restriction[key] + value
if modified_value > 10:
player_restriction[key] = 10
elif modified_value < -10:
player_restriction[key] = -10
else:
player_restriction[key] = modified_value
for key, value in round_effect["player_capability"].items():
if player_capability.get(key) is not None:
modified_value = player_capability[key] + value
if modified_value > 100:
player_capability[key] = 100
elif modified_value < -100:
player_capability[key] = -100
else:
player_capability[key] = modified_value
# Update previous conversation and round effect
previous_conversation = conversation
previous_round_result = formatter.to_round_result(round_effect, round_result_explanation)
print('-----------------------------')
# Check whether player lose the game
if player_restriction["life"] <= 0 or player_restriction["money"] <= 0:
bad_ending = create_bad_ending(world_summary, player_profile_str, player_restriction, player_capability, entire_story, round_story, previous_conversation, previous_round_result)
print(bad_ending)
return
# Reach the good ending of the game
good_ending = create_good_ending(world_summary, player_profile_str, player_restriction, player_capability, entire_story, previous_conversation)
print(good_ending)
return
if __name__ == "__main__":
game_scenario = [
{
"title": "ν˜Έκ·Έμ™€νŠΈλ‘œμ˜ μ΄ˆλŒ€",
"story": "ν”Œλ ˆμ΄μ–΄λ“€μ€ 각자 ν˜Έκ·Έμ™€νŠΈ λ§ˆλ²•ν•™κ΅λ‘œλΆ€ν„° νŽΈμ§€λ₯Ό λ°›μŠ΅λ‹ˆλ‹€. νŽΈμ§€μ—λŠ” νŠΉλ³„ν•œ μž„λ¬΄κ°€ μ£Όμ–΄μ‘ŒμœΌλ©°, 이 μž„λ¬΄λ₯Ό μ™„μˆ˜ν•˜λ©΄ λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ„ 받을 수 μžˆλ‹€λŠ” λ‚΄μš©μ΄ μ ν˜€ μžˆμŠ΅λ‹ˆλ‹€. ν˜Έκ·Έμ™€νŠΈμ— λ„μ°©ν•œ ν”Œλ ˆμ΄μ–΄λ“€μ€ μ•Œλ²„μŠ€ 덀블도어 κ΅μˆ˜μ—κ²Œμ„œ 직접 μž„λ¬΄μ˜ 첫 번째 λ‹¨μ„œλ₯Ό λ°›μŠ΅λ‹ˆλ‹€. 첫 번째 μž„λ¬΄λŠ” κΈˆμ§€λœ μˆ²μ—μ„œ νŠΉλ³„ν•œ λ§ˆλ²• 생물을 μ°Ύμ•„λ‚΄λŠ” κ²ƒμž…λ‹ˆλ‹€. 이 생물은 λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μœΌλ‘œ κ°€λŠ” 길을 μ•Œλ €μ£ΌλŠ” μ€‘μš”ν•œ μ—΄μ‡ μž…λ‹ˆλ‹€."
},
{
"title": "κ³ λŒ€μ˜ μ„œμ ",
"story": "첫 번째 λ‹¨μ„œμ—μ„œ 얻은 정보λ₯Ό λ°”νƒ•μœΌλ‘œ ν”Œλ ˆμ΄μ–΄λ“€μ€ ν˜Έκ·Έμ™€νŠΈ λ„μ„œκ΄€μ˜ κΈˆμ„œ μ„Ήμ…˜μ—μ„œ κ³ λŒ€μ˜ μ„œμ μ„ μ°Ύμ•„μ•Ό ν•©λ‹ˆλ‹€. 이 μ„œμ μ—λŠ” λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ— λŒ€ν•œ μ€‘μš”ν•œ 정보가 λ‹΄κ²¨μžˆμŠ΅λ‹ˆλ‹€. κ·ΈλŸ¬λ‚˜ μ„œμ μ„ μ°ΎλŠ” 것은 쉽지 μ•ŠμŠ΅λ‹ˆλ‹€. ν˜Έκ·Έμ™€νŠΈμ˜ λ‹€μ–‘ν•œ 퍼즐과 함정을 ν’€μ–΄μ•Ό ν•˜λ©°, κ²½μŸν•˜λŠ” λ‹€λ₯Έ 학생듀과 λ§ˆλ²• λŒ€κ²°μ„ λ²Œμ—¬μ•Ό ν•  μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€."
},
{
"title": "λΉ„λ°€μ˜ λ°©",
"story": "κ³ λŒ€μ˜ μ„œμ μ—μ„œ 얻은 λ‹¨μ„œλ‘œ ν”Œλ ˆμ΄μ–΄λ“€μ€ ν˜Έκ·Έμ™€νŠΈ 내에 μˆ¨κ²¨μ§„ λΉ„λ°€μ˜ 방을 μ°Ύμ•„μ•Ό ν•©λ‹ˆλ‹€. 이 방은 λ§ˆλ²•μ‚¬μ˜ μœ μ‚°κ³Ό κ΄€λ ¨λœ 또 λ‹€λ₯Έ λ‹¨μ„œλ₯Ό κ°€μ§€κ³  μžˆμŠ΅λ‹ˆλ‹€. λΉ„λ°€μ˜ 방에 λ“€μ–΄κ°€κΈ° μœ„ν•΄μ„œλŠ” ν˜Έκ·Έμ™€νŠΈμ˜ 역사λ₯Ό 깊이 이해해야 ν•˜λ©°, 과거의 λ§ˆλ²•μ‚¬λ“€μ΄ 남긴 μ—¬λŸ¬ κ°€μ§€ μ‹œν—˜μ„ 톡과해야 ν•©λ‹ˆλ‹€"
},
{
"title": "μ‹œκ°„μ˜ 미둜",
"story": "λΉ„λ°€μ˜ λ°©μ—μ„œ 얻은 λ‹¨μ„œλŠ” ν”Œλ ˆμ΄μ–΄λ“€μ„ μ‹œκ°„μ˜ 미둜둜 μ•ˆλ‚΄ν•©λ‹ˆλ‹€. μ‹œκ°„μ˜ λ―Έλ‘œλŠ” λ§ˆλ²•μœΌλ‘œ 보호된 μž₯μ†Œλ‘œ, 과거와 ν˜„μž¬κ°€ κ΅μ°¨ν•˜λŠ” κ³³μž…λ‹ˆλ‹€. ν”Œλ ˆμ΄μ–΄λ“€μ€ 미둜 μ†μ—μ„œ 과거의 μ€‘μš”ν•œ 사건듀을 λͺ©κ²©ν•˜κ³ , 이λ₯Ό 톡해 λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ— λŒ€ν•œ λ§ˆμ§€λ§‰ λ‹¨μ„œλ₯Ό μ–»μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•˜μ§€λ§Œ 미둜 μ†μ—λŠ” κ°•λ ₯ν•œ 적과 함정이 도사리고 μžˆμŠ΅λ‹ˆλ‹€."
},
{
"title": "λ§ˆλ²•μ‚¬μ˜ μœ μ‚°",
"story": "λͺ¨λ“  λ‹¨μ„œλ₯Ό λͺ¨μ€ ν”Œλ ˆμ΄μ–΄λ“€μ€ λ§ˆμΉ¨λ‚΄ λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ΄ μˆ¨κ²¨μ§„ μž₯μ†Œμ— λ„μ°©ν•©λ‹ˆλ‹€. μ΄κ³³μ—μ„œ μ΅œμ’… λ³΄μŠ€μ™€μ˜ 결전이 λ²Œμ–΄μ§‘λ‹ˆλ‹€. 보슀λ₯Ό 물리치고 μœ μ‚°μ„ 손에 λ„£κΈ° μœ„ν•΄μ„œλŠ” ν”Œλ ˆμ΄μ–΄λ“€μ˜ λͺ¨λ“  μ§€ν˜œμ™€ μš©κΈ°κ°€ ν•„μš”ν•©λ‹ˆλ‹€. μ΅œμ’… 결전을 μŠΉλ¦¬ν•œ ν›„, ν”Œλ ˆμ΄μ–΄λ“€μ€ λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ„ 손에 λ„£κ³  각자의 길을 λ– λ‚©λ‹ˆλ‹€."
}
]
world_summary = "이 TRPG의 세계관은 해리포터 μ‹œλ¦¬μ¦ˆμ˜ λ§ˆλ²• 세계λ₯Ό 배경으둜 ν•©λ‹ˆλ‹€. ν”Œλ ˆμ΄μ–΄λ“€μ€ ν˜Έκ·Έμ™€νŠΈ λ§ˆλ²•ν•™κ΅μ˜ ν•™μƒμœΌλ‘œ, 전섀적인 λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ„ μ°ΎκΈ° μœ„ν•œ νŠΉλ³„ν•œ μž„λ¬΄λ₯Ό λ°›μŠ΅λ‹ˆλ‹€. 이 μ„Έκ³„λŠ” λ§ˆλ²•, μ‹ λΉ„λ‘œμš΄ 생물, κ³ λŒ€μ˜ λΉ„λ°€, 그리고 μœ„ν—˜μ΄ κ°€λ“ν•œ 곳으둜, ν”Œλ ˆμ΄μ–΄λ“€μ€ ν˜Έκ·Έμ™€νŠΈ λ‚΄μ™Έμ˜ λ‹€μ–‘ν•œ μž₯μ†Œλ₯Ό νƒν—˜ν•˜λ©° 퍼즐과 적듀을 μƒλŒ€ν•΄μ•Ό ν•©λ‹ˆλ‹€. 각 단계λ₯Ό 톡해 λ§ˆλ²•μ‚¬μ˜ μœ μ‚°μ— κ°€κΉŒμ›Œμ§€λ©°, κ·Έ κ³Όμ •μ—μ„œ λ§ˆλ²•μ˜ 지식과 λŠ₯λ ₯을 ν–₯μƒμ‹œν‚€κ³  ν˜‘λ™κ³Ό 용기λ₯Ό μ‹œν—˜λ°›κ²Œ λ©λ‹ˆλ‹€. 이 μ‹œλ‚˜λ¦¬μ˜€λŠ” ν”Œλ ˆμ΄μ–΄λ“€μ΄ λ§ˆλ²• μ„Έκ³„μ˜ κΉŠμ€ 비밀을 ν’€μ–΄κ°€λ©°, μžμ‹ μ˜ 잠재λ ₯을 λ°œνœ˜ν•˜λŠ” ν₯λ―Έμ§„μ§„ν•œ λͺ¨ν—˜μ„ μ œκ³΅ν•©λ‹ˆλ‹€."
player_profile = {
"name": "μ΄ν˜„κ΅¬",
"gender": "male",
"job": "λ§ˆλ²•μ‚¬",
"params": {
"stamina": 34,
"intelligence": 58,
"combat_power": 45,
"agility": 100
}
}
play_game(game_scenario, world_summary, player_profile)