Dungeon master
Sign in to test your solution.
// Dungeon master program
using System;
class Submission
{
// -------------------------
// Globals
// -------------------------
// -------------------------
// Subprograms
//--------------------------
// Function to return if a skill check is passed in DnD5e
static string check_skill(int skill, int modifier, int dm_value)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
string result = check_skill(skill, modifier, dm_value);
Console.WriteLine(result);
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.