This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (((((is:dupelower -is:modded) or is:sunset) is:classitem) or ((is:blue or is:sunset) -is:masterwork -is:maxpower is:weapon) or (-((basestat:discipline:>=15 basestat:intellect:>=15 basestat:mobility:>=15) or (basestat:discipline:>=15 basestat:intellect:>=15 basestat:recovery:>=15) or (basestat:discipline:>=15 basestat:intellect:>=15 basestat:resilience:>=15) or (basestat:discipline:>=15 basestat:intellect:>=15 basestat:strength:>=15) or (basestat:discipline:>=15 basestat:mobility:>=15 basestat:recovery:>=15) or (basestat:discipline:>=15 basestat:mobility:>=15 basestat:resilience:>=15) or (basestat:discipline:>=15 basestat:mobility:>=15 basestat:strength:>=15) or (basestat:discipline:>=15 basestat:recovery:>=15 basestat:resilience:>=15) or (basestat:discipline:>=15 basestat:recovery:>=15 basestat:strength:>=15) or (basestat:discipline:>=15 basestat:resilience:>=15 basestat:strength:>=15) or (basestat:intellect:>=15 basestat:mobility:>=15 basestat:recovery:>=15) or (basestat:intellect:>=15 basestat:mobility:>=15 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let getPagedDonationsFromFundraiser = async (limit, offset) => { | |
| const response = await fetch(`https://www.helpmakemiracles.org/api/1.0/events/2726/participants?orderBy=sumDonations+DESC&displayName+ASC&limit${limit}&offset=${offset}`); | |
| const payload = await response.json(); | |
| const payloadDonations = payload.reduce((acc, cur) => { | |
| let donation = (cur && Number(cur.sumDonations)) ? Number(cur.sumDonations) : 0; | |
| return acc + donation; | |
| }, 0); | |
| return payloadDonations; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "socketIndex": 0, | |
| "plug": { | |
| "plugItem": { | |
| "displayProperties": { | |
| "description": "Hard-hitting four-burst fire.", | |
| "name": "Aggressive Burst", | |
| "icon": "/common/destiny2_content/icons/4529f92c3c2d69aa5332417f833cafee.png", | |
| "hasIcon": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class StackableItem() { | |
| hash:number | |
| amount:number | |
| } | |
| class Loadout() { | |
| name:string; | |
| subclass:number; | |
| equip:array<string>; | |
| inventory:array<string>; |