show card titles instead of number of cards
This commit is contained in:
parent
fdca9de867
commit
09a34c119b
18
src/Test.hs
18
src/Test.hs
|
|
@ -107,15 +107,15 @@ printWaterdeep w = do
|
||||||
putStrLn ""
|
putStrLn ""
|
||||||
forM_ ps $ \p -> do
|
forM_ ps $ \p -> do
|
||||||
putStrLn ((p ^. playerName) ++ "'s State:")
|
putStrLn ((p ^. playerName) ++ "'s State:")
|
||||||
putStrLn (" Score: " ++ show (p ^. playerScore))
|
putStrLn (" Score: " ++ show (p ^. playerScore))
|
||||||
putStrLn (" Tavern: " ++ show (p ^. playerTavern))
|
putStrLn (" Tavern: " ++ show (p ^. playerTavern))
|
||||||
putStrLn (" Color: " ++ show (p ^. playerFaction . factionColor))
|
putStrLn (" Color: " ++ show (p ^. playerFaction . factionColor))
|
||||||
putStrLn (" Lord: " ++ (p ^. playerLord . lordName))
|
putStrLn (" Lord: " ++ (p ^. playerLord . lordName))
|
||||||
putStrLn (" Faction: " ++ (p ^. playerFaction . factionName))
|
putStrLn (" Faction: " ++ (p ^. playerFaction . factionName))
|
||||||
putStrLn (" Incomplete: " ++ show (p ^. playerIncompleteQuests . to length))
|
putStrLn (" Incomplete: " ++ show (p ^.. playerIncompleteQuests . traverse . questTitle))
|
||||||
putStrLn (" Complete: " ++ show (p ^. playerCompletedQuests . to length))
|
putStrLn (" Complete: " ++ show (p ^.. playerCompletedQuests . traverse . questTitle))
|
||||||
putStrLn (" Intrigues: " ++ show (p ^. playerIntrigueCards . to length))
|
putStrLn (" Intrigues: " ++ show (p ^.. playerIntrigueCards . traverse . intrigueTitle))
|
||||||
putStrLn (" Agent Pool: " ++ show (p ^. playerAgentsInPool))
|
putStrLn (" Agent Pool: " ++ show (p ^. playerAgentsInPool))
|
||||||
putStrLn ""
|
putStrLn ""
|
||||||
|
|
||||||
dummyPrompt :: WaterdeepPrompt a -> IO a
|
dummyPrompt :: WaterdeepPrompt a -> IO a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue