guns/GunTwoCharms.cs

A small class defining a gun item type with a constant ItemId and a Description method returning a static string about charm slot and gem socket.

Rough Code
public class GunTwoCharms : Gun
{
	public const string ItemId = "gun_two_charms";

	public static string Description() => $"+1 charm slot\n-1 gem socket";
}