Finished Achievements. Needs implimentation.
This commit is contained in:
parent
324679c4a6
commit
22975aff26
6 changed files with 762 additions and 116 deletions
|
|
@ -27,7 +27,8 @@ global.foodRate = 0; // Amount of food player eats per day, affects radPointsCa
|
|||
global.path = 0; // Path player is currently on, 0 = Main, 1 = A, 2 = B
|
||||
global.location = 0; // Location on main path, 0-255 = main, 500-1000 = A, 1500-2000 = B
|
||||
global.locationA = 0; // Location on path A
|
||||
global.locationB =0; // Location on path B
|
||||
global.locationB = 0; // Location on path B
|
||||
global.day = 0; // Current day of the game, if you reach 365 the game ends
|
||||
|
||||
global.reputation = {mwbos: 4, legion: 4, ncr: 2, bos: 1, enclave: 10, abomination: 0, raider: 0}
|
||||
// Rep for each faction. Number between 0(worst) and 10(best), 5 is neutral
|
||||
|
|
@ -36,6 +37,8 @@ global.daysSinceScav = 0; // Days since player last scavenged. Must be >= 15 to
|
|||
|
||||
global.name = "placeholder"; // Player name, changed when the game starts
|
||||
|
||||
global.testDeath = false; // Used to test death, set to true to kill player
|
||||
|
||||
global.supplyList = [ // Supplies: chems, aid
|
||||
{name: "Food", description: "Misc foods", cost: 1, weight: 0},
|
||||
{name: "Stimpak", description: "A Stimpak syringe, heals 25 HP", cost: 5, weight: 0.5},
|
||||
|
|
@ -78,7 +81,7 @@ global.equipmentList = [ // Equipment: weapons, armor, tools
|
|||
{name: "T-51 Power Armor", description: "T-51 Power Armor, excellent protection from ballistic damage.", type: "parmor", resistances: {balistic: 50, slash: 50, laser: 30, plasma: 30}, unit: "dt", cost: 5, weight: 5},
|
||||
|
||||
// Special Armor
|
||||
{name: "Recon Under Armor", description: "A set of recon armor, for use in Power Armor", type: "uarmor", value: "5", unit: "dr",cost: 20, weight: 20},
|
||||
{name: "Chinese Stealth Suit", description: "Chinese Stealth Suit, +25% Chance to skip encounter if worn", type: "uarmor", value: "5", unit: "dr",cost: 20, weight: 20},
|
||||
{name: "Excavator Power Armor", description: "Excavator Power Armor, +25% Chance to find extra loot", type: "parmor", resistances: {balistic: 5, slash: 5, laser: 5, plasma: 5}, unit: "dt", cost: 5, weight: 5},
|
||||
|
||||
// Even MORE Specialer Armor
|
||||
|
|
@ -92,20 +95,36 @@ global.achievements = [
|
|||
{name: "Force of Habit", description: "Destroy the Midwest BoS", unlocked: false},
|
||||
{name: "Profligate", description: "Destroy Flagstaff", unlocked: false},
|
||||
{name: "Fold", description: "Kill Mr.House, possibly dooming New Vegas", unlocked: false},
|
||||
{name: "Rockets Red Glare", description: "Activate the Hopeville nuk.", unlocked: false},
|
||||
{name: "Rockets Red Glare", description: "Activate the Hopeville nuke.", unlocked: false},
|
||||
{name: "Revenge", description: "Destroy Shady Sands or all NCR cities (depending on path)", unlocked: false},
|
||||
{name: "", description: "Destroy Eureka", unlocked: false},
|
||||
{name: "Eureka!", description: "Destroy Eureka", unlocked: false},
|
||||
{name: "Pit Stop", description: "Destroy Lost Hills", unlocked: false},
|
||||
|
||||
// Secrets
|
||||
{name: "", description: "Find the Excavator Power Armor", unlocked: false},
|
||||
{name: "Ash Heap Native", description: "Find the Excavator Power Armor", unlocked: false},
|
||||
{name: "Commie Scum", description: "Find the Chinese Stealth Suit", unlocked: false},
|
||||
{name: "Bots on Parade", description: "Reactivate the Calculator", unlocked: false},
|
||||
{name: "7 Karat Run", description: "Find the Platnium Chip", unlocked: false},
|
||||
{name: "What in the Goddamn!?", description: "Shoot and kill Benny in the Tops Casino", unlocked: false},
|
||||
{name: "A chore, like any other", description: "Defeat the Malpais Legate, winning the Battle of Hoover Dam", unlocked: false},
|
||||
{name: "Vault-Tec Loyalist", description: "Destory Shady Sands with the Hopeville nuke", unlocked: false},
|
||||
{name: "For Auld Lang Syne", description: "Meet the Enclave Remnants in New Vegas"},
|
||||
{name: "High Roller", description: "Win a game of slots"},
|
||||
|
||||
// Power Armor
|
||||
{name: "Rocket 69", description: "Apply the Jetpack upgrade to your T-60 Power Armor"},
|
||||
{name: "Overgrown", description: "Apply the Strangle Heart upgrade to your Ultracite Power Armor"},
|
||||
{name: "Gannon Would Be Proud", description: "Apply the Tesla upgrade to your APA Mk.I"},
|
||||
|
||||
{name: "All that Glitters", description: "Discover the T-65 Power Armor"},
|
||||
{name: "Iconic", description: "Discover the T-51 Power Armor"},
|
||||
{name: "510 Years Old", description: "Discover the APA Mk.II"},
|
||||
|
||||
// Faction Rep
|
||||
|
||||
//
|
||||
{name: "Golden Branch", description: "Become Idolized within the NCR"},
|
||||
{name: "Frumentari", description: "Become Idolized within the Legion"},
|
||||
{name: "Double Agent", description: "Become Idolized within the Lost Hills Brotherhood"},
|
||||
{name: "Medal of Freedom", description: "Become Idolized within the Enclave"},
|
||||
{name: "Presidential Suite", description: "Become Idolized within New Vegas"},
|
||||
{name: "Uneasy Alliance", description: "Become Idolized within the Midwest Brotherhood"},
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue