From 27098f148b4232e786b9157a37e0a208b0339950 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 27 Dec 2020 22:26:52 -0600 Subject: [PATCH] Add fishing data --- scripts/server/fishing.js | 68 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 scripts/server/fishing.js diff --git a/scripts/server/fishing.js b/scripts/server/fishing.js new file mode 100644 index 00000000..3f468b7a --- /dev/null +++ b/scripts/server/fishing.js @@ -0,0 +1,68 @@ +// =========================================================================== +// Asshat-Gaming Roleplay +// https://github.com/VortrexFTW/gtac_asshat_rp +// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com) +// --------------------------------------------------------------------------- +// FILE: fishing.js +// DESC: Provides fishing functions and commands +// TYPE: Server (JavaScript) +// =========================================================================== + +let fishingLocations = [ + false, + [ + // GTA III + + ], + [ + // GTA Vice City + + ], + [ // GTA San Andreas + toVector3(403.8266, -2088.7598, 7.8359), + toVector3(398.7553, -2088.7490, 7.8359), + toVector3(396.2197,-2088.6692,7.8359), + toVector3(391.1094,-2088.7976,7.8359), + toVector3(383.4157,-2088.7849,7.8359), + toVector3(374.9598,-2088.7979,7.8359), + toVector3(369.8107,-2088.7927,7.8359), + toVector3(367.3637,-2088.7925,7.8359), + toVector3(362.2244,-2088.7981,7.8359), + toVector3(354.5382,-2088.7979,7.8359), + ], + false, + [ + // GTA IV + + ], +]; + +// --------------------------------------------------------------------------- + +let fishingCatchables = [ + // Fish + ["Salmon", 0, 500, 1, 15], + ["Tuna", 0, 700, 1, 15], + ["Crab", 0, 200, 1, 5], + ["Trout", 0, 250, 1, 15], + ["Sea Bass", 0, 550, 1, 8], + ["Shark", 0, 150, 1, 15], + ["Turtle", 0, 50, 1, 25], + ["Manta Ray", 0, 250, 1, 25], + ["Cat Fish", 0, 350, 1, 5], + ["Blue Marlin", 0, 450, 1, 5], + + // Junk + ["Can", 0, 0, 0, 0], + ["Pants", 0, 0, 0, 0], + ["Shoes", 0, 0, 0, 0], + ["Garbage", 0, 0, 0, 0], + ["Baby Diaper", 0, 0, 0, 0], + ["Tire", 0, 0, 0, 0], + ["Car Battery", 0, 0, 0, 0], + ["Horse Hoove", 0, 0, 0, 0], + ["Log", 0, 0, 0, 0], + ["Soggy Dildo", 0, 0, 0, 0], +]; + +// --------------------------------------------------------------------------- \ No newline at end of file