1 00:00:00,460 --> 00:00:04,310 Okay, so we've got all of our different actions that our monster can perform. 2 00:00:04,310 --> 00:00:10,410 Let's go ahead and print out a scoreboard for our monster. 3 00:00:10,410 --> 00:00:13,350 We'll just call this method print_scoreboard. 4 00:00:15,470 --> 00:00:19,940 And all this is going to do is print out our monster's name and 5 00:00:19,940 --> 00:00:22,230 a running count of the actions. 6 00:00:26,030 --> 00:00:33,600 So we'll print a little header here, the name of our monster, the word scoreboard. 7 00:00:36,368 --> 00:00:37,370 Another separator. 8 00:00:39,510 --> 00:00:44,150 And we'll say our monster has this many screams. 9 00:00:47,518 --> 00:00:48,649 This many scares. 10 00:00:54,270 --> 00:00:55,251 This many runs. 11 00:01:03,420 --> 00:01:04,762 And this many hides. 12 00:01:07,530 --> 00:01:10,422 And then another separator. 13 00:01:10,422 --> 00:01:13,510 Okay, so we got this little scoreboard, 14 00:01:13,510 --> 00:01:18,461 which means we can take away printing out the monster's actions, 15 00:01:21,995 --> 00:01:28,390 And just call monster.print_scoreboard. 16 00:01:28,390 --> 00:01:31,979 And let's go ahead and print a new line to the screen in between this. 17 00:01:34,170 --> 00:01:37,075 Okay, so if we run this, I’m gonna go ahead and make this bigger. 18 00:01:41,236 --> 00:01:44,650 Okay, now we have our little scoreboard. 19 00:01:45,800 --> 00:01:49,900 Fluffy is performing with different actions, and that looks pretty good.