-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcards.json
1696 lines (1696 loc) · 51.6 KB
/
cards.json
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
{
"bigDeals": [
{
"title": "Duplex for Sale",
"message": "Owner is moving out of this duplex due to growing family. Tenant in other unit remains and new tenant waiting to move into this well-maintained property.",
"type": "duplex",
"cost": 250000,
"mortgage": 234000,
"downPayment": 16000,
"cashflow": 900
},
{
"title": "4-Plex for Sale",
"message": "4-Plex for sale in rehabilitating neighbourhood. Owner being forced out by income tax liens.",
"cost": 370000,
"type": "4-plex",
"mortgage": 360000,
"downPayment": 10000,
"cashflow": 900
},
{
"title": "Duplex for Sale",
"message": "Duplex owner must sell to pay hospital bills. Two tenants are in place at this well-maintained property and it is a good investment opportunity.",
"cost": 260000,
"type": "duplex",
"mortgage": 248000,
"downPayment": 12000,
"cashflow": 600
},
{
"title": "4-Plex for Sale",
"message": "4-Plex next to new highway for sale. Owner/occupant moving to quieter area. Prices for quick sale.",
"cost": 290000,
"type": "4-plex",
"mortgage": 275000,
"downPayment": 15000,
"cashflow": 800
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Divorce leads to sale of this 3/2 house in an area full of owner-occupied homes. It has been on the market for five months.",
"cost": 350000,
"type": "3BR/2BA house",
"mortgage": 330000,
"downPayment": 20000,
"cashflow": 1000
},
{
"title": "4-Plex for Sale",
"message": "4-Plex in recovering neighbourhood. Fully rented, repairs kept up. Needs your down payment and patience.",
"cost": 300000,
"type": "4-plex",
"mortgage": 280000,
"downPayment": 20000,
"cashflow": 1100
},
{
"title": "Automated Business",
"message": "Successfully 4-bay, coin-operated auto wash near busy intersection. Seller is moving to retirement communityout of state.",
"cost": 125000,
"type": "automated business",
"mortgage": 100000,
"downPayment": 25000,
"cashflow": 1800
},
{
"title": "Limited Partner Wanted",
"message": "Sandwich shops is doubling the number of locations. Owner needs an investor to get started.",
"cost": 30000,
"type": "limited partner",
"mortgage": 0,
"downPayment": 30000,
"cashflow": 1700
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Businessman needs cash to save his business and is liquidating this 3/2 house. It is currently occupied by a happy tenant.",
"cost": 225000,
"type": "3BR/2BA house",
"mortgage": 211000,
"downPayment": 14000,
"cashflow": 750
},
{
"title": "Duplex for Sale",
"message": "Tenants in place at this investment duplex! Owner has income tax problems and needs to sell quickly.",
"cost": 245000,
"type": "duplex",
"mortgage": 233000,
"downPayment": 12000,
"cashflow": 800
},
{
"title": "Limited Partner Wanted",
"message": "Auto Dealer wants to expand into leasing 2 and 3 year old cars. Needs capital as car maker's finance company is not intrested.",
"cost": 30000,
"type": "limited partner",
"mortgage": 0,
"downPayment": 30000,
"cashflow": 1500
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "3/2 house in rough neighbourhood.Positive cash flow even though rents are weak.",
"cost": 300000,
"type": "3BR/2BA house",
"mortgage": 288000,
"downPayment": 12000,
"cashflow": 800
},
{
"title": "8-Plex for Sale",
"message": "Owner's legal troubles lead to forced sale of this 8-Plex. Jump on this deal before someone else does.",
"cost": 250000,
"type": "8-plex",
"mortgage": 210000,
"downPayment": 40000,
"cashflow": 2000
},
{
"title": "Automated Business for Sale",
"message": "Vintage arcade with 30 pinball machines and loyal clientele. Owner has become overextended and is desperate to liquidate.",
"cost": 180000,
"type": "automated business",
"mortgage": 160000,
"downPayment": 20000,
"cashflow": 1600
},
{
"title": "4-Plex for Sale",
"message": "Nice, well-maintained 4-Plex in good neighbourhood. Stable tenants, positive cash flow, minor repairs.",
"cost": 225000,
"type": "4-plex",
"mortgage": 210000,
"downPayment": 15000,
"cashflow": 700
},
{
"title": "Apartment House for Sale",
"message": "12-unit apartment house offered by out-of-state heirs of handyman/owner. Highly desirable location with a long waiting list for apartment units at this property.",
"cost": 350000,
"type": "apartment",
"mortgage": 300000,
"downPayment": 50000,
"cashflow": 3000
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Split level 3/2 house on out-of-way golf course offered by heirs of owner. Golf membership is included.",
"cost": 275000,
"mortgage": 260000,
"type": "3BR/2BA house",
"downPayment": 15000,
"cashflow": 800
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Downsized manager cannot afford payments on new salary and must sell this 3/2 house. The surrounding area is in transition.",
"cost": 270000,
"mortgage": 255000,
"type": "3BR/2BA house",
"downPayment": 15000,
"cashflow": 800
},
{
"title": "Apartment House for Sale",
"message": "Owner is retiring and this older 24-unit property is fully rented with great cash flow. Great location near a community college.",
"cost": 550000,
"mortgage": 500000,
"type": "apartment",
"downPayment": 50000,
"cashflow": 2400
},
{
"title": "Duplex for Sale",
"message": "Well-maintained duplex in desirable area available due to transfer of owner. Excellent investment opportunity for the right buyer.",
"cost": 260000,
"type": "duplex",
"mortgage": 250000,
"downPayment": 10000,
"cashflow": 1100
},
{
"title": "4-Plex for Sale",
"message": "Older 4-Plex available - forced sale. Out-of-state, financially-distressed owner years behind on taxes. Some records available.",
"cost": 280000,
"type": "4-plex",
"mortgage": 264000,
"downPayment": 16000,
"cashflow": 1000
},
{
"title": "Duplex for Sale",
"message": "This duplex is the best in the neighbourhood! Proud owner retiring to another state to be near her grandchildren.",
"cost": 170000,
"type": "duplex",
"mortgage": 152000,
"downPayment": 18000,
"cashflow": 900
},
{
"title": "Pizza Franchise for Sale",
"message": "Healthy pizza company franchise. Trend in high-end fast food is booming. High traffic location next to college campus.",
"cost": 500000,
"type": "pizza franchise",
"mortgage": 400000,
"downPayment": 100000,
"cashflow": 5000
},
{
"title": "Car Wash for Sale",
"message": "Family car wash in a prime location is for sale. Family feud forces sale as they want out ASAP.",
"cost": 350000,
"type": "car wash",
"mortgage": 300000,
"downPayment": 50000,
"cashflow": 2500
},
{
"title": "Apartment House for Sale",
"message": "Two buildings totalling 24 units for sale. Owner managed with on-site assistant. Retirement prompts sale. Big Opportunity.",
"cost": 575000,
"type": "apartment",
"mortgage": 500000,
"downPayment": 75000,
"cashflow": 3600
},
{
"title": "Apartment House for Sale",
"message": "60-unit complex available from pension fund that foreclosed on builder/owner. On-site management in place.",
"cost": 1200000,
"type": "apartment",
"mortgage": 1000000,
"downPayment": 200000,
"cashflow": 11000
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "3/2 house near the airport. Low cost and lots of cash flow potential, if you can stand the noise.",
"cost": 275000,
"type": "3BR/2BA house",
"mortgage": 259000,
"downPayment": 16000,
"cashflow": 750
},
{
"title": "4-Plex for Sale",
"message": "4-Plex for sale by owner, moving to another state. Full records, fully rented, low occupant turnover in good neighbourhood.",
"cost": 340000,
"type": "4-plex",
"mortgage": 308000,
"downPayment": 32000,
"cashflow": 1400
},
{
"title": "8-Plex for Sale",
"message": "Professional person urgently needs cash to save partnership. 8-Plex is being sold to raise capital. Great opportunity for the right person.",
"cost": 360000,
"type": "8-plex",
"mortgage": 328000,
"downPayment": 32000,
"cashflow": 1800
},
{
"title": "Limited Partner Wanted",
"message": "Successful doctor expanding office and clinic. Needs partner to fund equity portion of construction costs.",
"cost": 25000,
"type": "limited partner",
"mortgage": 0,
"downPayment": 25000,
"cashflow": 1300
},
{
"title": "8-Plex for Sale",
"message": "Owner offers his 8-Plex at the current, appraised value. It has all the amenities renters look for. Fully rented at market rent with excellent records.",
"cost": 240000,
"type": "8-plex",
"mortgage": 200000,
"downPayment": 40000,
"cashflow": 1800
},
{
"title": "8-Plex for Sale",
"message": "Reinvesting owner offers 8-Plex for sale at reasonable price. Financing already in place. All it needs is your down payment.",
"cost": 320000,
"type": "8-plex",
"mortgage": 280000,
"downPayment": 40000,
"cashflow": 1700
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Nice 3/2 house with inground pool and all appliances available in upper-middle-class area. Good schools.",
"cost": 300000,
"type": "3BR/2BA house",
"mortgage": 280000,
"downPayment": 20000,
"cashflow": 1000
},
{
"title": "House for Sale - 3Br/2Ba",
"message": "Skilled tradesman kept this 3/2 house in excellent condition, so it commands top-dollar rent in older neighbourhood.",
"cost": 325000,
"type": "3BR/2BA house",
"mortgage": 307000,
"downPayment": 18000,
"cashflow": 900
},
{
"title": "Limited Partner Wanted",
"message": "Successful pizza chain expanding into production of frozen pizzas for grocery stores. Owner needs capital for equipment.",
"cost": 20000,
"type": "limited partner",
"mortgage": 0,
"downPayment": 20000,
"cashflow": 1200
},
{
"title": "Automated Business for Sale",
"message": "Personal bankruptcy forces sale of busy, successful laundromat on busy highway. Growth in local area is expected to skyrocket.",
"cost": 150000,
"type": "automated business",
"mortgage": 120000,
"downPayment": 30000,
"cashflow": 2500
}
],
"smallDeals": [
{
"title": "Multi-Level Marketing Buy-In",
"message": "You have a chance to invest in a Multi-Level Marketing opportunity. Company is looking to spread the reach of their newest venture. If you choose to buy-in, pay $500 and KEEP THIS CARD: Every PayDay, roll one die: Die = 1-3, No returns this month, but keep trying. Die = 4-6, Your sweat equity paid off! Collect $500.",
"cost": 500,
"relatedTo": "MLM"
},
{
"title": "Multi-Level Marketing Buy-In",
"message": "You have a chance to invest in a Multi-Level Marketing opportunity. Company is looking to spread the reach of their newest venture. If you choose to buy-in, pay $500 and KEEP THIS CARD: Every PayDay, roll one die: Die = 1-3, No returns this month, but keep trying. Die = 4-6, Your sweat equity paid off! Collect $500.",
"cost": 500,
"relatedTo": "MLM"
},
{
"title": "Stock - MYT4U Electronics Co.",
"message": "New product flops and tough losses are reported! Share price drops.",
"relatedTo": "shares",
"symbol": "MYT4U",
"currentPrice": 10,
"historicTradingRange": "10-30"
},
{
"title": "Stock - ON2U Entertainment Co.",
"message": "Newest theme park is a huge flop, reports record losses. Share price hits all-time low.",
"relatedTo": "shares",
"symbol": "ON2U",
"currentPrice": 5,
"historicTradingRange": "10-30"
},
{
"title": "Mutual Fund - GRO4US Fund",
"message": "Lower interest rated drive market and found to strong showing.",
"relatedTo": "shares",
"symbol": "GRO4US",
"currentPrice": 20,
"historicTradingRange": "20-30"
},
{
"title": "Stock - ON2U Entertainment Co.",
"message": "Strong demand for company's library of old movies leads to good share price.",
"relatedTo": "shares",
"symbol": "ON2U",
"currentPrice": 30,
"historicTradingRange": "10-30"
},
{
"title": "Mutual Fund - GRO4US Fund",
"message": "Weak earnings report leads to weak price of mutual fund.",
"relatedTo": "shares",
"symbol": "GRO4US",
"currentPrice": 5,
"historicTradingRange": "20-30"
},
{
"title": "Mutual Fund - GRO4US Fund",
"message": "Brilliant, young fund manager. Everyone believes he has the Midas touch.",
"relatedTo": "shares",
"symbol": "GRO4US",
"currentPrice": 30,
"historicTradingRange": "20-30"
},
{
"title": "Stock - OK4U Drug Co.",
"message": "Inflation worries cause poor share price for this longtime pharmaceutical company.",
"relatedTo": "shares",
"symbol": "OK4U",
"currentPrice": 20,
"historicTradingRange": "5-30"
},
{
"title": "Stock - MYT4U Electronics Co.",
"message": "Record interest rates lead to substandard share price for this electronics seller.",
"relatedTo": "shares",
"symbol": "MYT4U",
"currentPrice": 5,
"historicTradingRange": "10-30"
},
{
"title": "Stock - OK4U Drug Co.",
"message": "Intrest rates cripple share price of this longtime pharmaceutical company.",
"relatedTo": "shares",
"symbol": "OK4U",
"currentPrice": 5,
"historicTradingRange": "5-30"
},
{
"title": "Stock - OK4U Drug Co.",
"message": "Research and development delays cause low share price for this longtime pharmaceutical company.",
"relatedTo": "shares",
"symbol": "OK4U",
"currentPrice": 10,
"historicTradingRange": "5-30"
},
{
"title": "Stock - MYT4U Electronics Co.",
"message": "Booming market leads to record share price of this electronic seller!",
"relatedTo": "shares",
"symbol": "MYT4U",
"currentPrice": 40,
"historicTradingRange": "10-30"
},
{
"title": "Mutual Fund - GRO4US Fund",
"message": "Powerhouse market drives fund's price up to record high.",
"relatedTo": "shares",
"symbol": "GRO4US",
"currentPrice": 40,
"historicTradingRange": "20-30"
},
{
"title": "Mutual Fund - GRO4US Fund",
"message": "Weak showing in job growth causes lack of consumer confidence. Shares fall with public opinion.",
"relatedTo": "shares",
"symbol": "GRO4US",
"currentPrice": 10,
"historicTradingRange": "20-30"
},
{
"title": "Stock - OK4U Drug Co.",
"message": "Low inflation leads to high share price for this longtime pharmaceutical company.",
"relatedTo": "shares",
"symbol": "OK4U",
"currentPrice": 30,
"historicTradingRange": "5-30"
},
{
"title": "Stock - MYT4U Electronics Co.",
"message": "Low interest rates lead to favourable share price for this electronics seller.",
"relatedTo": "shares",
"symbol": "MYT4U",
"currentPrice": 30,
"historicTradingRange": "10-30"
},
{
"title": "Stock - ON2U Entertainment Co.",
"message": "New director of movie acquisitions brings revived prospects for share price.",
"relatedTo": "shares",
"symbol": "ON2U",
"currentPrice": 20,
"historicTradingRange": "10-30"
},
{
"title": "Stock - MYT4U Electronics Co.",
"message": "Weak market leads to sagging share price for this electronics seller.",
"relatedTo": "shares",
"symbol": "MYT4U",
"currentPrice": 20,
"historicTradingRange": "10-30"
},
{
"title": "Stock - ON2U Entertainment Co.",
"message": "Box office hit by children's division causes record share price.",
"relatedTo": "shares",
"symbol": "ON2U",
"currentPrice": 40,
"historicTradingRange": "10-30"
},
{
"title": "Stock - ON2U Entertainment Co.",
"message": "Movie buyer fired after third mega-flop! Shares sink. Chairman's bonus canceled.",
"relatedTo": "shares",
"symbol": "ON2U",
"currentPrice": 10,
"historicTradingRange": "10-30"
},
{
"title": "Stock - OK4U Drug Co.",
"message": "Booming market raises share price of this longtime pharmaceutical company.",
"relatedTo": "shares",
"symbol": "OK4U",
"currentPrice": 40,
"historicTradingRange": "5-30"
},
{
"title": "Coin Collector Liquidates",
"message": "A coin collector needs cash quick to shore up a tax issue. Will sell you five (5) gold coins, well below going rate.",
"relatedTo": "goldCoins",
"cost": 1000,
"numberOfCoins": 5
},
{
"title": "Friend Needs Cash Quick",
"message": "A friend has urgent need for money. Will sell you ten (10) gold coins, well below going rate.",
"relatedTo": "goldCoins",
"cost": 3000,
"numberOfCoins": 10
},
{
"title": "Condo for Sale - 2BR/1BA",
"message": "Parents selling 2/1 condo used by their child in college town. Lots of demands for rentals in this area.",
"relatedTo": "realEstate",
"type": "2BR/1BA condo",
"cost": 40000,
"mortgage": 36000,
"downPayment": 4000,
"cashflow": 140
},
{
"title": "Condo for Sale - 2BR/1BA",
"message": "Excellent 2/1 condo with many extras. Owner wants to relocate for dream job FAST! She's moving up- you can too! No Cash Flow, but a possible capital gains opportunity",
"relatedTo": "realEstate",
"type": "2BR/1BA condo",
"cost": 40000,
"mortgage": 39000,
"downPayment": 1000,
"cashflow": 0
},
{
"title": "House for Sale - 2BR/1BA",
"message": "Low down payment to pickup this 2/1 house. Owner/ Seller unexpectedly moving out of town. Right person will do well.",
"relatedTo": "realEstate",
"cost": 50000,
"type": "2BR/1BA house",
"mortgage": 47000,
"downPayment": 3000,
"cashflow": 100
},
{
"title": "House for Sale - 2BR/1BA",
"message": "Nice 2/1 house available in a depressed market due to layoffs. Would make a good investment property for the right buyer.",
"relatedTo": "realEstate",
"cost": 50000,
"type": "2BR/1BA house",
"mortgage": 46000,
"downPayment": 4000,
"cashflow": 200
},
{
"title": "House for Sale - 2BR/1BA",
"message": "Not lived in for six months, this bank fore closed house just reduced. Loan includes estimated repair cost.",
"relatedTo": "realEstate",
"type": "2BR/1BA house",
"cost": 50000,
"mortgage": 48000,
"downPayment": 2000,
"cashflow": 200
},
{
"title": "You Find A Great Deal!",
"message": "Company bought transferred manager's 2/1 house. No current tenant, it has been on the market six months and it has just been reduced. Take out a loan if you must,BUY THIS!",
"relatedTo": "realEstate",
"cost": 45000,
"type": "2/1 house",
"mortgage": 43000,
"downPayment": 2000,
"cashflow": 250
},
{
"title": "Condo for Sale - 2BR/1BA",
"message": "Bank force closure! 2/1 condo in a desirable neighbourhood close to jobs and stores make offer, favourable financing by bank.",
"relatedTo": "realEstate",
"cost": 40000,
"type": "2BR/1BA condo",
"mortgage": 35000,
"downPayment": 5000,
"cashflow": 220
},
{
"title": "Condo for Sale - 2BR/1BA",
"message": "Older 2/1 condo offered by young couple who want to move up to a 3/2 house due to growing family. Available soon.",
"relatedTo": "realEstate",
"cost": 55000,
"type": "2BR/1BA condo",
"mortgage": 50000,
"downPayment": 5000,
"cashflow": 160
},
{
"title": "House for Sale - 2BR/1BA",
"message": "2/1 house in an older area offered by the highway department. The market has crashed and the city MUST sell. No cashflow but a possible capital gain opportunity.",
"relatedTo": "realEstate",
"cost": 30000,
"type": "2BR/1BA house",
"mortgage": 29000,
"downPayment": 1000,
"cashflow": 0
},
{
"title": "House for Sale - 2BR/1BA",
"message": "Nice 2/1 rental house suddenly available due to estate closing. Well-maintained older property with existing tenant.",
"relatedTo": "realEstate",
"cost": 65000,
"type": "2BR/1BA house",
"mortgage": 60000,
"downPayment": 5000,
"cashflow": 160
},
{
"title": "You Find A Great Deal!",
"message": "Older 2/1 house, reposted by government agency. Ready to go with government agency. Ready to go with government financing and tenant. Take out a loan if you mustt, but BUY THIS!",
"relatedTo": "realEstate",
"cost": 35000,
"type": "2/1 house",
"mortgage": 33000,
"downPayment": 2000,
"cashflow": 220
}
],
"doodads": [
{
"title": "BIRTHDAY PARTY FOR YOUR CHILD",
"expenseAmount": 500,
"isChildExpense": true,
"message": "Pay 500 (if you have baby$)"
},
{
"title": "HELP PAY FOR CHILD'S WEDDING",
"expenseAmount": 2000,
"isChildExpense": true,
"message": "Pay 2000 (if you have baby$)"
},
{
"title": "BUILD A HOME GYM",
"expenseAmount": 3000,
"isChildExpense": false,
"message": "Pay $3000"
},
{
"title": "NEW TENNIS RACKET",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "FAMILY VACATION",
"expenseAmount": 2500,
"isChildExpense": false,
"message": "Pay $2500"
},
{
"title": "CAPPUCCINO MACHINE",
"expenseAmount": 300,
"isChildExpense": false,
"message": "Pay $300"
},
{
"title": "PRIVATE TUTORING FOR YOUR CHILD",
"expenseAmount": 500,
"isChildExpense": true,
"message": "Pay 500 (if you have baby$)"
},
{
"title": "COSTUME JEWELRY",
"expenseAmount": 400,
"isChildExpense": false,
"message": "Pay $400"
},
{
"title": "FOOD PROCESSOR",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "NEW COMPUTER",
"expenseAmount": 1800,
"isChildExpense": false,
"message": "Pay $1800"
},
{
"title": "GO TO CASINO",
"expenseAmount": 800,
"isChildExpense": false,
"message": "Pay $800"
},
{
"title": "BIG SCREEN TV",
"expenseAmount": 2500,
"isChildExpense": false,
"message": "Pay $2500"
},
{
"title": "SEASON TICKETS",
"expenseAmount": 1500,
"isChildExpense": false,
"message": "Pay $1500"
},
{
"title": "DATE NIGHT: DINNER, CONCERT & DESSERT",
"expenseAmount": 500,
"isChildExpense": false,
"message": "Pay $500"
},
{
"title": "NEW BOWLING BALL",
"expenseAmount": 100,
"isChildExpense": false,
"message": "Pay $100"
},
{
"title": "NEW SUNGLASSES",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "FISHING BOAT",
"expenseAmount": 5000,
"isChildExpense": false,
"message": "Pay $5000"
},
{
"title": "GOLF CLUB MEMBERSHIP",
"expenseAmount": 2000,
"isChildExpense": false,
"message": "Pay $2000"
},
{
"title": "NEW TAILORED SUIT",
"expenseAmount": 1000,
"isChildExpense": false,
"message": "Pay $1000"
},
{
"title": "REPAINT YOUR HOUSE",
"expenseAmount": 600,
"isChildExpense": false,
"message": "Pay $600"
},
{
"title": "BUY LOCAL ARTIST'S PAINTING",
"expenseAmount": 800,
"isChildExpense": false,
"message": "Pay $800"
},
{
"title": "NEXT-GEN GAME CONSOLE",
"expenseAmount": 600,
"isChildExpense": false,
"message": "Pay $600"
},
{
"title": "NEW EASY CHAIR",
"expenseAmount": 500,
"isChildExpense": false,
"message": "Pay $500"
},
{
"title": "REPLACE CAR AIR CONDITIONER",
"expenseAmount": 700,
"isChildExpense": false,
"message": "Pay $700"
},
{
"title": "HIGH SCHOOL REUNION",
"expenseAmount": 500,
"isChildExpense": false,
"message": "Pay $500"
},
{
"title": "TAKE A TRIP TO WINE COUNTRY",
"expenseAmount": 1000,
"isChildExpense": false,
"message": "Pay $1000"
},
{
"title": "CHILD NEEDS BRACES",
"expenseAmount": 4000,
"isChildExpense": true,
"message": "Pay 4000 (if you have baby$)"
},
{
"title": "NEW GYM CLOTHES",
"expenseAmount": 300,
"isChildExpense": false,
"message": "Pay $300"
},
{
"title": "JET SKI",
"expenseAmount": 3000,
"isChildExpense": false,
"message": "Pay $3000"
},
{
"title": "NEW CLOTHES",
"expenseAmount": 1000,
"isChildExpense": false,
"message": "Pay $1000"
},
{
"title": "NEW CAR STEREO",
"expenseAmount": 700,
"isChildExpense": false,
"message": "Pay $700"
},
{
"title": "NEW WATCH",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "FIRST CAR FOR CHILD",
"expenseAmount": 5000,
"isChildExpense": true,
"message": "Pay 5000 (if you have baby$)"
},
{
"title": "VISIT THE DENTIST",
"expenseAmount": 700,
"isChildExpense": false,
"message": "Pay $700"
},
{
"title": "NEW SOUND SYSTEM",
"expenseAmount": 1500,
"isChildExpense": false,
"message": "Pay $1500"
},
{
"title": "PAY FOR LUNCH WITH FRIENDS",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "CONCERT TICKETS",
"expenseAmount": 200,
"isChildExpense": false,
"message": "Pay $200"
},
{
"title": "GET NEWEST PHONE",
"expenseAmount": 300,
"isChildExpense": false,
"message": "Pay $300"
},
{
"title": "NEW TIRES",
"expenseAmount": 600,
"isChildExpense": false,
"message": "Pay $600"
},
{
"title": "NEW RIMS FOR YOUR CAR",
"expenseAmount": 2000,
"isChildExpense": false,
"message": "Pay $2000"
},
{
"title": "NEW GOLF CLUBS",
"expenseAmount": 800,
"isChildExpense": false,
"message": "Pay $800"
},
{
"title": "REMODEL KITCHEN",
"expenseAmount": 7500,
"isChildExpense": false,
"message": "Pay $7500"
}
],
"market": [
{
"title": "Plex Buyer",
"message": "Buyer looking for all Apartment and Plexes in any combination of units. Offers your original cost plus $5000.",
"type": "optional",
"relatedRealEstates": ["duplex", "4-plex", "8-plex"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 5000,
"percentage": null
},
{
"title": "House Buyer - 3BR/2BA",
"message": "Buyer searching for 3BA/2BA house. Offers your original cost plus $15000.",
"type": "optional",
"relatedRealEstates": ["3BR/2BA house"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 15000,
"percentage": null
},
{
"title": "House Buyer - 3BR/2BA",
"message": "Buyer searching for 3BR/2BA house. Offers your original cost plus $5000.",
"type": "optional",
"relatedRealEstates": ["3BR/2BA house"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 5000,
"percentage": null
},
{
"title": "House Buyer - 3BR/2BA",
"message": "Buyer searching for 3BR/2BA house. Offers your original cost plus $20000.",
"type": "optional",
"relatedRealEstates": ["3BR/2BA house"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 20000,
"percentage": null
},
{
"title": "Plex Buyer",
"message": "Buyer looking for all Apartment and Plexes in any combination of units. Offers your original cost plus 10%.",
"type": "optional",
"relatedRealEstates": ["duplex", "4-plex", "8-plex"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "percentage",
"cash": null,
"percentage": 10
},
{
"title": "House Buyer - 3BR/2BA",
"message": "Buyer searching for 3BR/2BA house. Offers your original cost plus 10%.",
"type": "optional",
"relatedRealEstates": ["3BR/2BA house"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "percentage",
"cash": null,
"percentage": 10
},
{
"title": "Plex Buyer",
"message": "Buyer looking for all Apartment and Plexes in any combination of units. Offers your original cost plus 20%.",
"type": "optional",
"relatedRealEstates": ["duplex", "4-plex", "8-plex"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "percentage",
"cash": null,
"percentage": 20
},
{
"title": "Plex Buyer",
"message": "Buyer looking for all Apartment and Plexes in any combination of units. offers your original cost plus $30000.",
"type": "optional",
"relatedRealEstates": ["duplex", "4-plex", "8-plex"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 30000,
"percentage": null
},
{
"title": "House or Condo Buyer 2BR/1BA",
"message": "You are offered $45,000 for a 2BR/1BA House or Condo. Buyer has their own financing.",
"type": "optional",
"relatedRealEstates": ["2BR/1BA house", "2BR/1BA condo"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 45000,
"percentage": null
},
{
"title": "Plex Buyer",
"message": "Buyer looking for all Apartment and Plexes in any combination of units. Offers your original cost plus $10000.",
"type": "optional",
"relatedRealEstates": ["duplex", "4-plex", "8-plex"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "cash",
"cash": 10000,
"percentage": null
},
{
"title": "House Buyer - 2BR/1BA",
"message": "Buyer looking to acquire 2BR/1BA rentals. Offers your original cost plus 10%.",
"type": "optional",
"relatedRealEstates": ["2BR/1BA house"],
"relatedTo": "realEstate",
"applicableTo": "everyone",
"gettingMoneyIn": "percentage",
"cash": null,
"percentage": 10