Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 6.86 KB | None | 0 0
  1.  
  2.     Public Function InitMastermind() As SkillTree
  3.         Dim result As SkillTree = InitSkillTree()
  4.  
  5.         result.Base.Name = "Mastermind"
  6.         result.Base.Description = "The Mastermind is a manipulative leader who excels in situational control." & Environment.NewLine & _
  7.                 Environment.NewLine & _
  8.                 "Spending the first point in the Mastermind skill tree unlocks the ability to place the doctor bag deployable. The doctor bag can be used to regain health." & Environment.NewLine & _
  9.                 Environment.NewLine & _
  10.                 "The doctor bag has 2 charges in its basic state."
  11.  
  12.         result.Tier1.TierDesc = "Increases your doctor bag interaction speed by 20%"
  13.         result.Tier1.SkillPoint1.Name = "Cable Guy"
  14.         result.Tier1.SkillPoint1.BaseDescription = "You can cable tie hostages 75% faster."
  15.         result.Tier1.SkillPoint1.AceDescription = "Increases your supply of cable ties by 4."
  16.         result.Tier1.SkillPoint2.Name = "Combat Medic"
  17.         result.Tier1.SkillPoint2.BaseDescription = "After you have revived a crew member, you receive a 25% damage bonus for 10 seconds."
  18.         result.Tier1.SkillPoint2.AceDescription = "Reviving a crew member gives them 30% more health."
  19.         result.Tier1.SkillPoint3.Name = "Endurance"
  20.         result.Tier1.SkillPoint3.BaseDescription = "Increases your stamina by 100%."
  21.         result.Tier1.SkillPoint3.AceDescription = "Increases stamina for you and your crew by 50%."
  22.  
  23.         result.Tier2.TierDesc = "Increases stamina for you and your crew by 15%"
  24.         result.Tier2.SkillPoint1.Name = "Inside Man"
  25.         result.Tier2.SkillPoint1.BaseDescription = "Reduces the asset costs in the Job Interview menu by 50%."
  26.         result.Tier2.SkillPoint1.AceDescription = "Unlocks special Inside Man assets in the Job Interview menu."
  27.         result.Tier2.SkillPoint2.Name = "Fast Learner"
  28.         result.Tier2.SkillPoint2.BaseDescription = "You gain 15% more experience when you complete days and jobs."
  29.         result.Tier2.SkillPoint2.AceDescription = "Your crew gains 30% more experience when you complete days and jobs."
  30.         result.Tier2.SkillPoint3.Name = "Leadership"
  31.         result.Tier2.SkillPoint3.BaseDescription = "You and your crew's weapon stability with pistols is increased by 25%."
  32.         result.Tier2.SkillPoint3.AceDescription = "You and your crew's weapon stability with all weapons is increased by 50%."
  33.  
  34.         result.Tier3.TierDesc = "Increases your shout distance by 25%"
  35.         result.Tier3.SkillPoint1.Name = "Spotter"
  36.         result.Tier3.SkillPoint1.BaseDescription = "Special enemies marked by you take 15% more damage."
  37.         result.Tier3.SkillPoint1.AceDescription = "Unlocks the Spotter asset in the Job Interview menu. Dureing stealth the Spotter will highlight guards for you and your crew."
  38.         result.Tier3.SkillPoint2.Name = "Equilibrium"
  39.         result.Tier3.SkillPoint2.BaseDescription = "Increases your accuracy with pistols by 10% and decreses the time it takes to pull and put away pistols by 50%."
  40.         result.Tier3.SkillPoint2.AceDescription = "Increases your rate of fire with pistols by 100%."
  41.         result.Tier3.SkillPoint3.Name = "Dominator"
  42.         result.Tier3.SkillPoint3.BaseDescription = "You and your crew can now intimidate a non-special enemy into a hostage. Less well trained enemies are easier to intimidate."
  43.         result.Tier3.SkillPoint3.AceDescription = "The power and range of your intimidation is increased by 50%."
  44.  
  45.         result.Tier4.TierDesc = "Increases health for you and your crew by 10%"
  46.         result.Tier4.SkillPoint1.Name = "Stockholm Syndrome"
  47.         result.Tier4.SkillPoint1.BaseDescription = "Nearby civilians have a chance of reviving you if you interact with them."
  48.         result.Tier4.SkillPoint1.AceDescription = "Civilians reviving you have a chance of giving you ammunition."
  49.         result.Tier4.SkillPoint2.Name = "Combat Doctor"
  50.         result.Tier4.SkillPoint2.BaseDescription = "You can now place 2 doctor bags instead of just one."
  51.         result.Tier4.SkillPoint2.AceDescription = "Your doctor bags have 2 more charges."
  52.         result.Tier4.SkillPoint3.Name = "Joker"
  53.         result.Tier4.SkillPoint3.BaseDescription = "You can convert a non-special enemy to fight on your side. This can not be done during stealth and the enemy must have surrendered in order for you to convert it."
  54.         result.Tier4.SkillPoint3.AceDescription = "The converted enemy gains 55% more health and deals 45% more damage."
  55.         result.Tier4.SkillPoint3.NeedsTier = 3
  56.         result.Tier4.SkillPoint3.NeedsSkill = 3
  57.  
  58.         result.Tier5.TierDesc = "The time to convert an enemy is reduced by 65%"
  59.         result.Tier5.SkillPoint1.Name = "Black Marketeer"
  60.         result.Tier5.SkillPoint1.BaseDescription = "Reduces the cost of all your purchases by 10%."
  61.         result.Tier5.SkillPoint1.AceDescription = "Further reduces the cost of all your purchases by 20% and selling items is now 25% more lucrative."
  62.         result.Tier5.SkillPoint2.Name = "Gunslinger"
  63.         result.Tier5.SkillPoint2.BaseDescription = "You reload pistols 50% faster."
  64.         result.Tier5.SkillPoint2.AceDescription = "You deal 50% additional damage with pistols."
  65.         result.Tier5.SkillPoint3.Name = "Kilmer"
  66.         result.Tier5.SkillPoint3.BaseDescription = "Increases your reload speed with assault rifles and sniper rifles by 25%."
  67.         result.Tier5.SkillPoint3.AceDescription = "Your weapon accuracy while moving with assault rifles and sniper rifles is increased by 50%." & Environment.NewLine & _
  68.                 Environment.NewLine & _
  69.                 "Run and reload - you can now reload your weapons while sprinting."
  70.  
  71.         result.Tier6.TierDesc = "The power of your intimidation when you shout is increased by 200%. Reduces the asset costs in the Job Interview by 50%"
  72.         result.Tier6.SkillPoint1.Name = "Control Freak"
  73.         result.Tier6.SkillPoint1.BaseDescription = "Noise created by you intimidates civilians."
  74.         result.Tier6.SkillPoint1.AceDescription = "Civilians remain intimidated 50% longer."
  75.         result.Tier6.SkillPoint2.Name = "Pistol Messiah"
  76.         result.Tier6.SkillPoint2.BaseDescription = "While in bleedout, you are instantly revived if you kill an enemy with a pistol. You only have 1 charge. You will replenish your charge when you get out of custody."
  77.         result.Tier6.SkillPoint2.AceDescription = "You gain an additianal 2 charges. You will replenish your charge when you get out of custody."
  78.         result.Tier6.SkillPoint3.Name = "Inspire"
  79.         result.Tier6.SkillPoint3.BaseDescription = "You revive crew members 50% faster. Shouting at your teammates will increase their movement speed by 20% for 10 seconds."
  80.         result.Tier6.SkillPoint3.AceDescription = "There is a 75% chance that you can revive crew members at a distance by shouting at them."
  81.  
  82.         Return result
  83.     End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement