Advertisement
actuallykane

Untitled

Sep 25th, 2020
1,134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.92 KB | None | 0 0
  1.         public static class Globals
  2.         {
  3.             public static List<Equipment> equipment = new List<Equipment>() {
  4.                 new Equipment() {
  5.                     EquipmentName = "WEAPON_PISTOL",
  6.                     NiceName = "Pistol",
  7.                     Components = new string[] { },
  8.                     Class = "SECONDARY",
  9.                     Damage = 95
  10.                 },
  11.                 new Equipment() {
  12.                     EquipmentName = "WEAPON_HEAVYPISTOL",
  13.                     NiceName = "Heavy Pistol",
  14.                     Components = new string[] { },
  15.                     Class = "SECONDARY",
  16.                     Price = 2000,
  17.                     Damage = 150
  18.                 },
  19.                 new Equipment() {
  20.                     EquipmentName = "WEAPON_APPISTOL",
  21.                     NiceName = "AP Pistol",
  22.                     Components = new string[] { },
  23.                     Class = "SECONDARY",
  24.                     Price = 1000,
  25.                     Damage = 90
  26.                 },
  27.                 new Equipment() {
  28.                     EquipmentName = "WEAPON_COMBATPISTOL",
  29.                     NiceName = "Combat Pistol",
  30.                     Components = new string[] { },
  31.                     Class = "SECONDARY",
  32.                     Price = 700,
  33.                     Damage = 140
  34.                 },
  35.                 new Equipment() {
  36.                     EquipmentName = "WEAPON_MICROSMG",
  37.                     NiceName = "Micro SMG",
  38.                     Components = new string[] { },
  39.                     Class = "SECONDARY",
  40.                     Price = 4500,
  41.                     Damage = 60
  42.                 },
  43.                 new Equipment() {
  44.                     EquipmentName = "WEAPON_SMG",
  45.                     NiceName = "SMG",
  46.                     Components = new string[] { },
  47.                     Class = "SECONDARY",
  48.                     Price = 5500,
  49.                     Damage = 80
  50.                 },
  51.                 new Equipment() {
  52.                     EquipmentName = "WEAPON_PUMPSHOTGUN",
  53.                     NiceName = "Pump Shotgun",
  54.                     Components = new string[] { },
  55.                     Class = "PRIMARY",
  56.                     Price = 7000,
  57.                     Damage = 250
  58.                 },
  59.                 new Equipment() {
  60.                     EquipmentName = "WEAPON_SNIPERRIFLE",
  61.                     NiceName = "Sniper Rifle",
  62.                     Components = new string[] { },
  63.                     Class = "PRIMARY",
  64.                     Price = 30000,
  65.                     Damage = 1500
  66.                 },
  67.                 new Equipment() {
  68.                     EquipmentName = "WEAPON_CARBINERIFLE",
  69.                     NiceName = "Carbine Rifle",
  70.                     Components = new string[] { },
  71.                     Class = "PRIMARY",
  72.                     Price = 50000,
  73.                     Damage = 240
  74.                 }
  75.             };
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement