-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmexican_gangsters.py
More file actions
8144 lines (6904 loc) · 371 KB
/
mexican_gangsters.py
File metadata and controls
8144 lines (6904 loc) · 371 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
"""
Mexican Gangsters - A Text-based RPG Game
Set in New Mexico with GTA-style gameplay mechanics
Features:
- Open-world exploration across New Mexico cities
- Criminal activities and missions
- Gang reputation system
- Vehicle system with stealing and driving
- Police wanted level system
- Weapon and money management
- Drug dealing and territory control
- Character customization and stats
"""
import random
import json
import os
import time
from typing import Optional
from datetime import datetime
import sys
# Import colorama with proper fallback
try:
import colorama
from colorama import Fore, Back, Style
colorama.init()
COLORS_AVAILABLE = True
except ImportError:
# Create simple fallback objects
from types import SimpleNamespace
Fore = SimpleNamespace(
RED="", YELLOW="", GREEN="", CYAN="", BLUE="", MAGENTA="",
WHITE="", LIGHTRED_EX="", LIGHTGREEN_EX="", LIGHTBLUE_EX="",
LIGHTMAGENTA_EX="", LIGHTCYAN_EX=""
)
Back = SimpleNamespace(
RED="", YELLOW="", GREEN="", CYAN="", BLUE="", MAGENTA="",
WHITE="", BLACK=""
)
Style = SimpleNamespace(RESET_ALL="", BRIGHT="", DIM="")
COLORS_AVAILABLE = False
# Game configuration
SAVE_FILE = "mexican_gangsters_save.json"
# New enhanced systems
SPECIAL_EVENTS = {
"cartel_meeting": {
"name": "Reunión del Cartel / Cartel Meeting",
"description": "Un alto jefe del cartel quiere reunirse contigo / A high-ranking cartel boss wants to meet you",
"requirements": {"respect": 75, "criminal_level": 3},
"rewards": {"money": 15000, "respect": 20, "special_mission": True},
"consequences": {"police_attention": 15}
},
"police_raid": {
"name": "Redada Policial / Police Raid",
"description": "La policía está haciendo redadas en la ciudad / Police are conducting raids in the city",
"requirements": {"wanted_level": 3},
"effects": {"all_activities_dangerous": True, "escape_chance": 0.6},
"duration": 3 # days
},
"gang_war": {
"name": "Guerra de Pandillas / Gang War",
"description": "Las pandillas rivales están en guerra / Rival gangs are at war",
"requirements": {"gang_affiliation": True, "respect": 50},
"rewards": {"territory_control": True, "money": 25000},
"risks": {"death_chance": 0.3, "injury_chance": 0.6}
},
"corrupt_official": {
"name": "Oficial Corrupto / Corrupt Official",
"description": "Un oficial de policía corrupto ofrece sus servicios / A corrupt police officer offers services",
"requirements": {"money": 10000, "criminal_level": 2},
"benefits": {"reduced_wanted": True, "inside_info": True},
"cost": 5000
}
}
BUSINESS_VENTURES = {
"drug_lab": {
"name": "Laboratorio de Drogas / Drug Lab",
"spanish_name": "Laboratorio de Metanfetaminas",
"cost": 50000,
"daily_income": 3000,
"risk_level": 4,
"requirements": {"criminal_level": 3, "chemistry_skill": 5},
"upkeep": 1000,
"police_attention": 20
},
"chop_shop": {
"name": "Desguace / Chop Shop",
"spanish_name": "Taller de Desguace",
"cost": 30000,
"daily_income": 1500,
"risk_level": 2,
"requirements": {"criminal_level": 2, "mechanics_skill": 4},
"upkeep": 500,
"police_attention": 10
},
"smuggling_route": {
"name": "Ruta de Contrabando / Smuggling Route",
"spanish_name": "Ruta de Contrabando Fronterizo",
"cost": 75000,
"daily_income": 5000,
"risk_level": 5,
"requirements": {"criminal_level": 4, "connections": 3},
"upkeep": 2000,
"police_attention": 30
},
"money_laundering": {
"name": "Lavado de Dinero / Money Laundering",
"spanish_name": "Operación de Lavado",
"cost": 100000,
"daily_income": 2000,
"risk_level": 3,
"requirements": {"criminal_level": 4, "intelligence": 7},
"upkeep": 3000,
"police_attention": 25,
"special_ability": "clean_dirty_money"
}
}
REPUTATION_SYSTEM = {
"street_thug": {"min_respect": 0, "max_respect": 24, "title": "Matón Callejero / Street Thug"},
"small_time": {"min_respect": 25, "max_respect": 49, "title": "Delincuente Menor / Small-time Criminal"},
"enforcer": {"min_respect": 50, "max_respect": 74, "title": "Sicario / Enforcer"},
"lieutenant": {"min_respect": 75, "max_respect": 99, "title": "Lugarteniente / Lieutenant"},
"boss": {"min_respect": 100, "max_respect": 149, "title": "Jefe / Boss"},
"kingpin": {"min_respect": 150, "max_respect": 999, "title": "Capo / Kingpin"}
}
CITIES = {
"Albuquerque": {
"description": "La ciudad más grande de Nuevo México, perfecta para grandes golpes y tratos peligrosos",
"english_desc": "The largest city in New Mexico, perfect for big scores and dangerous deals",
"districts": ["Ciudad Vieja", "Centro", "Lado Oeste", "Alturas del Noreste", "Las Colinas", "Valle del Río", "Westside", "Foothills"],
"danger_level": 3,
"cartel_presence": "Los Hermanos del Desierto",
"specialties": ["drug_labs", "money_laundering", "weapons_trafficking"],
"police_stations": 4,
"hospitals": 3,
"airports": 1,
"major_highways": ["I-25", "I-40"],
"population": 560000
},
"Santa Fe": {
"description": "La capital con rica historia y blancos adinerados, pero vigilancia pesada",
"english_desc": "The capital city with rich history and wealthy targets, but heavy surveillance",
"districts": ["La Plaza", "Camino del Cañón", "Distrito Ferroviario", "Centro", "Lado Este", "Midtown", "Eastside", "Southside"],
"danger_level": 2,
"cartel_presence": "Cartel de la Corona",
"specialties": ["art_theft", "political_corruption", "high_society_cons"],
"police_stations": 3,
"hospitals": 2,
"airports": 1,
"major_highways": ["I-25", "US-285"],
"population": 85000
},
"Las Cruces": {
"description": "Ciudad fronteriza con oportunidades de contrabando y fuerte presencia del cartel",
"english_desc": "Border town with smuggling opportunities and strong cartel presence",
"districts": ["Valle de Mesilla", "Mesa del Este", "Rancho Sonoma", "Cerros Picacho", "Centro", "Universidad", "West Mesa", "East Mesa"],
"danger_level": 4,
"cartel_presence": "Cártel de la Frontera Sur",
"specialties": ["human_trafficking", "border_smuggling", "cartel_wars"],
"police_stations": 2,
"hospitals": 2,
"airports": 1,
"major_highways": ["I-25", "I-10"],
"population": 215000
},
"Roswell": {
"description": "Pequeña ciudad del desierto con secretos militares y blancos fáciles",
"english_desc": "Small desert town with military secrets and easy targets",
"districts": ["Centro", "Alturas Militares", "Del Norte", "Club de Campo", "Main Sur", "Industrial", "Airport District"],
"danger_level": 1,
"cartel_presence": "Pandilla de los Extraterrestres",
"specialties": ["alien_conspiracy", "military_theft", "rural_meth"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-285", "US-70"],
"population": 48000
},
"Taos": {
"description": "Pueblo artístico en las montañas con turistas ricos y contrabando de lujo",
"english_desc": "Artistic mountain town with wealthy tourists and luxury smuggling",
"districts": ["Plaza Histórica", "Ranchos de Taos", "Pueblo", "Ski Valley", "Arroyo Seco", "El Prado"],
"danger_level": 2,
"cartel_presence": "Los Artistas del Norte",
"specialties": ["art_forgery", "luxury_theft", "mountain_smuggling"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-64", "NM-68"],
"population": 6000
},
"Farmington": {
"description": "Centro de energía con trabajadores petroleros y dinero fácil",
"english_desc": "Energy hub with oil workers and easy money",
"districts": ["Centro", "Animas Valley", "La Plata", "Crouch Mesa", "Northside", "Industrial Park"],
"danger_level": 3,
"cartel_presence": "Cartel del Petróleo Negro",
"specialties": ["oil_theft", "worker_extortion", "energy_smuggling"],
"police_stations": 2,
"hospitals": 2,
"airports": 1,
"major_highways": ["US-64", "US-550"],
"population": 46000
},
"Gallup": {
"description": "Pueblo fronterizo con comercio nativo y contrabando tribal",
"english_desc": "Border town with native trade and tribal smuggling",
"districts": ["Centro Histórico", "Red Rock", "Miyamura", "Gamerco", "Church Rock", "Twin Lakes"],
"danger_level": 3,
"cartel_presence": "Hermandad de la Roca Roja",
"specialties": ["casino_robbery", "artifact_theft", "reservation_smuggling"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["I-40", "US-491"],
"population": 22000
},
"Silver City": {
"description": "Antiguo pueblo minero con túneles secretos y operaciones subterráneas",
"english_desc": "Old mining town with secret tunnels and underground operations",
"districts": ["Centro Histórico", "College District", "Chihuahua Hill", "Swan Street", "Little Walnut", "Boston Hill"],
"danger_level": 2,
"cartel_presence": "Los Mineros Oscuros",
"specialties": ["underground_labs", "precious_metal_theft", "tunnel_smuggling"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-180", "NM-90"],
"population": 10000
},
"Carlsbad": {
"description": "Ciudad de cuevas con turismo y oportunidades de secuestro",
"english_desc": "Cave city with tourism and kidnapping opportunities",
"districts": ["Centro", "Riverside", "La Huerta", "Country Club", "North Carlsbad", "Industrial"],
"danger_level": 2,
"cartel_presence": "Señores de las Cavernas",
"specialties": ["tourist_kidnapping", "cave_smuggling", "potash_theft"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-62", "US-285"],
"population": 32000
},
"Clovis": {
"description": "Ciudad agrícola con rutas de contrabando rural y laboratorios escondidos",
"english_desc": "Agricultural city with rural smuggling routes and hidden labs",
"districts": ["Centro", "Tierra Blanca", "West Seventh", "North Prince", "Colonial Park", "Curry Station"],
"danger_level": 3,
"cartel_presence": "Los Agricultores Violentos",
"specialties": ["rural_meth_labs", "cattle_rustling", "grain_smuggling"],
"police_stations": 2,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-60", "US-70"],
"population": 39000
},
"Española": {
"description": "Valle histórico con cultura rica y contrabando tradicional",
"english_desc": "Historic valley with rich culture and traditional smuggling",
"districts": ["Centro", "Sombrillo", "Santa Cruz", "Alcalde", "Velarde", "Rio Arriba"],
"danger_level": 3,
"cartel_presence": "Hermanos del Valle Sagrado",
"specialties": ["cultural_artifact_theft", "family_vendettas", "mountain_hideouts"],
"police_stations": 1,
"hospitals": 1,
"airports": 0,
"major_highways": ["US-84", "NM-68"],
"population": 10000
},
"Portales": {
"description": "Universidad y agricultura con tráfico de drogas estudiantil",
"english_desc": "University and agriculture with student drug trafficking",
"districts": ["Universidad", "Centro", "Roosevelt Park", "West Side", "Farm District", "Country Club"],
"danger_level": 2,
"cartel_presence": "Pandilla Universitaria",
"specialties": ["campus_dealing", "agricultural_chemicals", "student_recruitment"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-70", "NM-467"],
"population": 12000
},
"Raton": {
"description": "Paso de montaña fronterizo con Colorado y contrabando internacional",
"english_desc": "Mountain pass border with Colorado and international smuggling",
"districts": ["Centro Histórico", "Raton Pass", "Tiger Drive", "Second Street", "Mountain View", "Railroad District"],
"danger_level": 3,
"cartel_presence": "Los Vigilantes del Paso",
"specialties": ["mountain_smuggling", "train_robbery", "colorado_connection"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["I-25", "US-64"],
"population": 6000
},
"Truth or Consequences": {
"description": "Pueblo extraño con aguas termales y actividades paranormales",
"english_desc": "Strange town with hot springs and paranormal activities",
"districts": ["Centro", "Hot Springs", "Elephant Butte", "Williamsburg", "Palomas", "Desert Hills"],
"danger_level": 2,
"cartel_presence": "Los Curanderos del Desierto",
"specialties": ["tourist_scams", "spiritual_fraud", "desert_burial"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["I-25", "US-195"],
"population": 6000
},
"Aztec": {
"description": "Ruinas antiguas con turismo arqueológico y robo de artefactos",
"english_desc": "Ancient ruins with archaeological tourism and artifact theft",
"districts": ["Centro", "Aztec Ruins", "Hart Canyon", "Flora Vista", "Crouch Mesa", "Archaeological Zone"],
"danger_level": 2,
"cartel_presence": "Guardianes de los Ancestros",
"specialties": ["artifact_smuggling", "archaeological_theft", "tourist_robbery"],
"police_stations": 1,
"hospitals": 1,
"airports": 0,
"major_highways": ["US-550", "NM-173"],
"population": 6500
},
"Alamogordo": {
"description": "Centro de investigación espacial con tecnología clasificada",
"english_desc": "Space research center with classified technology",
"districts": ["Centro", "Desert Aire", "Chaparral", "North End", "Alameda Park", "Research District"],
"danger_level": 3,
"cartel_presence": "Cartel del Espacio",
"specialties": ["space_tech_theft", "research_espionage", "military_secrets"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-54", "US-70"],
"population": 31000
},
"Hobbs": {
"description": "Boomtown petrolero con trabajadores ricos y poca vigilancia",
"english_desc": "Oil boomtown with wealthy workers and little surveillance",
"districts": ["Centro", "North Hobbs", "East Hobbs", "Del Norte", "Industrial", "Oilfield District"],
"danger_level": 3,
"cartel_presence": "Barones del Petróleo",
"specialties": ["oil_worker_robbery", "equipment_theft", "pipeline_sabotage"],
"police_stations": 1,
"hospitals": 1,
"airports": 1,
"major_highways": ["US-62", "NM-18"],
"population": 38000
}
}
VEHICLES = {
"stolen_car": {"name": "Carro Robado / Stolen Car", "speed": 2, "reliability": 60, "value": 500, "spanish": "Carro Robado"},
"motorcycle": {"name": "Motocicleta / Motorcycle", "speed": 4, "reliability": 70, "value": 1200, "spanish": "Motocicleta"},
"pickup_truck": {"name": "Camioneta / Pickup Truck", "speed": 1, "reliability": 90, "value": 800, "spanish": "Camioneta"},
"sports_car": {"name": "Carro Deportivo / Sports Car", "speed": 5, "reliability": 80, "value": 3000, "spanish": "Carro Deportivo"},
"suv": {"name": "SUV", "speed": 2, "reliability": 85, "value": 2200, "spanish": "SUV"},
"lowrider": {"name": "Lowrider", "speed": 2, "reliability": 75, "value": 1800, "spanish": "Lowrider"},
"muscle_car": {"name": "Muscle Car", "speed": 4, "reliability": 75, "value": 2500, "spanish": "Carro Músculo"},
"chopper": {"name": "Chopper Motorcycle", "speed": 3, "reliability": 65, "value": 2000, "spanish": "Chopper"},
"armored_car": {"name": "Carro Blindado / Armored Car", "speed": 1, "reliability": 95, "value": 5000, "spanish": "Carro Blindado"},
"police_car": {"name": "Patrulla / Police Car", "speed": 3, "reliability": 85, "value": 1500, "spanish": "Patrulla"},
"ambulance": {"name": "Ambulancia / Ambulance", "speed": 2, "reliability": 90, "value": 1800, "spanish": "Ambulancia"},
"fire_truck": {"name": "Camión de Bomberos / Fire Truck", "speed": 1, "reliability": 95, "value": 3000, "spanish": "Camión de Bomberos"},
"semi_truck": {"name": "Tráiler / Semi Truck", "speed": 1, "reliability": 95, "value": 4000, "spanish": "Tráiler"},
"luxury_sedan": {"name": "Sedán de Lujo / Luxury Sedan", "speed": 3, "reliability": 90, "value": 4500, "spanish": "Sedán de Lujo"},
"convertible": {"name": "Convertible", "speed": 4, "reliability": 70, "value": 3500, "spanish": "Convertible"},
"van": {"name": "Camioneta / Van", "speed": 2, "reliability": 80, "value": 1500, "spanish": "Camioneta"},
"atv": {"name": "Cuatrimoto / ATV", "speed": 3, "reliability": 75, "value": 900, "spanish": "Cuatrimoto"},
"dirt_bike": {"name": "Moto de Cross / Dirt Bike", "speed": 5, "reliability": 60, "value": 800, "spanish": "Moto de Cross"},
"limousine": {"name": "Limusina / Limousine", "speed": 2, "reliability": 85, "value": 6000, "spanish": "Limusina"},
"monster_truck": {"name": "Monster Truck", "speed": 2, "reliability": 80, "value": 3500, "spanish": "Monster Truck"}
}
# Street Racing Circuits
RACING_CIRCUITS = {
"desert_highway": {
"name": "Desert Highway Circuit",
"spanish": "Circuito Carretera del Desierto",
"location": "Albuquerque",
"distance": "15 miles",
"difficulty": 3,
"entry_fee": 2000,
"max_prize": 10000,
"hazards": ["sand_storms", "police_checkpoints", "rival_racers"]
},
"mountain_pass": {
"name": "Mountain Pass Challenge",
"spanish": "Desafío del Paso de Montaña",
"location": "Santa Fe",
"distance": "12 miles",
"difficulty": 4,
"entry_fee": 3500,
"max_prize": 15000,
"hazards": ["sharp_turns", "cliff_edges", "weather_conditions"]
},
"border_run": {
"name": "Border Run",
"spanish": "Carrera Fronteriza",
"location": "Las Cruces",
"distance": "20 miles",
"difficulty": 5,
"entry_fee": 5000,
"max_prize": 25000,
"hazards": ["border_patrol", "cartel_interference", "smuggler_routes"]
},
"alien_highway": {
"name": "Alien Highway Sprint",
"spanish": "Sprint Carretera Alienígena",
"location": "Roswell",
"distance": "8 miles",
"difficulty": 2,
"entry_fee": 1000,
"max_prize": 6000,
"hazards": ["ufo_sightings", "military_presence", "desert_mirages"]
}
}
# Underground Fighting Tournaments
FIGHTING_TOURNAMENTS = {
"warehouse_brawl": {
"name": "Warehouse Brawl",
"spanish": "Pelea de Almacén",
"location": "Albuquerque",
"entry_fee": 1500,
"rounds": 3,
"max_prize": 8000,
"opponents": ["street_fighter", "ex_boxer", "gang_enforcer"]
},
"cartel_championship": {
"name": "Cartel Championship",
"spanish": "Campeonato del Cartel",
"location": "Las Cruces",
"entry_fee": 4000,
"rounds": 5,
"max_prize": 20000,
"opponents": ["cartel_hitman", "prison_champion", "underground_legend"]
},
"desert_death_match": {
"name": "Desert Death Match",
"spanish": "Combate a Muerte del Desierto",
"location": "Santa Fe",
"entry_fee": 2500,
"rounds": 4,
"max_prize": 12000,
"opponents": ["desert_warrior", "mma_fighter", "bounty_hunter"]
}
}
# Property Investment System
PROPERTIES = {
"safe_house": {
"name": "Safe House",
"spanish": "Casa de Seguridad",
"cost": 25000,
"monthly_upkeep": 500,
"benefits": {"heat_reduction": 10, "storage_space": 20},
"description": "A secure location to lay low and store items"
},
"warehouse": {
"name": "Criminal Warehouse",
"spanish": "Almacén Criminal",
"cost": 75000,
"monthly_upkeep": 1200,
"benefits": {"storage_space": 100, "smuggling_bonus": 15},
"description": "Large storage facility for contraband operations"
},
"nightclub": {
"name": "Nightclub",
"spanish": "Club Nocturno",
"cost": 150000,
"monthly_upkeep": 3000,
"benefits": {"daily_income": 2000, "reputation_boost": 5},
"description": "Legitimate front business with good income"
},
"luxury_mansion": {
"name": "Luxury Mansion",
"spanish": "Mansión de Lujo",
"cost": 500000,
"monthly_upkeep": 8000,
"benefits": {"prestige": 50, "gang_capacity": 15, "daily_income": 1000},
"description": "Ultimate status symbol and gang headquarters"
}
}
# Advanced NPC System
NPCS = {
"informant": {
"name": "El Soplón / The Snitch",
"location": "Albuquerque",
"services": ["police_intel", "gang_info", "job_tips"],
"relationship": 0,
"trust_level": "neutral",
"dialogue": {
"greeting": "¿Qué necesitas saber? / What do you need to know?",
"friendly": "Siempre tengo información para mis amigos / I always have info for my friends",
"hostile": "No hablo con enemigos / I don't talk to enemies"
}
},
"mechanic": {
"name": "Miguel el Mecánico / Miguel the Mechanic",
"location": "Santa Fe",
"services": ["vehicle_upgrades", "custom_parts", "stolen_car_cleanup"],
"relationship": 0,
"trust_level": "neutral",
"dialogue": {
"greeting": "Necesitas arreglos? / Need repairs?",
"friendly": "Para ti, precios especiales / Special prices for you",
"hostile": "No trabajo con ratas / I don't work with rats"
}
},
"arms_dealer": {
"name": "Doña Carmen / Lady Carmen",
"location": "Las Cruces",
"services": ["rare_weapons", "ammunition", "explosives"],
"relationship": 0,
"trust_level": "neutral",
"dialogue": {
"greeting": "¿Qué armamento buscas? / What weapons are you looking for?",
"friendly": "Tengo las mejores armas para mis clientes leales / I have the best weapons for loyal customers",
"hostile": "Fuera de aquí / Get out of here"
}
}
}
# Random Events System
RANDOM_EVENTS = [
{
"name": "police_checkpoint",
"spanish": "Control Policial",
"description": "Police checkpoint ahead",
"probability": 15,
"consequences": ["wanted_increase", "bribe_opportunity", "arrest_risk"]
},
{
"name": "rival_gang_encounter",
"spanish": "Encuentro con Pandilla Rival",
"description": "Rival gang members spotted",
"probability": 12,
"consequences": ["gang_war", "territory_dispute", "respect_challenge"]
},
{
"name": "drug_deal_gone_wrong",
"spanish": "Trato de Drogas Salió Mal",
"description": "A drug deal has gone sideways",
"probability": 8,
"consequences": ["money_loss", "heat_increase", "opportunity"]
},
{
"name": "federal_investigation",
"spanish": "Investigación Federal",
"description": "Federal agents are investigating your operations",
"probability": 5,
"consequences": ["major_heat", "asset_seizure", "informant_risk"]
},
{
"name": "cartel_invitation",
"spanish": "Invitación del Cartel",
"description": "A major cartel wants to meet",
"probability": 3,
"consequences": ["alliance_opportunity", "territory_expansion", "dangerous_mission"]
}
]
# Police Career System
POLICE_RANKS = {
"cadet": {
"name": "Police Cadet / Cadete de Policía",
"spanish": "Cadete de Policía",
"salary": 500,
"requirements": {"corruption": 0, "arrests": 0},
"abilities": ["patrol", "traffic_stops"]
},
"officer": {
"name": "Police Officer / Oficial de Policía",
"spanish": "Oficial de Policía",
"salary": 800,
"requirements": {"corruption": 0, "arrests": 5},
"abilities": ["patrol", "traffic_stops", "investigations", "drug_busts"]
},
"detective": {
"name": "Detective / Detective",
"spanish": "Detective",
"salary": 1200,
"requirements": {"corruption": 0, "arrests": 15},
"abilities": ["investigations", "undercover", "gang_raids", "interrogations"]
},
"sergeant": {
"name": "Sergeant / Sargento",
"spanish": "Sargento",
"salary": 1500,
"requirements": {"corruption": 0, "arrests": 30},
"abilities": ["team_leadership", "major_operations", "swat_coordination"]
},
"lieutenant": {
"name": "Lieutenant / Teniente",
"spanish": "Teniente",
"salary": 2000,
"requirements": {"corruption": 0, "arrests": 50},
"abilities": ["department_oversight", "federal_cooperation", "anti_cartel"]
},
"captain": {
"name": "Captain / Capitán",
"spanish": "Capitán",
"salary": 2500,
"requirements": {"corruption": 0, "arrests": 75},
"abilities": ["city_coordination", "budget_control", "political_liaison"]
}
}
POLICE_OPERATIONS = {
"patrol": {
"name": "Street Patrol / Patrulla Callejera",
"spanish": "Patrulla Callejera",
"time": 2,
"salary_bonus": 50,
"arrest_chance": 15,
"corruption_risk": 5
},
"traffic_stops": {
"name": "Traffic Enforcement / Control de Tráfico",
"spanish": "Control de Tráfico",
"time": 1,
"salary_bonus": 30,
"arrest_chance": 8,
"corruption_risk": 10
},
"drug_bust": {
"name": "Drug Bust / Operativo Antidrogas",
"spanish": "Operativo Antidrogas",
"time": 4,
"salary_bonus": 200,
"arrest_chance": 40,
"corruption_risk": 15
},
"gang_raid": {
"name": "Gang Raid / Redada de Pandillas",
"spanish": "Redada de Pandillas",
"time": 6,
"salary_bonus": 300,
"arrest_chance": 60,
"corruption_risk": 20
},
"undercover": {
"name": "Undercover Operation / Operación Encubierta",
"spanish": "Operación Encubierta",
"time": 8,
"salary_bonus": 500,
"arrest_chance": 80,
"corruption_risk": 25
}
}
# Federal law enforcement systems
FBI_THREAT_LEVELS = {
"low": {
"name": "Low Priority / Prioridad Baja",
"spanish": "Prioridad Baja",
"threshold": 50,
"description": "Local law enforcement can handle / Policía local puede manejar",
"response_time": 0,
"agents_deployed": 0
},
"medium": {
"name": "Medium Priority / Prioridad Media",
"spanish": "Prioridad Media",
"threshold": 100,
"description": "FBI monitoring initiated / Monitoreo FBI iniciado",
"response_time": 24,
"agents_deployed": 2
},
"high": {
"name": "High Priority / Prioridad Alta",
"spanish": "Prioridad Alta",
"threshold": 200,
"description": "Active FBI investigation / Investigación FBI activa",
"response_time": 12,
"agents_deployed": 5
},
"critical": {
"name": "Critical Threat / Amenaza Crítica",
"spanish": "Amenaza Crítica",
"threshold": 350,
"description": "FBI task force deployed / Fuerza especial FBI desplegada",
"response_time": 6,
"agents_deployed": 10
},
"maximum": {
"name": "Maximum Threat / Amenaza Máxima",
"spanish": "Amenaza Máxima",
"threshold": 500,
"description": "Joint federal response / Respuesta federal conjunta",
"response_time": 2,
"agents_deployed": 20
}
}
MILITARY_INTERVENTION_LEVELS = {
"none": {
"name": "No Intervention / Sin Intervención",
"spanish": "Sin Intervención",
"threshold": 0,
"description": "Civilian law enforcement / Fuerzas policiales civiles",
"forces_deployed": [],
"equipment": [],
"restrictions": []
},
"national_guard": {
"name": "National Guard / Guardia Nacional",
"spanish": "Guardia Nacional",
"threshold": 300,
"description": "State emergency declared / Emergencia estatal declarada",
"forces_deployed": ["National Guard units"],
"equipment": ["Armored vehicles", "Military-grade weapons"],
"restrictions": ["Border lockdown", "Increased checkpoints"]
},
"federal_task_force": {
"name": "Federal Task Force / Fuerza Especial Federal",
"spanish": "Fuerza Especial Federal",
"threshold": 500,
"description": "Multi-agency operation / Operación multi-agencia",
"forces_deployed": ["DEA", "ATF", "FBI", "Border Patrol"],
"equipment": ["SWAT teams", "Surveillance drones", "Helicopters"],
"restrictions": ["Communications monitoring", "Asset freezing"]
},
"military_support": {
"name": "Military Support / Apoyo Militar",
"spanish": "Apoyo Militar",
"threshold": 750,
"description": "Active military assistance / Asistencia militar activa",
"forces_deployed": ["US Army units", "Special Operations"],
"equipment": ["Military vehicles", "Advanced surveillance", "Air support"],
"restrictions": ["Martial law zones", "Curfews", "Travel restrictions"]
},
"full_intervention": {
"name": "Full Military Intervention / Intervención Militar Total",
"spanish": "Intervención Militar Total",
"threshold": 1000,
"description": "National security threat / Amenaza a seguridad nacional",
"forces_deployed": ["Joint Task Force", "Special Forces", "Intelligence"],
"equipment": ["Full military arsenal", "Satellite surveillance", "Cyber warfare"],
"restrictions": ["State of emergency", "Constitutional suspension", "Total lockdown"]
}
}
FBI_OPERATIONS = {
"surveillance": {
"name": "Surveillance Operation / Operación de Vigilancia",
"spanish": "Operación de Vigilancia",
"duration": 168, # 1 week in hours
"success_rate": 70,
"cost": 50000,
"evidence_gathered": 25,
"heat_reduction": -10,
"description": "Passive monitoring of criminal activities"
},
"undercover": {
"name": "Undercover Infiltration / Infiltración Encubierta",
"spanish": "Infiltración Encubierta",
"duration": 720, # 1 month in hours
"success_rate": 60,
"cost": 200000,
"evidence_gathered": 75,
"heat_reduction": -30,
"description": "Deep cover agent infiltrates criminal organization"
},
"raid": {
"name": "Federal Raid / Redada Federal",
"spanish": "Redada Federal",
"duration": 6,
"success_rate": 85,
"cost": 100000,
"evidence_gathered": 50,
"heat_reduction": -50,
"description": "Coordinated strike on criminal operations",
"arrest_chance": 80
},
"asset_seizure": {
"name": "Asset Seizure / Decomiso de Bienes",
"spanish": "Decomiso de Bienes",
"duration": 24,
"success_rate": 90,
"cost": 25000,
"money_seized": 0.3, # 30% of player money
"description": "Freezing and seizure of criminal assets"
},
"witness_protection": {
"name": "Witness Protection / Protección de Testigos",
"spanish": "Protección de Testigos",
"duration": 2160, # 3 months in hours
"success_rate": 95,
"cost": 500000,
"evidence_gathered": 100,
"description": "Turning associates into federal witnesses"
}
}
MILITARY_OPERATIONS = {
"reconnaissance": {
"name": "Military Reconnaissance / Reconocimiento Militar",
"spanish": "Reconocimiento Militar",
"duration": 72,
"effectiveness": 90,
"cost": 100000,
"description": "Advanced surveillance using military assets",
"equipment_used": ["Drones", "Satellites", "SIGINT"]
},
"joint_task_force": {
"name": "Joint Task Force / Fuerza Especial Conjunta",
"spanish": "Fuerza Especial Conjunta",
"duration": 168,
"effectiveness": 95,
"cost": 1000000,
"description": "Combined military and law enforcement operation",
"forces": ["Special Operations", "FBI", "DEA", "National Guard"]
},
"border_security": {
"name": "Border Security Enhancement / Seguridad Fronteriza",
"spanish": "Seguridad Fronteriza",
"duration": 8760, # 1 year
"effectiveness": 80,
"cost": 5000000,
"description": "Militarized border control operations",
"impact": "Smuggling difficulty +500%"
},
"cyber_warfare": {
"name": "Cyber Warfare / Guerra Cibernética",
"spanish": "Guerra Cibernética",
"duration": 24,
"effectiveness": 85,
"cost": 2000000,
"description": "Digital infiltration and disruption",
"targets": ["Communications", "Financial networks", "Digital operations"]
},
"special_operations": {
"name": "Special Operations / Operaciones Especiales",
"spanish": "Operaciones Especiales",
"duration": 48,
"effectiveness": 98,
"cost": 3000000,
"description": "Elite military units for high-value targets",
"success_rate": 95,
"lethality": "Extreme"
}
}
FEDERAL_AGENCIES = {
"fbi": {
"name": "Federal Bureau of Investigation",
"spanish": "Oficina Federal de Investigación",
"specialties": ["Criminal investigation", "Counterintelligence", "Cyber crimes"],
"jurisdiction": "National",
"response_threshold": 100,
"resources": "High"
},
"dea": {
"name": "Drug Enforcement Administration",
"spanish": "Administración de Control de Drogas",
"specialties": ["Drug trafficking", "Money laundering", "International cartels"],
"jurisdiction": "International",
"response_threshold": 75,
"resources": "Very High"
},
"atf": {
"name": "Alcohol, Tobacco, Firearms and Explosives",
"spanish": "Alcohol, Tabaco, Armas de Fuego y Explosivos",
"specialties": ["Weapons trafficking", "Explosives", "Gang violence"],
"jurisdiction": "National",
"response_threshold": 80,
"resources": "High"
},
"dhs": {
"name": "Department of Homeland Security",
"spanish": "Departamento de Seguridad Nacional",
"specialties": ["National security", "Border control", "Terrorism"],
"jurisdiction": "National",
"response_threshold": 200,
"resources": "Maximum"
},
"us_marshals": {
"name": "US Marshals Service",
"spanish": "Servicio de Alguaciles de EE.UU.",
"specialties": ["Fugitive apprehension", "Witness protection", "Asset forfeiture"],
"jurisdiction": "National",
"response_threshold": 150,
"resources": "High"
}
}
WEAPONS = {
"fists": {"name": "Puños / Fists", "damage": 10, "price": 0, "ammo": None, "spanish": "Puños", "type": "melee"},
"knife": {"name": "Navaja / Knife", "damage": 25, "price": 50, "ammo": None, "spanish": "Navaja", "type": "melee"},
"machete": {"name": "Machete", "damage": 35, "price": 120, "ammo": None, "spanish": "Machete", "type": "melee"},
"bat": {"name": "Bate de Béisbol / Baseball Bat", "damage": 30, "price": 75, "ammo": None, "spanish": "Bate", "type": "melee"},
"crowbar": {"name": "Palanca / Crowbar", "damage": 32, "price": 80, "ammo": None, "spanish": "Palanca", "type": "melee"},
"katana": {"name": "Katana", "damage": 60, "price": 400, "ammo": None, "spanish": "Katana", "type": "melee"},
"chainsaw": {"name": "Motosierra / Chainsaw", "damage": 85, "price": 600, "ammo": "gas", "spanish": "Motosierra", "type": "melee"},
"pistol": {"name": "Pistola / Pistol", "damage": 40, "price": 300, "ammo": "9mm", "spanish": "Pistola", "type": "handgun"},
"revolver": {"name": "Revólver / Revolver", "damage": 50, "price": 450, "ammo": "357", "spanish": "Revólver", "type": "handgun"},
"desert_eagle": {"name": "Desert Eagle", "damage": 65, "price": 800, "ammo": "50cal", "spanish": "Águila del Desierto", "type": "handgun"},
"glock": {"name": "Glock", "damage": 42, "price": 350, "ammo": "9mm", "spanish": "Glock", "type": "handgun"},
"beretta": {"name": "Beretta", "damage": 38, "price": 320, "ammo": "9mm", "spanish": "Beretta", "type": "handgun"},
"colt45": {"name": "Colt .45", "damage": 55, "price": 500, "ammo": "45acp", "spanish": "Colt .45", "type": "handgun"},
"shotgun": {"name": "Escopeta / Shotgun", "damage": 80, "price": 600, "ammo": "shells", "spanish": "Escopeta", "type": "shotgun"},
"sawed_off": {"name": "Escopeta Recortada / Sawed-off", "damage": 90, "price": 750, "ammo": "shells", "spanish": "Recortada", "type": "shotgun"},
"combat_shotgun": {"name": "Escopeta de Combate / Combat Shotgun", "damage": 95, "price": 900, "ammo": "shells", "spanish": "Escopeta de Combate", "type": "shotgun"},
"automatic_shotgun": {"name": "Escopeta Automática / Auto Shotgun", "damage": 85, "price": 1200, "ammo": "shells", "spanish": "Escopeta Automática", "type": "shotgun"},
"rifle": {"name": "Rifle de Asalto / Assault Rifle", "damage": 60, "price": 1500, "ammo": "556", "spanish": "Rifle", "type": "rifle"},
"ak47": {"name": "AK-47 Cuerno de Chivo", "damage": 70, "price": 2000, "ammo": "762", "spanish": "Cuerno de Chivo", "type": "rifle"},
"m16": {"name": "M-16", "damage": 65, "price": 1800, "ammo": "556", "spanish": "M-16", "type": "rifle"},
"scar": {"name": "SCAR-H", "damage": 75, "price": 2500, "ammo": "762", "spanish": "SCAR-H", "type": "rifle"},
"g36": {"name": "G36", "damage": 62, "price": 1700, "ammo": "556", "spanish": "G36", "type": "rifle"},
"smg": {"name": "Metralleta / SMG", "damage": 45, "price": 800, "ammo": "9mm", "spanish": "Metralleta", "type": "smg"},
"uzi": {"name": "Uzi", "damage": 50, "price": 1200, "ammo": "9mm", "spanish": "Uzi", "type": "smg"},
"mp5": {"name": "MP5", "damage": 48, "price": 1000, "ammo": "9mm", "spanish": "MP5", "type": "smg"},
"skorpion": {"name": "Skorpion", "damage": 35, "price": 600, "ammo": "9mm", "spanish": "Skorpion", "type": "smg"},
"tec9": {"name": "TEC-9", "damage": 40, "price": 700, "ammo": "9mm", "spanish": "TEC-9", "type": "smg"},
"sniper": {"name": "Rifle de Francotirador / Sniper", "damage": 120, "price": 3500, "ammo": "762", "spanish": "Francotirador", "type": "sniper"},
"barrett": {"name": "Barrett .50 Cal", "damage": 150, "price": 5000, "ammo": "50cal", "spanish": "Barrett", "type": "sniper"},
"dragunov": {"name": "Dragunov", "damage": 125, "price": 3800, "ammo": "762", "spanish": "Dragunov", "type": "sniper"},
"rpg": {"name": "RPG Lanzacohetes", "damage": 200, "price": 8000, "ammo": "rockets", "spanish": "Lanzacohetes", "type": "explosive"},
"grenade": {"name": "Granada / Grenade", "damage": 150, "price": 500, "ammo": None, "spanish": "Granada", "type": "explosive"},
"molotov": {"name": "Molotov", "damage": 120, "price": 50, "ammo": None, "spanish": "Molotov", "type": "explosive"},
"c4": {"name": "C4 Explosive", "damage": 250, "price": 1000, "ammo": None, "spanish": "C4", "type": "explosive"},
"sticky_bomb": {"name": "Bomba Pegajosa / Sticky Bomb", "damage": 180, "price": 800, "ammo": None, "spanish": "Bomba Pegajosa", "type": "explosive"},
"taser": {"name": "Taser", "damage": 5, "price": 200, "ammo": "battery", "spanish": "Taser", "type": "special"},
"pepper_spray": {"name": "Gas Pimienta / Pepper Spray", "damage": 10, "price": 25, "ammo": None, "spanish": "Gas Pimienta", "type": "special"},
"flamethrower": {"name": "Lanzallamas / Flamethrower", "damage": 100, "price": 2000, "ammo": "fuel", "spanish": "Lanzallamas", "type": "special"}
}
DRUGS = {
"mota": {"name": "Mota (Marijuana)", "spanish": "Mota", "buy_price": 10, "sell_price": 15, "risk": 1, "origin": "Local farms", "weight": 1},
"coca": {"name": "Coca (Cocaine)", "spanish": "Coca", "buy_price": 50, "sell_price": 80, "risk": 3, "origin": "Colombian cartels", "weight": 0.5},
"cristal": {"name": "Cristal (Methamphetamine)", "spanish": "Cristal", "buy_price": 30, "sell_price": 50, "risk": 2, "origin": "Desert labs", "weight": 0.3},
"chiva": {"name": "Chiva (Heroin)", "spanish": "Chiva", "buy_price": 80, "sell_price": 120, "risk": 4, "origin": "Afghan suppliers", "weight": 0.2},
"fentanilo": {"name": "Fentanilo (Fentanyl)", "spanish": "Fentanilo", "buy_price": 100, "sell_price": 180, "risk": 5, "origin": "Chinese precursors", "weight": 0.1},
"extasis": {"name": "Éxtasis (Ecstasy)", "spanish": "Éxtasis", "buy_price": 25, "sell_price": 40, "risk": 2, "origin": "European labs", "weight": 0.1},
"lsd": {"name": "LSD", "spanish": "LSD", "buy_price": 15, "sell_price": 25, "risk": 2, "origin": "Underground chemists", "weight": 0.01},
"hongos": {"name": "Hongos (Mushrooms)", "spanish": "Hongos", "buy_price": 20, "sell_price": 35, "risk": 1, "origin": "Local growers", "weight": 0.5},
"ketamina": {"name": "Ketamina (Ketamine)", "spanish": "Ketamina", "buy_price": 40, "sell_price": 65, "risk": 3, "origin": "Veterinary theft", "weight": 0.3},
"pcp": {"name": "PCP", "spanish": "PCP", "buy_price": 35, "sell_price": 55, "risk": 3, "origin": "Street labs", "weight": 0.2},
"crack": {"name": "Crack", "spanish": "Crack", "buy_price": 20, "sell_price": 35, "risk": 3, "origin": "Local cooks", "weight": 0.2},
"spice": {"name": "Spice (K2)", "spanish": "Spice", "buy_price": 8, "sell_price": 15, "risk": 1, "origin": "Chemical suppliers", "weight": 0.3},
"oxi": {"name": "Oxi (Oxidado)", "spanish": "Oxi", "buy_price": 5, "sell_price": 12, "risk": 2, "origin": "Brazilian suppliers", "weight": 0.3},
"flakka": {"name": "Flakka", "spanish": "Flakka", "buy_price": 12, "sell_price": 22, "risk": 2, "origin": "Chinese labs", "weight": 0.2}
}
# Business types for passive income
BUSINESSES = {
"car_wash": {"name": "Car Wash / Lavado de Carros", "spanish": "Lavado de Carros", "cost": 5000, "daily_income": 200, "heat_generation": 1},
"restaurant": {"name": "Restaurant / Restaurante", "spanish": "Restaurante", "cost": 15000, "daily_income": 500, "heat_generation": 1},
"nightclub": {"name": "Nightclub / Club Nocturno", "spanish": "Club Nocturno", "cost": 50000, "daily_income": 1500, "heat_generation": 3},
"gas_station": {"name": "Gas Station / Gasolinera", "spanish": "Gasolinera", "cost": 25000, "daily_income": 800, "heat_generation": 2},
"pawn_shop": {"name": "Pawn Shop / Casa de Empeño", "spanish": "Casa de Empeño", "cost": 10000, "daily_income": 400, "heat_generation": 2},
"strip_club": {"name": "Strip Club / Club de Striptease", "spanish": "Club de Striptease", "cost": 75000, "daily_income": 2000, "heat_generation": 4},
"casino": {"name": "Casino", "spanish": "Casino", "cost": 200000, "daily_income": 5000, "heat_generation": 5},
"auto_shop": {"name": "Auto Shop / Taller Mecánico", "spanish": "Taller Mecánico", "cost": 30000, "daily_income": 1000, "heat_generation": 3},
"pharmacy": {"name": "Pharmacy / Farmacia", "spanish": "Farmacia", "cost": 40000, "daily_income": 1200, "heat_generation": 3},
"construction": {"name": "Construction Company / Constructora", "spanish": "Constructora", "cost": 100000, "daily_income": 3000, "heat_generation": 2}
}
# Advanced criminal activities
CRIMINAL_ACTIVITIES = {
"bank_heist": {
"name": "Bank Heist / Atraco Bancario",
"spanish": "Atraco Bancario",
"min_reward": 50000,
"max_reward": 200000,
"risk": 5,
"required_members": 3,
"required_skills": {"shooting": 3, "stealth": 2},
"heat_increase": 15,
"time_hours": 4
},
"armored_truck": {
"name": "Armored Truck / Camión Blindado",
"spanish": "Camión Blindado",
"min_reward": 20000,
"max_reward": 80000,
"risk": 4,
"required_members": 2,
"required_skills": {"shooting": 2, "driving": 3},
"heat_increase": 10,
"time_hours": 2
},
"jewelry_store": {
"name": "Jewelry Store / Joyería",
"spanish": "Joyería",