silverpower I'm interested in adding more 'realism' and 'variety' to the game too. Perhaps you could help me as my knowledge is limited? I've already written up a few additions included below:
GUN("Glock 17", 15, 700,c_dkgray, STEEL, PLASTIC
sk_pistol, AT_9MM, 3, 6, 8, 1, 2, 24, 6, 6, 0, 17, "\
One of the most popular pistols in existance. Often criticised for its\n\
plastic contruction or praised for its ease of use. Holds a massive\n\
seventeen rounds of 9mm.",
0);
GUN("M1 Garand", 5, 2000,c_brown, IRON, WOOD
sk_rifle, AT_3006, 12, 34, 12, 2, 0, 5, -3, 8, 0, 8, "\
Developed in the United States during the 1930's this was the first\n\
semi-automatic rifle to become general issue in war. Durable and boasts \n\
immense stopping power. It is chambered to fire the .30-06 round.",
0);
GUN("M1918 BAR", 5, 2200,c_brown, IRON, WOOD
sk_rifle, AT_3006, 20, 45, 20, -3, 0, 15, 5, 6, 4, 20, "\
The M1918 Browning Automatic Rifle was a selective fire automatic\n\
rifle that the United States used during the Second World War. It is\n\
cumbersome and suffers from terrible recoil. It is chambered to\n\
fire the .30-06 round.",
0);
The idea isn't bad, but the descriptions could use some work. Here's my proposal, fixed so that they're actually usable - that comma at the end of the first line is important. (and I added support for my multi-type patch, it's a simple change - I hope you don't mind)
GUN("Glock 17", 15, 700,c_dkgray, STEEL, PLASTIC,
// SKILL AMMO ALTAMMO VOL WGT MDG HIT DMG ACC REC DUR BST CLIP
sk_pistol, AT_9MM,AT_NULL, 2, 6, 8, 1, 2, 25, 5, 6, 0, 17, "\
Designed in 1982 for the Austrian counterterrorism forces, it is the\n\
gold standard of polymer-framed handguns. While still sneered at by some\n\
traditionalist handgunners, it is easy to use and spare parts can be\n\
found across the globe. Holds a massive seventeen rounds of 9mm.",
0);
This is the only weapon where the stats seemed a bit out of line. I adjusted them somewhat.
GUN("M1 Garand", 5, 2000,c_brown, IRON, WOOD,
// SKILL AMMO ALTAMMO VOL WGT MDG HIT DMG ACC REC DUR BST CLIP
sk_rifle, AT_3006,AT_NULL, 12, 34, 12, 2, 0, 5, -3, 8, 0, 8, "\
Developed in the United States during the 1930s, this was the first\n\
semi-automatic rifle to become general issue in war. Durable and boasts \n\
immense stopping power, it is chambered to fire the venerable .30-06 round.\n\
Just watch your thumbs when reloading...",
0);
GUN("M1918A2 BAR", 5, 2200,c_brown, IRON, WOOD,
sk_rifle, AT_3006,AT_NULL, 20, 45, 20, -3, 0, 15, 5, 6, 4, 20, "\
The M1918A2 Browning Automatic Rifle was a selective-fire automatic\n\
rifle that the United States used during the Second World War. It is\n\
cumbersome and suffers from heavy recoil. It is chambered to fire the .30-06\n\
round, and is still a formidable weapon, if you can feed it.",
0);
Only thing wrong with these were the descriptions, in my opinion. What do you think?