File size: 62,441 Bytes
ae82940 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 |
{
"post": {
"STR_FIELD": "id",
"add_fetch_param": "<bound method Submission.add_fetch_param of Submission(id='1gr3zlp')>",
"all_awardings": [],
"allow_live_comments": false,
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"author": "Ronjaki",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_e0adab4",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Submission(id='1gr3zlp')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"can_gild": false,
"can_mod_post": false,
"category": null,
"clear_vote": "<bound method VotableMixin.clear_vote of Submission(id='1gr3zlp')>",
"clicked": false,
"comment_limit": 2048,
"comment_sort": "confidence",
"comments": "<praw.models.comment_forest.CommentForest object at 0x769a89bcc970>",
"content_categories": null,
"contest_mode": false,
"created": 1731588452.0,
"created_utc": 1731588452.0,
"crosspost": "<bound method Submission.crosspost of Submission(id='1gr3zlp')>",
"delete": "<bound method EditableMixin.delete of Submission(id='1gr3zlp')>",
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Submission(id='1gr3zlp')>",
"discussion_type": null,
"distinguished": null,
"domain": "i.redd.it",
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Submission(id='1gr3zlp')>",
"duplicates": "<bound method SubmissionListingMixin.duplicates of Submission(id='1gr3zlp')>",
"edit": "<bound method EditableMixin.edit of Submission(id='1gr3zlp')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Submission(id='1gr3zlp')>",
"flair": "<praw.models.reddit.submission.SubmissionFlair object at 0x769a89b9a710>",
"fullname": "t3_1gr3zlp",
"gild": "<bound method GildableMixin.gild of Submission(id='1gr3zlp')>",
"gilded": 0,
"gildings": {},
"hidden": false,
"hide": "<bound method Submission.hide of Submission(id='1gr3zlp')>",
"hide_score": true,
"id": "1gr3zlp",
"id_from_url": "<function Submission.id_from_url at 0x769a8d396680>",
"is_created_from_ads_ui": false,
"is_crosspostable": true,
"is_meta": false,
"is_original_content": false,
"is_reddit_media_domain": true,
"is_robot_indexable": true,
"is_self": false,
"is_video": false,
"likes": null,
"link_flair_background_color": "#7193ff",
"link_flair_css_class": "flairhumour",
"link_flair_richtext": [
{
"e": "text",
"t": "Meme"
}
],
"link_flair_template_id": "70efeb34-0daa-11e9-83ac-0e7e735eaa72",
"link_flair_text": "Meme",
"link_flair_text_color": "light",
"link_flair_type": "richtext",
"locked": false,
"mark_visited": "<bound method Submission.mark_visited of Submission(id='1gr3zlp')>",
"media": null,
"media_embed": {},
"media_only": false,
"mod": "<praw.models.reddit.submission.SubmissionModeration object at 0x769a89bce650>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t3_1gr3zlp",
"no_follow": false,
"num_comments": 10,
"num_crossposts": 0,
"num_reports": null,
"over_18": false,
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.submission.Submission'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/",
"pinned": false,
"post_hint": "image",
"preview": {
"images": [
{
"source": {
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?auto=webp&s=dfef9793d1564aa1bce303dc8686f81ac6a410a7",
"width": 1080,
"height": 915
},
"resolutions": [
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=108&crop=smart&auto=webp&s=ba918e5820a85c3cfe5d71f0683de9815821c50d",
"width": 108,
"height": 91
},
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=216&crop=smart&auto=webp&s=1f680c59701ee0be7a624cb247f59886a40df1b6",
"width": 216,
"height": 183
},
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=320&crop=smart&auto=webp&s=eb2ce1d0c0e16ef29c85e8215e88f1e9118b90aa",
"width": 320,
"height": 271
},
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=640&crop=smart&auto=webp&s=7d91a9b095413699198933c055f785496a22924d",
"width": 640,
"height": 542
},
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=960&crop=smart&auto=webp&s=4be75f72a02b2c4822f1f9b73df63107bcfc0ee0",
"width": 960,
"height": 813
},
{
"url": "https://preview.redd.it/y9apm2ud5v0e1.png?width=1080&crop=smart&auto=webp&s=939c15991e9df13e8f4b68b835d0838f546fcedd",
"width": 1080,
"height": 915
}
],
"variants": {},
"id": "nbCLxiuMs0mFhgSE6F04YtcId1bq-LYr-o-2JSJHt9I"
}
],
"enabled": true
},
"pwls": null,
"quarantine": false,
"removal_reason": null,
"removed_by": null,
"removed_by_category": null,
"reply": "<bound method ReplyableMixin.reply of Submission(id='1gr3zlp')>",
"report": "<bound method ReportableMixin.report of Submission(id='1gr3zlp')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Submission(id='1gr3zlp')>",
"saved": false,
"score": 22,
"secure_media": null,
"secure_media_embed": {},
"selftext": "",
"selftext_html": null,
"send_replies": true,
"shortlink": "https://redd.it/1gr3zlp",
"spoiler": false,
"stickied": false,
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_subscribers": 1865197,
"subreddit_type": "public",
"suggested_sort": "confidence",
"thumbnail": "https://a.thumbs.redditmedia.com/XZosIZKZ5QoKXJk2VTduZkZn5z9jhIaW6ndhjy7lWz4.jpg",
"thumbnail_height": 118,
"thumbnail_width": 140,
"title": "My fight with Razor went well. ",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unhide": "<bound method Submission.unhide of Submission(id='1gr3zlp')>",
"unsave": "<bound method SavableMixin.unsave of Submission(id='1gr3zlp')>",
"ups": 22,
"upvote": "<bound method VotableMixin.upvote of Submission(id='1gr3zlp')>",
"upvote_ratio": 0.96,
"url": "https://i.redd.it/y9apm2ud5v0e1.png",
"url_overridden_by_dest": "https://i.redd.it/y9apm2ud5v0e1.png",
"user_reports": [],
"view_count": null,
"visited": false,
"wls": null,
"created_date": "2024-11-14",
"full_link": "https://www.reddit.com/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/"
},
"comments": [
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "m70v",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_qh6epqj4a",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2vi2b')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2vi2b')>",
"body": "It was kinda easy tbh, maybe because i was lvl60 but idk",
"body_html": "<div class=\"md\"><p>It was kinda easy tbh, maybe because i was lvl60 but idk</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2vi2b')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2vi2b')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731588904.0,
"created_utc": 1731588904.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2vi2b')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2vi2b')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2vi2b')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2vi2b')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2vi2b')>",
"fullname": "t1_lx2vi2b",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2vi2b')>",
"gilded": 0,
"gildings": {},
"id": "lx2vi2b",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2vi2b')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2vi2b')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89b9a980>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2vi2b",
"no_follow": false,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2vi2b')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2vi2b/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2vi2b')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcd480>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2vi2b')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2vi2b')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2vi2b')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2vi2b')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2vi2b')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2vi2b')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2vi2b')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "bmrtt",
"author_flair_background_color": null,
"author_flair_css_class": "Mercenaries",
"author_flair_richtext": [
{
"e": "text",
"t": "Mercenary"
}
],
"author_flair_template_id": "026a7e14-2f5c-11e7-a66d-0ed141157cc6",
"author_flair_text": "Mercenary",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_vehsw",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2wlmf')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2wlmf')>",
"body": "I did this fight with a high level berserker/blood pump/gorilla arms build and bro was out cold in seconds. I never understood why people thought it was difficult.\n\nThen I did it with a hacker build and I understood.",
"body_html": "<div class=\"md\"><p>I did this fight with a high level berserker/blood pump/gorilla arms build and bro was out cold in seconds. I never understood why people thought it was difficult.</p>\n\n<p>Then I did it with a hacker build and I understood.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2wlmf')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2wlmf')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731589369.0,
"created_utc": 1731589369.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2wlmf')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2wlmf')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2wlmf')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2wlmf')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2wlmf')>",
"fullname": "t1_lx2wlmf",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2wlmf')>",
"gilded": 0,
"gildings": {},
"id": "lx2wlmf",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2wlmf')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2wlmf')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bcec50>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2wlmf",
"no_follow": false,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2wlmf')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2wlmf/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2wlmf')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bccee0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2wlmf')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2wlmf')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2wlmf')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2wlmf')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2wlmf')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2wlmf')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2wlmf')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "061van",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_vfokyuwb",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2vrb6')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2vrb6')>",
"body": "You can meet a fan of that fight at NCX. He ask for selfie with you",
"body_html": "<div class=\"md\"><p>You can meet a fan of that fight at NCX. He ask for selfie with you</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2vrb6')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2vrb6')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731589013.0,
"created_utc": 1731589013.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2vrb6')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2vrb6')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2vrb6')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2vrb6')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2vrb6')>",
"fullname": "t1_lx2vrb6",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2vrb6')>",
"gilded": 0,
"gildings": {},
"id": "lx2vrb6",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2vrb6')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2vrb6')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bcc580>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2vrb6",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2vrb6')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2vrb6/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2vrb6')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcd1e0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2vrb6')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2vrb6')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2vrb6')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2vrb6')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2vrb6')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2vrb6')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2vrb6')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "LexaCB",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_17woriu6u8",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2y3am')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2y3am')>",
"body": "I beated him in maybe 4 or 5 hits xd",
"body_html": "<div class=\"md\"><p>I beated him in maybe 4 or 5 hits xd</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2y3am')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2y3am')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731589985.0,
"created_utc": 1731589985.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2y3am')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2y3am')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2y3am')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2y3am')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2y3am')>",
"fullname": "t1_lx2y3am",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2y3am')>",
"gilded": 0,
"gildings": {},
"id": "lx2y3am",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2y3am')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2y3am')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bceaa0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2y3am",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2y3am')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2y3am/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2y3am')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcfca0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2y3am')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2y3am')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2y3am')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2y3am')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2y3am')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2y3am')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2y3am')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Earlchaos",
"author_flair_background_color": "#ff8717",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"e": "text",
"t": "Hit The Major Leagues "
}
],
"author_flair_template_id": "8f0240e0-72c3-11ed-9497-ee5c6d9400e9",
"author_flair_text": "Hit The Major Leagues ",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_1deqo5",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2yhp1')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2yhp1')>",
"body": "Get Gorilla Arms for this fight. You cannot use mantis blade or any other weapon so just swap Gorilla Arms in and use whatever implants you have. Slowing down time (Netrunner) helps you to dodge attacks and hit him from the side, melee deck helps you to just smack him.",
"body_html": "<div class=\"md\"><p>Get Gorilla Arms for this fight. You cannot use mantis blade or any other weapon so just swap Gorilla Arms in and use whatever implants you have. Slowing down time (Netrunner) helps you to dodge attacks and hit him from the side, melee deck helps you to just smack him.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2yhp1')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2yhp1')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590147.0,
"created_utc": 1731590147.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2yhp1')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2yhp1')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2yhp1')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2yhp1')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2yhp1')>",
"fullname": "t1_lx2yhp1",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2yhp1')>",
"gilded": 0,
"gildings": {},
"id": "lx2yhp1",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2yhp1')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2yhp1')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bce710>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2yhp1",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2yhp1')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2yhp1/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2yhp1')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bccfd0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2yhp1')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2yhp1')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2yhp1')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2yhp1')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2yhp1')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2yhp1')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2yhp1')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Happy_Degenerate_",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_u5ocldvd",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2yz1u')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2yz1u')>",
"body": "This fight was on another level when the game was first released. Unless you built a tank, you were getting pummeled. I had to retry dozens of times on top of downing a bunch of consumables before the fight with my squishy netrunner. CDPR made him easier in later patches. I kind of wish they didn't make the changes to this quest. It was hard, but winning fights was a lot more satisfying.",
"body_html": "<div class=\"md\"><p>This fight was on another level when the game was first released. Unless you built a tank, you were getting pummeled. I had to retry dozens of times on top of downing a bunch of consumables before the fight with my squishy netrunner. CDPR made him easier in later patches. I kind of wish they didn't make the changes to this quest. It was hard, but winning fights was a lot more satisfying.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2yz1u')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2yz1u')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590341.0,
"created_utc": 1731590341.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2yz1u')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2yz1u')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2yz1u')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2yz1u')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2yz1u')>",
"fullname": "t1_lx2yz1u",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2yz1u')>",
"gilded": 0,
"gildings": {},
"id": "lx2yz1u",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2yz1u')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2yz1u')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bccf70>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2yz1u",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2yz1u')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2yz1u/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2yz1u')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcd240>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2yz1u')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2yz1u')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2yz1u')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2yz1u')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2yz1u')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2yz1u')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2yz1u')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "ChromedGonk",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_180cgqgz6p",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2yri2')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2yri2')>",
"body": "Was he aiming for a gayer Freddie Mercury when he was building his V character?",
"body_html": "<div class=\"md\"><p>Was he aiming for a gayer Freddie Mercury when he was building his V character?</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2yri2')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2yri2')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590256.0,
"created_utc": 1731590256.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2yri2')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2yri2')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2yri2')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2yri2')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2yri2')>",
"fullname": "t1_lx2yri2",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2yri2')>",
"gilded": 0,
"gildings": {},
"id": "lx2yri2",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2yri2')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2yri2')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bccb80>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2yri2",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2yri2')>",
"parent_id": "t3_1gr3zlp",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2yri2/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2yri2')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcf1f0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2yri2')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2yri2')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2yri2')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2yri2')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2yri2')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2yri2')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2yri2')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Ronjaki",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_e0adab4",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2y5ms')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2y5ms')>",
"body": "Yeah my build was not suitable for melee fight at all hahaha. \nHad to lower the difficulty to have any chance at beating him as I would go down in three hits otherwise lol.",
"body_html": "<div class=\"md\"><p>Yeah my build was not suitable for melee fight at all hahaha.<br/>\nHad to lower the difficulty to have any chance at beating him as I would go down in three hits otherwise lol.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2y5ms')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2y5ms')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590011.0,
"created_utc": 1731590011.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2y5ms')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2y5ms')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2y5ms')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2y5ms')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2y5ms')>",
"fullname": "t1_lx2y5ms",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2y5ms')>",
"gilded": 0,
"gildings": {},
"id": "lx2y5ms",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": true,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2y5ms')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2y5ms')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bcd8d0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2y5ms",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2y5ms')>",
"parent_id": "t1_lx2wlmf",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2y5ms/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2y5ms')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcce50>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2y5ms')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2y5ms')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2y5ms')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2y5ms')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2y5ms')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2y5ms')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2y5ms')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Ronjaki",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_e0adab4",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2y6xj')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2y6xj')>",
"body": "Neat, didn't know that!",
"body_html": "<div class=\"md\"><p>Neat, didn't know that!</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2y6xj')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2y6xj')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590026.0,
"created_utc": 1731590026.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2y6xj')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2y6xj')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2y6xj')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2y6xj')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2y6xj')>",
"fullname": "t1_lx2y6xj",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2y6xj')>",
"gilded": 0,
"gildings": {},
"id": "lx2y6xj",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": true,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2y6xj')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2y6xj')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bcc1c0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2y6xj",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2y6xj')>",
"parent_id": "t1_lx2vrb6",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2y6xj/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2y6xj')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bcc670>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2y6xj')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2y6xj')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2y6xj')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2y6xj')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2y6xj')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2y6xj')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2y6xj')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Ronjaki",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_e0adab4",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lx2ykyk')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lx2ykyk')>",
"body": "He'd put me down in three lmao.",
"body_html": "<div class=\"md\"><p>He'd put me down in three lmao.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lx2ykyk')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lx2ykyk')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731590183.0,
"created_utc": 1731590183.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lx2ykyk')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lx2ykyk')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lx2ykyk')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lx2ykyk')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lx2ykyk')>",
"fullname": "t1_lx2ykyk",
"gild": "<bound method GildableMixin.gild of Comment(id='lx2ykyk')>",
"gilded": 0,
"gildings": {},
"id": "lx2ykyk",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": true,
"likes": null,
"link_id": "t3_1gr3zlp",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lx2ykyk')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lx2ykyk')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a89bcc160>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lx2ykyk",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lx2ykyk')>",
"parent_id": "t1_lx2y3am",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/cyberpunkgame/comments/1gr3zlp/my_fight_with_razor_went_well/lx2ykyk/",
"refresh": "<bound method Comment.refresh of Comment(id='lx2ykyk')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a89bce8f0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lx2ykyk')>",
"report": "<bound method ReportableMixin.report of Comment(id='lx2ykyk')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lx2ykyk')>",
"saved": false,
"score": 1,
"score_hidden": true,
"send_replies": true,
"stickied": false,
"submission": "1gr3zlp",
"subreddit": "cyberpunkgame",
"subreddit_id": "t5_3az7x",
"subreddit_name_prefixed": "r/cyberpunkgame",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lx2ykyk')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lx2ykyk')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lx2ykyk')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lx2ykyk')>",
"user_reports": []
}
]
} |