primo commit
This commit is contained in:
@@ -0,0 +1,351 @@
|
||||
# OGame Galaxy Viewer — Documentazione tecnica
|
||||
|
||||
Visualizzatore di galassie per **OGame (s170-ar, universo "Rosalind")** con archivio
|
||||
personale dei rapporti di spionaggio e classifiche filtrate.
|
||||
|
||||
Questa documentazione descrive l'architettura, i sorgenti e, per ciascuno, funzioni
|
||||
e metodi.
|
||||
|
||||
---
|
||||
|
||||
## 1. Panoramica
|
||||
|
||||
Il progetto è una **web app personale** composta da:
|
||||
|
||||
| Componente | Tecnologia | Ruolo |
|
||||
|---|---|---|
|
||||
| Backend | Python 3 + Flask | API REST, aggiornamento dati, archivio rapporti |
|
||||
| Frontend | HTML/CSS/JS vanilla | Galaxy view, dettagli rapporti, classifiche |
|
||||
| Dati | File JSON su disco | Nessun database: snapshot + rapporti come file |
|
||||
| Servizi | systemd (utente) | App sempre attiva + aggiornamenti schedulati |
|
||||
|
||||
**Flusso dati (dati universo)**:
|
||||
```
|
||||
Gameforge API pubblica (XML + ?toJson=1)
|
||||
│ ogni giorno (03:30)
|
||||
▼
|
||||
update_data.py ──► data/latest/*.json ──► world.json (indici)
|
||||
│ ▲
|
||||
└── highscore ── ogni ora (:17) ─────┘
|
||||
│
|
||||
app.py (Flask :8899) ──► browser (galassia/classifiche)
|
||||
```
|
||||
|
||||
**Flusso dati (rapporti di spionaggio)**:
|
||||
```
|
||||
In gioco (pulsante "API" del rapporto) ──► API string "sr-ar-170-<40 hex>"
|
||||
│ incollata nella pagina
|
||||
▼
|
||||
POST /api/reports ──► report_store.py ──► proxy community (ogapi.faw-kes.de)
|
||||
▼
|
||||
data/reports/<sr_id>.json (+ index.json)
|
||||
▼
|
||||
clic sul pianeta in galassia ──► dettagli archiviati
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 2. Struttura delle directory
|
||||
|
||||
```
|
||||
/opt/ogame_db/
|
||||
├── app.py # Backend Flask: pagine + API + aggiornamento all'avvio
|
||||
├── update_data.py # Download snapshot pubblici + classifiche + world.json
|
||||
├── report_store.py # Import/archivio/consultazione rapporti di spionaggio
|
||||
├── technames.py # Nomi tecnologici (edifici/ricerche/navi/difese) lato server
|
||||
├── config.json # Configurazione (universo, proxy, account personale)
|
||||
├── requirements.txt # Dipendenze Python
|
||||
├── README.md # Guida rapida d'uso
|
||||
├── DOCUMENTAZIONE.md # (questo file)
|
||||
├── data/
|
||||
│ ├── latest/ # Snapshot correnti + world.json
|
||||
│ ├── snapshots/ # Storico giornaliero (ritenzione: keep_snapshots)
|
||||
│ └── reports/ # Rapporti importati (1 file = 1 rapporto) + index.json
|
||||
└── static/
|
||||
├── index.html # Pagina galassia
|
||||
├── rankings.html # Pagina classifiche
|
||||
├── style.css # Stili (tema spaziale, responsive)
|
||||
├── common.js # Utility condivise (fetch, avatar SVG, icone, stelle)
|
||||
├── app.js # Logica della galassia e dei rapporti
|
||||
├── rankings.js # Logica della pagina classifiche
|
||||
├── icons.js # Icone SVG incorporate (game-icons, CC BY 3.0)
|
||||
└── icons/ # (riservata a eventuali svg esterni; non usata a runtime)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 3. `config.json` — configurazione
|
||||
|
||||
```json
|
||||
{
|
||||
"server_number": 170, // numero universo
|
||||
"community": "ar", // community (lingua/regione)
|
||||
"domain": "s170-ar.ogame.gameforge.com",
|
||||
"my_player_id": 100634, // tuo account: pianeti evidenziati in verde
|
||||
"my_player_name": "MaNaki",
|
||||
"proxy_base": "https://ogapi.faw-kes.de", // proxy ufficiale per i rapporti
|
||||
"refresh_hours": 24, // dati "stale" oltre N ore → update all'avvio
|
||||
"keep_snapshots": 30 // giorni di storico conservati
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 4. Backend — moduli Python
|
||||
|
||||
### 4.1 `app.py` — server Flask (porta 8899)
|
||||
|
||||
Avviato da systemd come `ogame-galaxy.service`. All'avvio verifica l'età dei dati
|
||||
(`_ensure_fresh_data`) e, se più vecchi di `refresh_hours`, lancia `update_data.main()`.
|
||||
|
||||
**Middleware**
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `_no_cache(resp)` | `after_request`: imposta `Cache-Control: no-store` su pagine e file statici (niente cache nel browser) |
|
||||
|
||||
**Helper**
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `load_config()` | Legge `config.json` |
|
||||
| `load_world()` | Legge `data/latest/world.json` e vi fonde i **pianeti noti solo dai rapporti** (player recenti assenti da `universe.xml`), marcandoli `report_only` |
|
||||
| `fmt_ts(epoch)` | Converte epoch in stringa `YYYY-MM-DD HH:MM UTC` |
|
||||
| `_report_view(rec, full)` | Trasforma un record d'archivio + payload in una **vista sintetica** per la UI (date, attività, risorse, conteggi per categoria, flag `failed_*`) |
|
||||
| `_ensure_fresh_data()` | Aggiornamento automatico all'avvio se i dati sono datati |
|
||||
|
||||
**Endpoint HTTP**
|
||||
|
||||
| Rotte | Descrizione |
|
||||
|---|---|
|
||||
| `GET /` | Pagina galassia (`static/index.html`) |
|
||||
| `GET /rankings` | Pagina classifiche (`static/rankings.html`) |
|
||||
| `GET /api/bootstrap` | Stato: `server` (nome, galassie, sistemi, velocità…), `myPlayer`, `fetched` (date ultimo aggiornamento per fonte), `reportStats` (n. rapporti/pianeti) |
|
||||
| `GET /api/galaxy?g=&s=` | Celle del sistema (15 posizioni): per ogni cella pianeta, luna, giocatore (+stato, alleanza, **rank totale/armamenti**), rapporti disponibili |
|
||||
| `GET /api/planet?g=&s=&p=` | Dettaglio pianeta: info, giocatore con rank, altri pianeti dello stesso giocatore, rapporti del pianeta e della luna |
|
||||
| `GET /api/player?id=` | Dettaglio giocatore: tutti i suoi pianeti e **tutti** i rapporti (su qualunque pianeta o luna), ordinati per data |
|
||||
| `POST /api/reports` | Importa un rapporto: body `{"token": "sr-ar-170-<id>"}` (o solo l'id a 40 hex). Idempotente: se già presente ritorna `created:false` |
|
||||
| `GET /api/reports/<sr_id>` | JSON completo di un rapporto archiviato (`{meta, report}`) |
|
||||
| `DELETE /api/reports/<sr_id>` | Elimina un rapporto archiviato (file su disco + voce in `index.json`) |
|
||||
| `GET /api/rankings?type=&status=&start=&end=&q=` | Classifiche filtrate (vedi 4.4) |
|
||||
| `POST /api/refresh` | Forza `update_data.main()` in background |
|
||||
|
||||
### 4.2 `update_data.py` — aggiornamento dati
|
||||
|
||||
Scarica l'API pubblica ufficiale di Gameforge (endpoint XML con `?toJson=1`).
|
||||
|
||||
**Costanti**
|
||||
| Costante | Valore |
|
||||
|---|---|
|
||||
| `ENDPOINTS` | `serverData`, `universe`, `players`, `alliances`, `localization` |
|
||||
| `HIGHSCORES` | `highscore_total` (cat.1, type 0), `highscore_military` (cat.1, type 3) |
|
||||
| `UA` | User-Agent dichiarato nelle richieste |
|
||||
|
||||
**Funzioni**
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `load_config()` | Legge `config.json` |
|
||||
| `http_get(url, timeout)` | GET con User-Agent |
|
||||
| `fetch_xml_json(cfg, name, query)` | Scarica `https://s<num>-<comm>.ogame.gameforge.com/api/<name>.xml?toJson=1<query>` e aggiunge `_fetched_at` |
|
||||
| `fetch_endpoint(cfg, name)` | Wrapper per gli endpoint semplici |
|
||||
| `fetch_highscore(...)` | *(helper storico)* scarica un highscore |
|
||||
| `save_latest(name, data)` | Salva in `data/latest/<name>.json` |
|
||||
| `save_snapshot(name, data)` | Copia giornaliera in `data/snapshots/<name>_<AAAA-MM-GG>.json` (una per giorno; prune oltre `keep_snapshots`) |
|
||||
| `_as_dict(payload, key, attr_key)` | Normalizza `{"player":[{"@attributes":{...}}]}` → `{id: {...}}` |
|
||||
| `build_world(cfg)` | Costruisce `world.json` (vedi §6) |
|
||||
| `_file_time(name)` | Epoch dell'ultimo fetch di un file `latest` |
|
||||
| `update_highscores(cfg, with_snapshot)` | Scarica i 2 highscore |
|
||||
| `main()` | Esegue l'aggiornamento; con argomento `--highscore-only` aggiorna **solo** le classifiche (usato dal timer orario) |
|
||||
|
||||
### 4.3 `report_store.py` — archivio rapporti di spionaggio
|
||||
|
||||
Gestisce il ciclo di vita dei rapporti: parsing API string → recupero dal proxy →
|
||||
salvataggio JSON → indicizzazione per coordinate.
|
||||
|
||||
**Funzioni**
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `load_config()` | Legge `config.json` |
|
||||
| `_load_index()` / `_save_index(idx)` | Legge/scrive `data/reports/index.json` |
|
||||
| `parse_token(token, cfg)` | Valida l'API string `(cr\|sr\|rr\|mr)-<comm>-<num>-<40hex>`; verifica che community/server combacino con la config; accetta anche il solo id esadecimale (assunto `sr`) |
|
||||
| `fetch_from_proxy(api_string, cfg)` | `GET {proxy}/v1/report/{api_string}/1`; gestisce 429 (limite proxy ~10 req/min) e `RESULT_CODE != 1000` |
|
||||
| `_defender_info(report)` | Estrae dal payload `generic` i dati del bersaglio (coordinate, tipo pianeta/luna, nomi, data evento, attività, % bottino) |
|
||||
| `import_report(api_string, cfg)` | Parsa → scarica → salva `data/reports/<sr_id>.json` → aggiorna `index.json`. Ritorna `(record, creato?)`. Idempotente |
|
||||
| `get_report(rid)` | Legge il file completo `{meta, report}` |
|
||||
| `delete_report(rid)` | Elimina un rapporto (file + indice, ripulisce `by_coords`). Ritorna `True` se rimosso |
|
||||
| `list_by_coords(coords, scope)` | Elenca i rapporti di un pianeta. `scope`: `planet` \| `moon` \| `all`, ordinati per `event_timestamp` desc |
|
||||
| `summary(rec)` | *(utilità)* alias del record sintetico |
|
||||
| `stats(cfg)` | Conta rapporti totali e pianeti coperti |
|
||||
|
||||
### 4.4 Filtri `/api/rankings`
|
||||
|
||||
Parametri: `type` (`total`|`military`|`fleet`), `status`, `start`/`end` (range posizione), `q` (testo su nome giocatore, tag o nome alleanza).
|
||||
|
||||
Con `type=fleet` (**Top Flotte**) la classifica non usa gli highscore: elenca solo i
|
||||
giocatori che hanno almeno un rapporto importato, ordinati per **numero di navi**.
|
||||
Le navi sono sommate prendendo, per ogni pianeta/luna spiato, il **rapporto più
|
||||
recente** (campo `total_ship_count`, memorizzato nell'indice all'import); la
|
||||
posizione `rank` è quella della classifica flotte e il valore è in `score`.
|
||||
|
||||
Valori di `status` e relativa condizione sullo stato API:
|
||||
| status | stato API ammesso |
|
||||
|---|---|
|
||||
| `all` | qualsiasi |
|
||||
| `active` | *(vuoto)* |
|
||||
| `inactive` | `i`, `I` |
|
||||
| `vacation` | `v` |
|
||||
| `vacation_inactive` | `vi`, `vI` |
|
||||
| `admin` | `a` |
|
||||
|
||||
> **Nota UI:** la pagina `/rankings` espone solo le voci **Tutti** (`all`),
|
||||
> **Attivi** (`active`) e **Inattivi** (`inactive`). Gli altri valori restano
|
||||
> accettati dall'API per compatibilità, ma non sono più selezionabili
|
||||
> dall'interfaccia.
|
||||
|
||||
Le righe restituite includono: id, nome, stato, alleanza (tag+nome), posizione, punteggio, coordinate del primo pianeta (per l'avatar), numero pianeti, flag `mine`, numero di rapporti di spionaggio sul giocatore (`reports`) e coordinate del rapporto più recente (`report_coords`, usata per il salto dal badge "Spie").
|
||||
|
||||
### 4.5 `technames.py` — dizionario nomi tech (server)
|
||||
|
||||
Mappe `id → nome` per la numerazione **client attuale** (diversa da quella storica):
|
||||
edifici 1–44, ricerca 106–199, navi 202–219, difese 401–503, edifici lifeform 11101+.
|
||||
Nota: il frontend ha una copia aggiornata nei propri sorgenti (vedi §5.4, `NAMES`);
|
||||
`technames.py` resta come riferimento/utilità lato server.
|
||||
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `_localized_names()` | Carica i nomi localizzati da `data/latest/localization.json` (fallback) |
|
||||
| `item_name(category, tid)` | Nome di un elemento (IT → localizzato → `"Categoria #id"`) |
|
||||
| `category_name(cat)` | Etichetta della categoria |
|
||||
|
||||
---
|
||||
|
||||
## 5. Frontend — `static/`
|
||||
|
||||
### 5.1 `common.js` — utility condivise
|
||||
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `esc(s)` | Escape HTML |
|
||||
| `num(v)` | Formatta numeri in stile italiano (`1.234.567`), `—` se nullo |
|
||||
| `hashStr(s)` | Hash deterministico (per i colori degli avatar) |
|
||||
| `api(path, opts)` | `fetch` JSON con gestione errori (`{ok:false, error}`) |
|
||||
| `icon(name, size)` | Ritorna l'SVG inline dell'icona da `window.ICONS` (icons.js) con `currentColor` |
|
||||
| `artSVG(seedKey, size, moon)` | Avatar pianeta/luna in SVG: colore scelto da palette in base all'hash, con ombra e (per la luna) crateri |
|
||||
| `initStars()` | Sfondo stellare su canvas (twinkle); **non bloccante** se canvas non disponibile |
|
||||
|
||||
### 5.2 `app.js` — galassia e rapporti
|
||||
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `loadBootstrap()` | Popola header: nome universo, range galassie/sistemi, date dati, conteggio spie |
|
||||
| `loadGalaxy()` | `GET /api/galaxy` e render della tabella |
|
||||
| `renderGalaxy(data)` | Costruisce le 15 righe: posizione, pianeta (avatar SVG + nome), luna, giocatore (colore per stato + 🏆/⚔ rank), alleanza, badge "spie" |
|
||||
| `openPlanet(pos, focusMoon)` | Apre il popup del pianeta (`GET /api/planet`) |
|
||||
| `openPlanetAt(coords, focusMoon)` | Apre il popup di un pianeta date le coordinate `g:s:p`, anche di un altro sistema |
|
||||
| `openPlayer(pid)` / `renderPlayerPopup(d)` | Apre la finestra **giocatore** (`GET /api/player`): elenco di tutti i pianeti + tutti i rapporti di spionaggio sul giocatore, in un'unica vista |
|
||||
| `renderPlanetPopup(data, focusMoon)` | Header con avatar; chip giocatore/stato/classifica/luna; altri pianeti del giocatore (cliccabili); **griglia di card** per gli spionaggi del pianeta e della luna |
|
||||
| `rptCard(rec)` | Card riepilogo di un rapporto (data, attività colorata, bersaglio con **coordinate** `[g:s:p]`, attaccante, conteggi con icone categoria) |
|
||||
| `openReport(srId)` / `renderReportDetail(meta, rep)` | Vista dettaglio: risorse in tile colorate, meta (difensore/attaccante/attività/bottino/detriti), avvisi `failed_*`, sezioni in **griglia di card** con icona per ogni edificio/ricerca/nave/difesa |
|
||||
| `techSection(...)` | Griglia card per categoria |
|
||||
| `itemName(cat, id)` / `itemIconName(cat, id)` | Nome e chiave-icona di un elemento (fallback sulla categoria) |
|
||||
| `actClass/actLabel(activity)` | Colore/etichetta dell'attività rilevata (0/15/30/60 min) |
|
||||
| `fmtEv(evt)` | Data evento in formato locale italiano |
|
||||
| `setSystem/setGalaxy/closePopup/goToCoords` | Navigazione (con clamp sui limiti universo) |
|
||||
| `setMsg(kind, text)` | Messaggi di stato nella barra di import |
|
||||
| `importReport()` | Legge l'API string, `POST /api/reports`, aggiorna la vista |
|
||||
|
||||
Stato globale: `state = {galaxy, system, maxGalaxy, maxSystem, boot}`.
|
||||
All'avvio legge `?g=` e `?s=` dalla URL (usato dai click dalle classifiche).
|
||||
|
||||
**Colori stato giocatore** (come in galaxy OGame): attivo = giallo · inattivo (`i/I`) =
|
||||
grigio · vacanza+inattivo = grigio · in vacanza = celeste · admin = rosso.
|
||||
|
||||
### 5.3 `rankings.js` — classifiche
|
||||
|
||||
| Funzione | Descrizione |
|
||||
|---|---|
|
||||
| `initHead()` | Header con nome universo e data aggiornamento classifiche |
|
||||
| `load()` | `GET /api/rankings` con i filtri correnti |
|
||||
| `render(d)` | Tabella: posizione (top3 colorati oro/argento/bronzo), avatar pianeta, giocatore (colore stato, ● = tu), alleanza, stato, pianeti, **Spie** (badge col numero di rapporti sul giocatore, cliccabile verso il pianeta del rapporto più recente), punti |
|
||||
| `goGalaxy(coords)` | Salta alla galassia `/?g=..&s=..` al pianeta del giocatore |
|
||||
| `readFilters()` | Legge i controlli (stato, range, testo) |
|
||||
|
||||
Tabs: **Generale** (total), **Armamenti** (military) e **Top Flotte** (fleet — solo
|
||||
giocatori con rapporti, ordinati per navi), con icone SVG.
|
||||
|
||||
### 5.4 Mappe dati nel frontend (`NAMES`, `ITEM_ICON`)
|
||||
|
||||
`NAMES[buildings|research|ships|defense|lfbuildings]` → `{id: nome}` e
|
||||
`ITEM_ICON[...]` → `{id: chiave icona}`. Nomi allineati al client attuale
|
||||
(es. `213 → "Corazzata"`, `215 → "Incrociatore da battaglia"`,
|
||||
`210 → "Sonda di spionaggio"`).
|
||||
|
||||
### 5.5 `icons.js` / icone
|
||||
|
||||
`window.ICONS = { chiave: {vb, body} }` con **87 icone**: 79 da game-icons.net
|
||||
(CC BY 3.0, attribuzione nei footer) + icone UI custom (refresh, chevron, chiusura,
|
||||
logo, avviso). Tutte usano `fill="currentColor"`: il colore segue il CSS di categoria
|
||||
(`--tc`), quindi **nessuna dipendenza dai font emoji del sistema**.
|
||||
|
||||
---
|
||||
|
||||
## 6. Dati su disco — `data/`
|
||||
|
||||
### 6.1 `data/latest/*.json`
|
||||
Snapshot grezzi dell'API (`serverData`, `universe`, `players`, `alliances`,
|
||||
`localization`, `highscore_total`, `highscore_military`), ciascuno con `_fetched_at`.
|
||||
|
||||
### 6.2 `data/latest/world.json` (indici precompilati)
|
||||
|
||||
| Chiave | Contenuto |
|
||||
|---|---|
|
||||
| `server` | numero, community, dominio, nome universo, galassie, sistemi, velocità, versione, lingua, timezone, ACS |
|
||||
| `fetched` | epoch dell'ultimo fetch per ogni fonte |
|
||||
| `players` | `{id: {name, status, alliance, alliance_tag, alliance_name}}` |
|
||||
| `alliances` | `{id: {name, tag, founder}}` |
|
||||
| `planets` | `{"g:s:p": {id, player, name, coords, moon:{...}}}`. Le voci con `report_only: true` non vengono dall'API pubblica ma da un rapporto di spionaggio (pianeti di player recenti assenti da `universe.xml`) |
|
||||
| `avatar` | `{playerId: prime-coordinate}` (per gli avatar in classifica) |
|
||||
| `ranks` | `{playerId: {total, military, total_score, military_score}}` |
|
||||
|
||||
### 6.3 `data/snapshots/`
|
||||
Copie giornaliere `*_AAAA-MM-GG.json` per fonte (ritenzione configurabile).
|
||||
|
||||
### 6.4 `data/reports/`
|
||||
- `index.json`: `{by_coords: {"g:s:p": [sr_id,…], "g:s:p#moon": [… ]}, reports: {sr_id: {meta…}}}` → ricerca immediata per pianeta/luna.
|
||||
- `<sr_id>.json`: `{"meta": {…}, "report": {generic, details}}` (payload completo del proxy).
|
||||
|
||||
---
|
||||
|
||||
## 7. Servizi systemd (utente)
|
||||
|
||||
| Unità | Quando | Cosa fa |
|
||||
|---|---|---|
|
||||
| `ogame-galaxy.service` | sempre attivo | web app su `0.0.0.0:8899` (restart on failure) |
|
||||
| `ogame-data-update.timer` | giornaliero 03:30 | `update_data.py` (pianeti/giocatori/alleanze + highscore) |
|
||||
| `ogame-highscore.timer` | ogni ora (:17) | `update_data.py --highscore-only` (classifiche) |
|
||||
|
||||
Comandi utili: `systemctl --user status/restart <unità>`,
|
||||
`journalctl --user -u ogame-galaxy.service -f`, `loginctl show-user principale | grep Linger`
|
||||
(linger=yes ⇒ i servizi partono al boot senza login).
|
||||
|
||||
---
|
||||
|
||||
## 8. API esterne utilizzate
|
||||
|
||||
| Sorgente | Uso | Note |
|
||||
|---|---|---|
|
||||
| `https://s170-ar.ogame.gameforge.com/api/*.xml?toJson=1` | API **pubblica** ufficiale: universe, players, alliances, serverData, localization, highscore | `highscore.xml?category=1&type=0\|3`; cadenze server: universe ~settimanale, players ~giornaliero, highscore ~orario |
|
||||
| `https://ogapi.faw-kes.de/v1/report/{api_string}/1` | **Proxy community ufficiale** per il recupero dei rapporti (CR/SR/RR/MR) | Nessuna API key necessaria; limite ~10 richieste/min |
|
||||
| `https://forum.origin.ogame.gameforge.com` | Documentazione ufficiale (thread "OGame API", procedure accesso) | Riferimento del protocollo |
|
||||
|
||||
---
|
||||
|
||||
## 9. Note operative e di sicurezza
|
||||
|
||||
1. **Accesso**: app su `0.0.0.0:8899` **senza autenticazione**: se la rete non è
|
||||
privata, mettere un reverse proxy con login.
|
||||
2. **Backup**: copiare `data/` (report inclusi) e `config.json`.
|
||||
3. **Cache**: i file statici sono serviti con `no-store`: un refresh basta dopo ogni
|
||||
modifica (nessun `Ctrl+F5` necessario, ma non guasta).
|
||||
4. **Privacy**: i rapporti restano su questo server; il proxy viene contattato solo
|
||||
al momento dell'import di un nuovo token (che il giocatore controlla e condivide
|
||||
volontariamente).
|
||||
5. **Licenza icone**: game-icons.net, CC BY 3.0 (attribuzione nei footer di pagina).
|
||||
@@ -1,3 +1,132 @@
|
||||
# ogame_db
|
||||
# OGame Galaxy Viewer
|
||||
|
||||
Piattaforma web come il vecchio galaxy tool
|
||||
> 📖 Documentazione tecnica completa (architettura, sorgenti, funzioni e metodi): **[DOCUMENTAZIONE.md](DOCUMENTAZIONE.md)**
|
||||
|
||||
Visualizzatore di galassie per OGame con archivio dei rapporti di spionaggio.
|
||||
|
||||
- Universo configurato: **Rosalind `s170-ar`** (galassie 1-7, sistemi 1-499)
|
||||
- Dati pubblici (pianeti, giocatori, alleanze) scaricati ogni giorno
|
||||
- Import di rapporti di spionaggio tramite **API string** del gioco
|
||||
(`sr-ar-170-<40 hex>`) con salvataggio su disco (JSON) e consultazione
|
||||
cliccando sul pianeta nella galassia
|
||||
|
||||
## Come funziona il protocollo dei rapporti (scoperto dalla documentazione ufficiale OGame "Origin")
|
||||
|
||||
In gioco, ogni rapporto (CR/SR/RR/MR) ha un pulsante **"API"** nel tooltip che
|
||||
permette di copiare una stringa del tipo:
|
||||
|
||||
```
|
||||
sr-ar-170-98018ad723cb4fdba047f78728fb831cd28b3ca5
|
||||
```
|
||||
|
||||
composta da: tipo (`sr` = spionaggio) · community (`ar`) · server (`170`) · id (40 hex).
|
||||
|
||||
I dati vengono recuperati tramite il **community proxy ufficiale** (niente API key
|
||||
da richiedere, metodo standard dal 2026):
|
||||
|
||||
```
|
||||
GET https://ogapi.faw-kes.de/v1/report/sr-ar-170-<id>/1
|
||||
```
|
||||
|
||||
Limite del proxy: ~10 richieste/minuto. Il proxy restituisce il rapporto in JSON
|
||||
(risorse, edifici, navi, difese, ricerca, attività del bersaglio).
|
||||
|
||||
Riferimenti: [forum Origin — OGame API](https://forum.origin.ogame.gameforge.com/forum/thread/44-ogame-api/)
|
||||
e [procedura accesso](https://forum.origin.ogame.gameforge.com/forum/thread/319-api-access-applications-required-procedure-updated/)
|
||||
|
||||
## Struttura
|
||||
|
||||
```
|
||||
/opt/ogame_db/
|
||||
├── app.py # backend Flask (porta 8899) + API
|
||||
├── update_data.py # aggiornamento dati giornaliero + classifiche (--highscore-only)
|
||||
├── report_store.py # import/archivio rapporti di spionaggio
|
||||
├── technames.py # nomi edifici/navi/ricerche/difese
|
||||
├── config.json # configurazione (universo, proxy, id giocatore)
|
||||
├── data/
|
||||
│ ├── latest/ # snapshot correnti + world.json (indici + classifiche)
|
||||
│ ├── snapshots/ # storico giornaliero (30 giorni)
|
||||
│ └── reports/ # rapporti di spionaggio importati (JSON)
|
||||
└── static/ # frontend: common.js + galassia + classifiche
|
||||
```
|
||||
|
||||
## Installazione / avvio come servizio
|
||||
|
||||
Il servizio è già installato come **systemd utente** (gira al boot grazie a
|
||||
`loginctl enable-linger`):
|
||||
|
||||
```bash
|
||||
systemctl --user status ogame-galaxy.service # web app su :8899
|
||||
systemctl --user status ogame-data-update.timer # aggiornamento giornaliero 03:30
|
||||
systemctl --user status ogame-highscore.timer # classifiche ogni ora (:17)
|
||||
systemctl --user restart ogame-galaxy.service # riavvio
|
||||
journalctl --user -u ogame-galaxy.service -f # log
|
||||
```
|
||||
|
||||
Update manuale dei dati: `python3 /opt/ogame_db/update_data.py`
|
||||
Classifiche manuali: `python3 /opt/ogame_db/update_data.py --highscore-only`
|
||||
|
||||
## Uso
|
||||
|
||||
1. Apri `http://<host>:8899` nel browser.
|
||||
2. Naviga galassia/sistema (frecce o campi numerici): accanto al nome di ogni
|
||||
giocatore trovi la posizione in classifica (🏆 generale · ⚔️ armamenti).
|
||||
**Clicca sul nome del giocatore** per aprire una finestra con tutti i suoi
|
||||
pianeti e tutti i rapporti di spionaggio disponibili su di lui, senza doverli
|
||||
cercare pianeta per pianeta.
|
||||
3. **Classifiche**: apri `http://<host>:8899/rankings` (o il pulsante 🏆 in alto).
|
||||
Tre tab (Generale / Armamenti / Top Flotte) con filtro per stato (**tutti / attivi /
|
||||
inattivi**), range di posizione e ricerca per nome/alleanza. Cliccando su un
|
||||
giocatore salti al suo pianeta nella galassia.
|
||||
4. Per archiviare uno spionaggio: in gioco apri il rapporto → pulsante **API** →
|
||||
copia la stringa → incollala nella barra "Importa rapporto".
|
||||
5. Clicca sul pianeta (o sulla luna) nella galassia: trovi tutti i rapporti
|
||||
salvati, ordinati per data, con dettagli completi.
|
||||
|
||||
## Configurazione (`config.json`)
|
||||
|
||||
```json
|
||||
{
|
||||
"server_number": 170,
|
||||
"community": "ar",
|
||||
"domain": "s170-ar.ogame.gameforge.com",
|
||||
"my_player_id": 100634,
|
||||
"my_player_name": "MaNaki",
|
||||
"proxy_base": "https://ogapi.faw-kes.de",
|
||||
"refresh_hours": 24,
|
||||
"keep_snapshots": 30
|
||||
}
|
||||
```
|
||||
|
||||
- `my_player_id`: i tuoi pianeti vengono evidenziati in verde nella galassia
|
||||
(lo trovi nell'URL delle tue pagine in gioco o dal pulsante API dei tuoi rapporti:
|
||||
nell'API string compare solo l'id del *report*, ma i rapporti che fai tu riportano
|
||||
`attacker_user_id` nel JSON salvato).
|
||||
- `refresh_hours`: dopo quante ore senza update l'app ricarica i dati all'avvio.
|
||||
|
||||
## API locali
|
||||
|
||||
| Metodo | Percorso | Descrizione |
|
||||
|---|---|---|
|
||||
| GET | `/api/bootstrap` | stato universo + statistiche rapporti |
|
||||
| GET | `/api/galaxy?g=&s=` | celle del sistema (15 posizioni) con rank giocatori |
|
||||
| GET | `/api/planet?g=&s=&p=` | dettaglio pianeta + rapporti + rank giocatore |
|
||||
| GET | `/api/player?id=` | tutti i pianeti del giocatore + tutti i suoi rapporti |
|
||||
| GET | `/api/rankings?type=total\|military\|fleet&status=&start=&end=&q=` | classifiche filtrate |
|
||||
| GET | `/rankings` | pagina web classifiche |
|
||||
| GET | `/api/reports/<sr_id>` | JSON completo di un rapporto |
|
||||
| DELETE | `/api/reports/<sr_id>` | elimina un rapporto (file + indice) |
|
||||
| POST | `/api/reports` | importa un rapporto `{"token": "sr-ar-170-..."}` |
|
||||
| POST | `/api/refresh` | forza l'aggiornamento dei dati |
|
||||
|
||||
`status` accetta: `all`, `active`, `inactive` (i/I), `vacation` (v),
|
||||
`vacation_inactive` (vi/vI), `admin` (a).
|
||||
|
||||
## Note
|
||||
|
||||
- Il tool usa solo API ufficiali/approvate da Gameforge (API pubblica XML e proxy
|
||||
community per i rapporti, che restano sotto il controllo del giocatore che
|
||||
condivide i propri ID).
|
||||
- L'app ascolta su `0.0.0.0:8899` senza autenticazione: se il server è raggiungibile
|
||||
da altri, valuta un reverse proxy con auth o un firewall.
|
||||
- Lo storico giornaliero viene tenuto per 30 giorni in `data/snapshots/`.
|
||||
|
||||
@@ -0,0 +1,560 @@
|
||||
#!/usr/bin/env python3
|
||||
"""OGame Galaxy Viewer — backend Flask.
|
||||
|
||||
Servizi:
|
||||
- vista galassia/sistema (dati da world.json, aggiornato 1x/giorno)
|
||||
- import rapporti di spionaggio via API string (sr-...) con salvataggio JSON
|
||||
- consultazione rapporti per pianeta
|
||||
|
||||
Avvio: python3 app.py (sviluppo)
|
||||
Servizio systemd: ogame-galaxy.service
|
||||
"""
|
||||
import json
|
||||
import threading
|
||||
import time
|
||||
from datetime import datetime, timezone
|
||||
from pathlib import Path
|
||||
|
||||
from flask import Flask, jsonify, request, send_from_directory
|
||||
|
||||
import report_store
|
||||
import update_data
|
||||
from technames import category_name, item_name
|
||||
|
||||
BASE_DIR = Path(__file__).resolve().parent
|
||||
STATIC = BASE_DIR / "static"
|
||||
LATEST = BASE_DIR / "data" / "latest"
|
||||
|
||||
app = Flask(__name__, static_folder=str(STATIC), static_url_path="/static")
|
||||
|
||||
|
||||
@app.after_request
|
||||
def _no_cache(resp):
|
||||
# tool personale: niente cache, sempre file freschi
|
||||
if request.path.startswith("/static/") or request.path in ("/", "/rankings"):
|
||||
resp.headers["Cache-Control"] = "no-store"
|
||||
return resp
|
||||
|
||||
|
||||
# semplice rate-limit di cortesia verso il proxy (10 req/min => max 5/min qui)
|
||||
_report_lock = threading.Lock()
|
||||
|
||||
|
||||
def load_config():
|
||||
with open(BASE_DIR / "config.json", encoding="utf-8") as f:
|
||||
return json.load(f)
|
||||
|
||||
|
||||
def load_world():
|
||||
p = LATEST / "world.json"
|
||||
if not p.exists():
|
||||
return None
|
||||
with open(p, encoding="utf-8") as f:
|
||||
world = json.load(f)
|
||||
return _augment_world_with_reports(world)
|
||||
|
||||
|
||||
def _augment_world_with_reports(world):
|
||||
"""Aggiunge i pianeti noti *solo* dai rapporti di spionaggio.
|
||||
|
||||
L'API pubblica `universe.xml` viene rigenerata di rado: i pianeti dei player
|
||||
più recenti possono mancare per giorni, pur essendo visibili nei rapporti.
|
||||
Se esiste un rapporto su una coordinata assente, la aggiungiamo (marcata
|
||||
`report_only`), associando il giocatore per nome univoco, così galassia,
|
||||
finestra giocatore e classifica restano utilizzabili.
|
||||
"""
|
||||
try:
|
||||
idx = report_store._load_index()
|
||||
except Exception:
|
||||
return world
|
||||
reports = idx.get("reports", {})
|
||||
planets = world.setdefault("planets", {})
|
||||
players = world.get("players", {})
|
||||
avatar = world.setdefault("avatar", {})
|
||||
|
||||
by_name = {}
|
||||
for pid, p in players.items():
|
||||
n = (p.get("name") or "").strip().lower()
|
||||
if n:
|
||||
by_name.setdefault(n, []).append(pid)
|
||||
|
||||
def resolve(rec):
|
||||
pids = by_name.get((rec.get("defender_name") or "").strip().lower())
|
||||
return pids[0] if pids and len(pids) == 1 else None
|
||||
|
||||
# 1) pianeti (type != 3): aggiungi quelli mancanti
|
||||
for rec in reports.values():
|
||||
coords = rec.get("coords")
|
||||
if not coords or rec.get("planet_type") == 3 or coords in planets:
|
||||
continue
|
||||
pid = resolve(rec)
|
||||
if not pid:
|
||||
continue
|
||||
planets[coords] = {
|
||||
"id": f"report-{coords}",
|
||||
"player": pid,
|
||||
"name": rec.get("defender_planet_name") or "(da rapporto)",
|
||||
"coords": coords,
|
||||
"report_only": True,
|
||||
}
|
||||
avatar.setdefault(pid, coords)
|
||||
|
||||
# 2) lune (type == 3): aggancia al pianeta se presente e senza luna nota
|
||||
for rec in reports.values():
|
||||
if rec.get("planet_type") != 3:
|
||||
continue
|
||||
base = planets.get(rec.get("coords") or "")
|
||||
if base is not None and not base.get("moon"):
|
||||
base["moon"] = {
|
||||
"id": f"report-{base['coords']}#moon",
|
||||
"name": rec.get("defender_planet_name") or "Luna",
|
||||
"size": 0,
|
||||
}
|
||||
return world
|
||||
|
||||
|
||||
def fmt_ts(epoch):
|
||||
if not epoch:
|
||||
return None
|
||||
return datetime.fromtimestamp(epoch, tz=timezone.utc).strftime("%Y-%m-%d %H:%M UTC")
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- pagine
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
return send_from_directory(STATIC, "index.html")
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- API dati
|
||||
|
||||
@app.route("/api/bootstrap")
|
||||
def api_bootstrap():
|
||||
cfg = load_config()
|
||||
world = load_world()
|
||||
if not world:
|
||||
return jsonify({"ok": False, "error": "Dati non ancora scaricati."}), 503
|
||||
rep = report_store.stats(cfg)
|
||||
return jsonify({
|
||||
"ok": True,
|
||||
"server": world["server"],
|
||||
"myPlayer": {
|
||||
"id": cfg.get("my_player_id"),
|
||||
"name": cfg.get("my_player_name"),
|
||||
},
|
||||
"fetched": {k: fmt_ts(v) for k, v in world.get("fetched", {}).items()},
|
||||
"reportStats": rep,
|
||||
})
|
||||
|
||||
|
||||
@app.route("/api/galaxy")
|
||||
def api_galaxy():
|
||||
world = load_world()
|
||||
if not world:
|
||||
return jsonify({"ok": False, "error": "Dati non disponibili."}), 503
|
||||
try:
|
||||
g = int(request.args.get("g", 1))
|
||||
s = int(request.args.get("s", 1))
|
||||
except ValueError:
|
||||
return jsonify({"ok": False, "error": "Parametri g/s non validi"}), 400
|
||||
sd = world["server"]
|
||||
if not (1 <= g <= sd["galaxies"]):
|
||||
return jsonify({"ok": False, "error": f"Galassia fuori range (1-{sd['galaxies']})"}), 400
|
||||
if not (1 <= s <= sd["systems"]):
|
||||
return jsonify({"ok": False, "error": f"Sistema fuori range (1-{sd['systems']})"}), 400
|
||||
|
||||
players = world["players"]
|
||||
planets = world["planets"]
|
||||
cells = []
|
||||
idx = report_store._load_index()
|
||||
reports_idx = idx.get("reports", {})
|
||||
for pos in range(1, 16):
|
||||
cell = {"pos": pos}
|
||||
key = f"{g}:{s}:{pos}"
|
||||
planet = planets.get(key)
|
||||
if planet:
|
||||
pid = planet["player"]
|
||||
pl = players.get(pid, {})
|
||||
# eventuali rapporti su questo pianeta
|
||||
rep_ids = [r for r in idx.get("by_coords", {}).get(key, [])]
|
||||
rep_ids += [r for r in idx.get("by_coords", {}).get(key + "#moon", [])]
|
||||
reps = []
|
||||
for rid in rep_ids:
|
||||
rec = reports_idx.get(rid)
|
||||
if rec:
|
||||
reps.append({
|
||||
"sr_id": rid,
|
||||
"moon": key + "#moon" in idx.get("by_coords", {}).get(key + "#moon", []),
|
||||
"event_time": rec.get("event_time"),
|
||||
"activity": rec.get("activity"),
|
||||
})
|
||||
reps.sort(key=lambda r: r.get("event_time") or "", reverse=True)
|
||||
cell["planet"] = {
|
||||
"id": planet["id"],
|
||||
"name": planet["name"],
|
||||
"coords": planet["coords"],
|
||||
"report_only": planet.get("report_only", False),
|
||||
"mine": str(pid) == str(load_config().get("my_player_id")),
|
||||
}
|
||||
cell["player"] = {
|
||||
"id": pid,
|
||||
"name": pl.get("name", ""),
|
||||
"status": pl.get("status", ""),
|
||||
"alliance_tag": pl.get("alliance_tag", ""),
|
||||
}
|
||||
if planet.get("moon"):
|
||||
cell["moon"] = planet["moon"]
|
||||
cell["reports"] = reps
|
||||
# posizioni in classifica (generale/armamenti) del giocatore in cella
|
||||
if cell.get("player"):
|
||||
rk = (world.get("ranks") or {}).get(cell["player"]["id"], {})
|
||||
cell["player"]["rank_total"] = rk.get("total")
|
||||
cell["player"]["rank_military"] = rk.get("military")
|
||||
cells.append(cell)
|
||||
return jsonify({"ok": True, "galaxy": g, "system": s,
|
||||
"galaxies": sd["galaxies"], "systems": sd["systems"],
|
||||
"cells": cells})
|
||||
|
||||
|
||||
@app.route("/api/planet")
|
||||
def api_planet():
|
||||
"""Dettaglio pianeta: info + tutti i rapporti di spionaggio salvati."""
|
||||
world = load_world()
|
||||
g = request.args.get("g")
|
||||
s = request.args.get("s")
|
||||
p = request.args.get("p")
|
||||
if not (g and s and p):
|
||||
return jsonify({"ok": False, "error": "Parametri g/s/p richiesti"}), 400
|
||||
key = f"{g}:{s}:{p}"
|
||||
planets = world["planets"]
|
||||
planet = planets.get(key)
|
||||
if not planet:
|
||||
return jsonify({"ok": False, "error": "Pianeta non trovato in questo sistema."}), 404
|
||||
player = world["players"].get(planet["player"], {})
|
||||
rk = (world.get("ranks") or {}).get(planet["player"], {})
|
||||
player = {**player, "rank_total": rk.get("total"), "rank_military": rk.get("military")}
|
||||
ally = {}
|
||||
if player.get("alliance"):
|
||||
ally = world["alliances"].get(player["alliance"], {})
|
||||
# altri pianeti dello stesso giocatore
|
||||
others = [pl for k, pl in planets.items()
|
||||
if pl["player"] == planet["player"] and k != key]
|
||||
others.sort(key=lambda x: x["coords"])
|
||||
|
||||
# rapporti
|
||||
reports = [
|
||||
_report_view(rec, report_store.get_report(rec["sr_id"]))
|
||||
for rec in report_store.list_by_coords(key, scope="planet")
|
||||
]
|
||||
moon_reports = [
|
||||
_report_view(rec, report_store.get_report(rec["sr_id"]))
|
||||
for rec in report_store.list_by_coords(key, scope="moon")
|
||||
]
|
||||
|
||||
return jsonify({
|
||||
"ok": True,
|
||||
"planet": planet,
|
||||
"player": {**player, "alliance_name": ally.get("name", "")},
|
||||
"other_planets": others,
|
||||
"reports": reports,
|
||||
"moon_reports": moon_reports,
|
||||
})
|
||||
|
||||
|
||||
@app.route("/api/player")
|
||||
def api_player():
|
||||
"""Dettaglio giocatore: tutti i suoi pianeti + TUTTI i rapporti (pianeti e lune)."""
|
||||
world = load_world()
|
||||
if not world:
|
||||
return jsonify({"ok": False, "error": "Dati non disponibili."}), 503
|
||||
pid = request.args.get("id")
|
||||
if not pid:
|
||||
return jsonify({"ok": False, "error": "Parametro id richiesto"}), 400
|
||||
player = world["players"].get(pid)
|
||||
if not player:
|
||||
return jsonify({"ok": False, "error": "Giocatore non trovato."}), 404
|
||||
rk = (world.get("ranks") or {}).get(pid, {})
|
||||
player = {**player, "rank_total": rk.get("total"), "rank_military": rk.get("military")}
|
||||
ally = world["alliances"].get(player.get("alliance"), {}) if player.get("alliance") else {}
|
||||
|
||||
planets = [pl for pl in world["planets"].values() if pl["player"] == pid]
|
||||
planets.sort(key=lambda x: [int(n) for n in x["coords"].split(":")])
|
||||
|
||||
# tutti i rapporti del giocatore, su qualunque suo pianeta o luna
|
||||
idx = report_store._load_index()
|
||||
by = idx.get("by_coords", {})
|
||||
reports_meta = idx.get("reports", {})
|
||||
seen = set()
|
||||
reports = []
|
||||
for pl in planets:
|
||||
c = pl["coords"]
|
||||
for key in (c, f"{c}#moon"):
|
||||
for rid in by.get(key, []):
|
||||
if rid in seen:
|
||||
continue
|
||||
rec = reports_meta.get(rid)
|
||||
if rec:
|
||||
seen.add(rid)
|
||||
reports.append(_report_view(rec, report_store.get_report(rid)))
|
||||
reports.sort(key=lambda r: r.get("event_timestamp") or 0, reverse=True)
|
||||
|
||||
return jsonify({
|
||||
"ok": True,
|
||||
"player": {**player, "alliance_name": ally.get("name", "")},
|
||||
"avatar": (world.get("avatar") or {}).get(pid),
|
||||
"planets": planets,
|
||||
"reports": reports,
|
||||
})
|
||||
|
||||
|
||||
def _report_view(rec, full):
|
||||
"""Vista sintetica (senza dati grezzi pesanti) per la lista rapporti."""
|
||||
rep = (full or {}).get("report", {})
|
||||
gen = rep.get("generic", {})
|
||||
det = rep.get("details", {})
|
||||
res = det.get("resources") or {}
|
||||
return {
|
||||
"sr_id": rec["sr_id"],
|
||||
"saved_at": rec.get("saved_at"),
|
||||
"event_time": rec.get("event_time"),
|
||||
"event_timestamp": rec.get("event_timestamp"),
|
||||
"attacker_name": rec.get("attacker_name"),
|
||||
"defender_name": rec.get("defender_name"),
|
||||
"defender_planet_name": rec.get("defender_planet_name"),
|
||||
"coords": rec.get("coords"),
|
||||
"activity": rec.get("activity"),
|
||||
"loot_percentage": rec.get("loot_percentage"),
|
||||
"spy_fail_chance": gen.get("spy_fail_chance"),
|
||||
"total_ship_count": gen.get("total_ship_count"),
|
||||
"total_defense_count": gen.get("total_defense_count"),
|
||||
"resources": res,
|
||||
"failed": {k: gen.get(k) for k in
|
||||
("failed_ships", "failed_defense", "failed_buildings", "failed_research")},
|
||||
"categories": {
|
||||
"buildings": len(det.get("buildings") or []),
|
||||
"lfbuildings": len(det.get("lfbuildings") or []),
|
||||
"research": len(det.get("research") or []),
|
||||
"ships": len(det.get("ships") or []),
|
||||
"defense": len(det.get("defense") or []),
|
||||
},
|
||||
"moon": rec.get("planet_type") == 3,
|
||||
}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------- rapporti
|
||||
|
||||
@app.route("/api/reports", methods=["POST"])
|
||||
def api_add_report():
|
||||
cfg = load_config()
|
||||
body = request.get_json(silent=True) or {}
|
||||
token = (body.get("token") or "").strip()
|
||||
if not token:
|
||||
return jsonify({"ok": False, "error": "Incolla l'API string del rapporto (es. sr-ar-170-...)."}), 400
|
||||
with _report_lock:
|
||||
try:
|
||||
rec, created = report_store.import_report(token, cfg)
|
||||
except ValueError as e:
|
||||
return jsonify({"ok": False, "error": str(e)}), 400
|
||||
except RuntimeError as e:
|
||||
return jsonify({"ok": False, "error": str(e)}), 502
|
||||
sr_id = rec["meta"]["sr_id"]
|
||||
full = report_store.get_report(sr_id)
|
||||
view = _report_view(rec["meta"], full)
|
||||
return jsonify({"ok": True, "created": created, "report": view,
|
||||
"coords": rec["meta"].get("coords"),
|
||||
"planet_type": rec["meta"].get("planet_type")})
|
||||
|
||||
|
||||
@app.route("/api/reports/<sr_id>")
|
||||
def api_get_report(sr_id):
|
||||
full = report_store.get_report(sr_id)
|
||||
if not full:
|
||||
return jsonify({"ok": False, "error": "Rapporto non trovato."}), 404
|
||||
idx = report_store._load_index()
|
||||
rec = idx["reports"].get(sr_id)
|
||||
return jsonify({"ok": True, "meta": rec, "data": full["report"]})
|
||||
|
||||
|
||||
@app.route("/api/reports/<sr_id>", methods=["DELETE"])
|
||||
def api_delete_report(sr_id):
|
||||
"""Elimina un rapporto di spionaggio (file + indice)."""
|
||||
if not report_store.delete_report(sr_id):
|
||||
return jsonify({"ok": False, "error": "Rapporto non trovato."}), 404
|
||||
return jsonify({"ok": True, "deleted": sr_id})
|
||||
|
||||
|
||||
@app.route("/api/refresh", methods=["POST"])
|
||||
def api_refresh():
|
||||
def _run():
|
||||
try:
|
||||
update_data.main()
|
||||
except Exception as e: # noqa
|
||||
print("refresh fallito:", e)
|
||||
threading.Thread(target=_run, daemon=True).start()
|
||||
return jsonify({"ok": True, "message": "Aggiornamento dati avviato in background."})
|
||||
|
||||
|
||||
@app.route("/rankings")
|
||||
def rankings_page():
|
||||
return send_from_directory(STATIC, "rankings.html")
|
||||
|
||||
|
||||
# mappa stato API -> gruppo di ricerca
|
||||
_STATUS_GROUPS = {
|
||||
"all": lambda st: True,
|
||||
"active": lambda st: st == "",
|
||||
"inactive": lambda st: st in ("i", "I"),
|
||||
"vacation": lambda st: st == "v",
|
||||
"vacation_inactive": lambda st: st in ("vi", "vI"),
|
||||
"admin": lambda st: st == "a",
|
||||
}
|
||||
|
||||
|
||||
@app.route("/api/rankings")
|
||||
def api_rankings():
|
||||
"""Classifiche con filtri: type=total|military|fleet, range posizione, stato, testo."""
|
||||
world = load_world()
|
||||
if not world:
|
||||
return jsonify({"ok": False, "error": "Dati non disponibili."}), 503
|
||||
rtype = request.args.get("type", "total")
|
||||
if rtype not in ("total", "military", "fleet"):
|
||||
return jsonify({"ok": False, "error": "type deve essere total, military o fleet"}), 400
|
||||
try:
|
||||
start = int(request.args.get("start", 1) or 1)
|
||||
end = int(request.args.get("end", 0) or 0)
|
||||
except ValueError:
|
||||
return jsonify({"ok": False, "error": "range non valido"}), 400
|
||||
status = request.args.get("status", "all")
|
||||
if status not in _STATUS_GROUPS:
|
||||
return jsonify({"ok": False, "error": "stato non valido"}), 400
|
||||
q = (request.args.get("q") or "").strip().lower()
|
||||
|
||||
players = world["players"]
|
||||
ranks = world.get("ranks", {})
|
||||
avatar = world.get("avatar", {})
|
||||
pcount = {}
|
||||
for pl in world["planets"].values():
|
||||
pcount[pl["player"]] = pcount.get(pl["player"], 0) + 1
|
||||
|
||||
# rapporti di spionaggio per giocatore bersaglio (pianeta + luna) e
|
||||
# coordinata del rapporto più recente (per il salto diretto dal badge)
|
||||
rcount = {}
|
||||
rcoord = {}
|
||||
ridx = report_store._load_index()
|
||||
reports_meta = ridx.get("reports", {})
|
||||
for ckey, rids in ridx.get("by_coords", {}).items():
|
||||
planet = world["planets"].get(ckey.split("#")[0])
|
||||
if not planet:
|
||||
continue
|
||||
pid = planet["player"]
|
||||
rcount[pid] = rcount.get(pid, 0) + len(rids)
|
||||
for rid in rids:
|
||||
ts = (reports_meta.get(rid) or {}).get("event_timestamp") or 0
|
||||
if pid not in rcoord or ts > rcoord[pid][1]:
|
||||
rcoord[pid] = (planet["coords"], ts)
|
||||
|
||||
# flotte conosciute (tab "Top Flotte"): per ogni coordinata (pianeta o luna)
|
||||
# si prende il rapporto più recente, poi si sommano le navi per giocatore.
|
||||
latest_by_coord = {}
|
||||
for ckey, rids in ridx.get("by_coords", {}).items():
|
||||
best = None
|
||||
for rid in rids:
|
||||
ts = (reports_meta.get(rid) or {}).get("event_timestamp") or 0
|
||||
if best is None or ts > best[0]:
|
||||
best = (ts, rid)
|
||||
if best:
|
||||
latest_by_coord[ckey] = best[1]
|
||||
pships = {}
|
||||
for ckey, rid in latest_by_coord.items():
|
||||
planet = world["planets"].get(ckey.split("#")[0])
|
||||
if not planet:
|
||||
continue
|
||||
pid = planet["player"]
|
||||
ships = (reports_meta.get(rid) or {}).get("total_ship_count") or 0
|
||||
pships[pid] = pships.get(pid, 0) + int(ships)
|
||||
|
||||
ok_status = _STATUS_GROUPS[status]
|
||||
|
||||
# --- tab "Top Flotte": solo giocatori con rapporti, ordinati per navi ---
|
||||
if rtype == "fleet":
|
||||
rows = []
|
||||
mine_id = str(load_config().get("my_player_id"))
|
||||
for pid, ships in pships.items():
|
||||
p = players.get(pid)
|
||||
if not p or not ok_status(p.get("status", "")):
|
||||
continue
|
||||
name = p.get("name", "")
|
||||
tag = p.get("alliance_tag", "")
|
||||
ally_name = p.get("alliance_name", "")
|
||||
if q and not (q in name.lower() or q in tag.lower() or q in ally_name.lower()):
|
||||
continue
|
||||
rows.append({
|
||||
"id": pid, "name": name, "status": p.get("status", ""),
|
||||
"alliance_tag": tag, "alliance_name": ally_name,
|
||||
"rank": None, "score": int(ships),
|
||||
"avatar": avatar.get(pid), "planets": pcount.get(pid, 0),
|
||||
"reports": rcount.get(pid, 0),
|
||||
"report_coords": rcoord.get(pid, (None,))[0],
|
||||
"mine": str(pid) == mine_id,
|
||||
})
|
||||
rows.sort(key=lambda r: r["score"], reverse=True)
|
||||
for i, r in enumerate(rows, 1):
|
||||
r["rank"] = i
|
||||
if start > 1 or end:
|
||||
rows = [r for r in rows
|
||||
if r["rank"] >= start and (not end or r["rank"] <= end)]
|
||||
return jsonify({"ok": True, "type": "fleet", "count": len(rows), "rows": rows})
|
||||
|
||||
rows = []
|
||||
for pid, p in players.items():
|
||||
if not ok_status(p.get("status", "")):
|
||||
continue
|
||||
name = p.get("name", "")
|
||||
tag = p.get("alliance_tag", "")
|
||||
ally_name = p.get("alliance_name", "")
|
||||
if q and not (q in name.lower() or q in tag.lower() or q in ally_name.lower()):
|
||||
continue
|
||||
rk = ranks.get(pid, {})
|
||||
rank = rk.get(rtype)
|
||||
score = rk.get(rtype + "_score")
|
||||
# filtro range posizione (solo per chi ha una posizione)
|
||||
if (start > 1 or end):
|
||||
if rank is None or rank < start or (end and rank > end):
|
||||
continue
|
||||
rows.append({
|
||||
"id": pid,
|
||||
"name": name,
|
||||
"status": p.get("status", ""),
|
||||
"alliance_tag": tag,
|
||||
"alliance_name": ally_name,
|
||||
"rank": rank,
|
||||
"score": int(score) if score is not None else None,
|
||||
"avatar": avatar.get(pid),
|
||||
"planets": pcount.get(pid, 0),
|
||||
"reports": rcount.get(pid, 0),
|
||||
"report_coords": rcoord.get(pid, (None,))[0],
|
||||
"mine": str(pid) == str(load_config().get("my_player_id")),
|
||||
})
|
||||
rows.sort(key=lambda r: (r["rank"] is None, r["rank"] or 10 ** 9))
|
||||
return jsonify({"ok": True, "type": rtype, "count": len(rows), "rows": rows})
|
||||
|
||||
|
||||
def _ensure_fresh_data():
|
||||
"""All'avvio: aggiorna se l'ultimo fetch dei players è più vecchio di refresh_hours."""
|
||||
cfg = load_config()
|
||||
world = load_world()
|
||||
stale = True
|
||||
if world:
|
||||
ft = world.get("fetched", {}).get("players") or 0
|
||||
stale = (time.time() - ft) > cfg.get("refresh_hours", 24) * 3600
|
||||
if stale:
|
||||
print("Dati datati: aggiornamento all'avvio...")
|
||||
try:
|
||||
update_data.main()
|
||||
except Exception as e:
|
||||
print("Aggiornamento iniziale fallito:", e)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
_ensure_fresh_data()
|
||||
app.run(host="0.0.0.0", port=8899, debug=False)
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"server_number": 170,
|
||||
"community": "ar",
|
||||
"domain": "s170-ar.ogame.gameforge.com",
|
||||
"my_player_id": 100634,
|
||||
"my_player_name": "MaNaki",
|
||||
"proxy_base": "https://ogapi.faw-kes.de",
|
||||
"refresh_hours": 24,
|
||||
"keep_snapshots": 30
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"@attributes": {"timestamp": "1790081519", "serverId": "ar170"}, "techs": {"name": ["Mina de metal", "Almacén de metal", "Mina de cristal", "Almacén de cristal", "Sintetizador de deuterio", "Contenedor de deuterio", "Planta de energía solar", "Planta de fusión", "Fábrica de Robots", "Fábrica de Nanobots", "Hangar", "Muelle Espacial", "Silo", "Laboratorio de investigación", "Depósito de la Alianza", "Terraformer", "Base lunar", "Sensor Phalanx", "Salto cuántico", "Tecnología de energía", "Tecnología láser", "Tecnología iónica", "Tecnología de hiperespacio", "Tecnología de plasma", "Tecnología de espionaje", "Tecnología de computación", "Astrofísica", "Red de investigación intergaláctica", "Tecnología de gravitón", "Motor de combustión", "Motor de impulso", "Propulsor hiperespacial", "Tecnología militar", "Tecnología de defensa", "Tecnología de blindaje", "Cazador ligero", "Cazador pesado", "Crucero", "Nave de batalla", "Acorazado", "Bombardero", "Destructor", "Estrella de la muerte", "Segador", "Explorador", "Nave pequeña de carga", "Nave grande de carga", "Nave colonizadora", "Reciclador", "Sonda de espionaje", "Satélite solar", "Taladrador", "Nave comercial", "Nave comercial", "Lanzamisiles", "Láser pequeño", "Láser grande", "Cañón Gauss", "Cañón iónico", "Cañón de plasma", "Cúpula pequeña de defensa", "Cúpula grande de defensa", "Misil de intercepción", "Misil interplanetario"]}, "missions": {"name": ["Atacar", "Ataque en confederación", "Transportar", "Desplegar", "Mantener posición", "Espionaje", "Colonizar", "Reciclar campo de escombros", "Destruir", "Expedición"]}, "_fetched_at": 1790127205}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,223 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "006cfcce5bf4640b98f29b241e27e27fa44f8688",
|
||||
"api_string": "sr-ar-170-006cfcce5bf4640b98f29b241e27e27fa44f8688",
|
||||
"saved_at": 1788852473,
|
||||
"coords": "1:32:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Jesoda",
|
||||
"defender_planet_name": "Arsenal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T04:26:21-03:00",
|
||||
"event_timestamp": 1788852381,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "006cfcce5bf4640b98f29b241e27e27fa44f8688",
|
||||
"event_time": "2026-09-08T04:26:21-03:00",
|
||||
"event_timestamp": 1788852381,
|
||||
"total_ship_count": 147,
|
||||
"total_defense_count": 513,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 21,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Jesoda",
|
||||
"defender_user_id": 100160,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Arsenal",
|
||||
"defender_planet_coordinates": "1:32:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "30-70",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "30-70",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 743835,
|
||||
"crystal": 270739,
|
||||
"deuterium": 255832,
|
||||
"population": 1101849,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 56
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 500
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:32:6",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 500,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 20,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 743835,
|
||||
"crystal": 270739,
|
||||
"deuterium": 255832,
|
||||
"population": 1101849,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,648 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0202119ae966903a240e18e81ec85f66152e4159",
|
||||
"api_string": "sr-ar-170-0202119ae966903a240e18e81ec85f66152e4159",
|
||||
"saved_at": 1790095102,
|
||||
"coords": "1:90:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "Lotus",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-22T13:38:02-03:00",
|
||||
"event_timestamp": 1790095082,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 600,
|
||||
"total_defense_count": 1411
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0202119ae966903a240e18e81ec85f66152e4159",
|
||||
"event_time": "2026-09-22T13:38:02-03:00",
|
||||
"event_timestamp": 1790095082,
|
||||
"total_ship_count": 600,
|
||||
"total_defense_count": 1411,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 16,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Lotus",
|
||||
"defender_planet_coordinates": "1:90:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 1500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 4295716,
|
||||
"crystal": 349844,
|
||||
"deuterium": 504468,
|
||||
"population": 2730981,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 33
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 32
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 60
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 27
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 23
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 33
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 396
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 32
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 211,
|
||||
"count": 18
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1100
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 235
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 43
|
||||
},
|
||||
{
|
||||
"defense_type": 406,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 30
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 12
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 13202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:90:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 12,
|
||||
"111": 12,
|
||||
"115": 10,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 6
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 235,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 43,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 396,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 32,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"215": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"211": {
|
||||
"amount": 18,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"213": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 60,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 27,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 23,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.002034,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 30
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 4295716,
|
||||
"crystal": 349844,
|
||||
"deuterium": 504468,
|
||||
"population": 2730981,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,398 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "02293c1d82dab1908fc39c95733a1d1dc7c7109a",
|
||||
"api_string": "sr-ar-170-02293c1d82dab1908fc39c95733a1d1dc7c7109a",
|
||||
"saved_at": 1789755141,
|
||||
"coords": "1:89:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Goku",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-18T15:11:23-03:00",
|
||||
"event_timestamp": 1789755083,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 663,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "02293c1d82dab1908fc39c95733a1d1dc7c7109a",
|
||||
"event_time": "2026-09-18T15:11:23-03:00",
|
||||
"event_timestamp": 1789755083,
|
||||
"total_ship_count": 663,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 22,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Goku",
|
||||
"defender_planet_coordinates": "1:89:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 1500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3416328,
|
||||
"crystal": 1181301,
|
||||
"deuterium": 4255897,
|
||||
"population": 449,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 13101,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 514
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 149
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:89:7",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 514,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3416328,
|
||||
"crystal": 1181301,
|
||||
"deuterium": 4255897,
|
||||
"population": 449,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "02657d924d9898c8f7ad9a32b3a43fadb9aed424",
|
||||
"api_string": "sr-ar-170-02657d924d9898c8f7ad9a32b3a43fadb9aed424",
|
||||
"saved_at": 1788804192,
|
||||
"coords": "1:90:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "Lotus",
|
||||
"attacker_name": "Serpentis",
|
||||
"event_time": "2026-09-07T04:19:14-03:00",
|
||||
"event_timestamp": 1788765554,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "02657d924d9898c8f7ad9a32b3a43fadb9aed424",
|
||||
"event_time": "2026-09-07T04:19:14-03:00",
|
||||
"event_timestamp": 1788765554,
|
||||
"total_ship_count": 25,
|
||||
"total_defense_count": 429,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 4,
|
||||
"activity": -1,
|
||||
"attacker_name": "Serpentis",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Black Mamba",
|
||||
"attacker_planet_coordinates": "1:84:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Lotus",
|
||||
"defender_planet_coordinates": "1:90:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 172795,
|
||||
"crystal": 210372,
|
||||
"deuterium": 57874,
|
||||
"population": 6499,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 314
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 65
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:90:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 314,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 65,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 19,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"202": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 19,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 172795,
|
||||
"crystal": 210372,
|
||||
"deuterium": 57874,
|
||||
"population": 6499,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,384 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "03966bb50f50f64570706ff8bd3bb9e672c67de3",
|
||||
"api_string": "sr-ar-170-03966bb50f50f64570706ff8bd3bb9e672c67de3",
|
||||
"saved_at": 1789829077,
|
||||
"coords": "1:89:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Goku",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T11:43:26-03:00",
|
||||
"event_timestamp": 1789829006,
|
||||
"activity": 54,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 185,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "03966bb50f50f64570706ff8bd3bb9e672c67de3",
|
||||
"event_time": "2026-09-19T11:43:26-03:00",
|
||||
"event_timestamp": 1789829006,
|
||||
"total_ship_count": 185,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 54,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Goku",
|
||||
"defender_planet_coordinates": "1:89:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 3000
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 94313,
|
||||
"crystal": 38600,
|
||||
"deuterium": 37727,
|
||||
"population": 449,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 13101,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 185
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:89:7",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 94313,
|
||||
"crystal": 38600,
|
||||
"deuterium": 37727,
|
||||
"population": 449,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,540 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "03a4b41136f78aae9858e058144f4c6520a8bcdc",
|
||||
"api_string": "sr-ar-170-03a4b41136f78aae9858e058144f4c6520a8bcdc",
|
||||
"saved_at": 1789553124,
|
||||
"coords": "1:73:11",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "SpaceX",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-16T07:02:13-03:00",
|
||||
"event_timestamp": 1789552933,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 443,
|
||||
"total_defense_count": 504
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "03a4b41136f78aae9858e058144f4c6520a8bcdc",
|
||||
"event_time": "2026-09-16T07:02:13-03:00",
|
||||
"event_timestamp": 1789552933,
|
||||
"total_ship_count": 443,
|
||||
"total_defense_count": 504,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "SpaceX",
|
||||
"defender_planet_coordinates": "1:73:11",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 154629,
|
||||
"crystal": 42533,
|
||||
"deuterium": 374536,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 109
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 161
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 163
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 200
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:11",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 7
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 200,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 163,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 154629,
|
||||
"crystal": 42533,
|
||||
"deuterium": 374536,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,446 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "03be7fbee47b62cbc989dd0af45edcb485935bf5",
|
||||
"api_string": "sr-ar-170-03be7fbee47b62cbc989dd0af45edcb485935bf5",
|
||||
"saved_at": 1790006344,
|
||||
"coords": "1:120:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "wNAkS",
|
||||
"defender_planet_name": "TANY ZAMPA",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T12:46:58-03:00",
|
||||
"event_timestamp": 1790005618,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 4000,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "03be7fbee47b62cbc989dd0af45edcb485935bf5",
|
||||
"event_time": "2026-09-21T12:46:58-03:00",
|
||||
"event_timestamp": 1790005618,
|
||||
"total_ship_count": 4000,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "wNAkS",
|
||||
"defender_user_id": 100290,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "TANY ZAMPA",
|
||||
"defender_planet_coordinates": "1:120:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 13420
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 470000,
|
||||
"crystal": 255000,
|
||||
"deuterium": 40000,
|
||||
"population": 536399,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 14101,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 4000
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 17
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 28
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 16
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:120:9",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 13,
|
||||
"110": 10,
|
||||
"111": 17,
|
||||
"115": 15,
|
||||
"117": 12,
|
||||
"118": 10,
|
||||
"114": 11
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"210": {
|
||||
"amount": 4000,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0,
|
||||
"fuel": 0.005240999999999999
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 470000,
|
||||
"crystal": 255000,
|
||||
"deuterium": 40000,
|
||||
"population": 536399,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,254 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0548bfb2a2a1332da02d9e22167c3ef2f16384fb",
|
||||
"api_string": "sr-ar-170-0548bfb2a2a1332da02d9e22167c3ef2f16384fb",
|
||||
"saved_at": 1788945273,
|
||||
"coords": "1:147:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Xoralundra",
|
||||
"defender_planet_name": "Nervous Energy",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T06:05:24-03:00",
|
||||
"event_timestamp": 1788944724,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0548bfb2a2a1332da02d9e22167c3ef2f16384fb",
|
||||
"event_time": "2026-09-09T06:05:24-03:00",
|
||||
"event_timestamp": 1788944724,
|
||||
"total_ship_count": 49,
|
||||
"total_defense_count": 225,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 2,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Cobra",
|
||||
"attacker_planet_coordinates": "1:134:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Xoralundra",
|
||||
"defender_user_id": 100684,
|
||||
"defender_character_class_id": 0,
|
||||
"defender_planet_name": "Nervous Energy",
|
||||
"defender_planet_coordinates": "1:147:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HUE",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "HUE",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 200664,
|
||||
"crystal": 39650,
|
||||
"deuterium": 26191,
|
||||
"population": 404004,
|
||||
"food": 174935
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 34
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 4
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 202
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 18
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:147:10",
|
||||
"characterClassId": 0,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 202,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 18,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"202": {
|
||||
"amount": 34,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 200664,
|
||||
"crystal": 39650,
|
||||
"deuterium": 26191,
|
||||
"population": 404004,
|
||||
"food": 174935
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,475 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "059ee1abac0221c32c77073178df43a3915eaa90",
|
||||
"api_string": "sr-ar-170-059ee1abac0221c32c77073178df43a3915eaa90",
|
||||
"saved_at": 1789994828,
|
||||
"coords": "1:75:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "wNAkS",
|
||||
"defender_planet_name": "JEFFREY DAHMER",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T09:42:38-03:00",
|
||||
"event_timestamp": 1789994558,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 3
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "059ee1abac0221c32c77073178df43a3915eaa90",
|
||||
"event_time": "2026-09-21T09:42:38-03:00",
|
||||
"event_timestamp": 1789994558,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 3,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "wNAkS",
|
||||
"defender_user_id": 100290,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "JEFFREY DAHMER",
|
||||
"defender_planet_coordinates": "1:75:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 2261175,
|
||||
"crystal": 470000,
|
||||
"deuterium": 256123,
|
||||
"population": 8244077,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 14101,
|
||||
"level": 36
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14102,
|
||||
"level": 37
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14103,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 17
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 28
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 16
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:75:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 13,
|
||||
"110": 10,
|
||||
"111": 17,
|
||||
"115": 15,
|
||||
"117": 12,
|
||||
"118": 10,
|
||||
"114": 11
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 2261175,
|
||||
"crystal": 470000,
|
||||
"deuterium": 256123,
|
||||
"population": 8244077,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,412 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0685158341bcf20be1fef50fc5acd5efcd58ed3c",
|
||||
"api_string": "sr-ar-170-0685158341bcf20be1fef50fc5acd5efcd58ed3c",
|
||||
"saved_at": 1789489611,
|
||||
"coords": "1:160:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Admiral Ranger",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-15T13:16:56-03:00",
|
||||
"event_timestamp": 1789489016,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0685158341bcf20be1fef50fc5acd5efcd58ed3c",
|
||||
"event_time": "2026-09-15T13:16:56-03:00",
|
||||
"event_timestamp": 1789489016,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 86,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Admiral Ranger",
|
||||
"defender_user_id": 100083,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:160:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Alone",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Alone",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 25500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1300015,
|
||||
"crystal": 719664,
|
||||
"deuterium": 299901,
|
||||
"population": 645,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 20
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 66
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:160:6",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 7,
|
||||
"111": 7,
|
||||
"115": 8,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"402": {
|
||||
"amount": 66,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 19,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1300015,
|
||||
"crystal": 719664,
|
||||
"deuterium": 299901,
|
||||
"population": 645,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,386 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "07509498c3e167d08bd1433653a2a1f8092e6453",
|
||||
"api_string": "sr-ar-170-07509498c3e167d08bd1433653a2a1f8092e6453",
|
||||
"saved_at": 1789829064,
|
||||
"coords": "1:85:5",
|
||||
"planet_type": 3,
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_planet_name": "Luna",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T11:42:58-03:00",
|
||||
"event_timestamp": 1789828978,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "07509498c3e167d08bd1433653a2a1f8092e6453",
|
||||
"event_time": "2026-09-19T11:42:58-03:00",
|
||||
"event_timestamp": 1789828978,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_user_id": 100511,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Luna",
|
||||
"defender_planet_coordinates": "1:85:5",
|
||||
"defender_planet_type": 3,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 41,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:85:5",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 9,
|
||||
"115": 10,
|
||||
"117": 7,
|
||||
"118": 6,
|
||||
"114": 6
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,560 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "07ffc9d00c413ff997ecea23abd83a2eec9bd155",
|
||||
"api_string": "sr-ar-170-07ffc9d00c413ff997ecea23abd83a2eec9bd155",
|
||||
"saved_at": 1790162545,
|
||||
"coords": "1:30:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Perfrost",
|
||||
"defender_planet_name": "Helado",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-23T08:21:49-03:00",
|
||||
"event_timestamp": 1790162509,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 15,
|
||||
"total_defense_count": 243
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "07ffc9d00c413ff997ecea23abd83a2eec9bd155",
|
||||
"event_time": "2026-09-23T08:21:49-03:00",
|
||||
"event_timestamp": 1790162509,
|
||||
"total_ship_count": 15,
|
||||
"total_defense_count": 243,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Perfrost",
|
||||
"defender_user_id": 100079,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Helado",
|
||||
"defender_planet_coordinates": "1:30:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Frio",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Frio",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.036048000000000004,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.036048000000000004,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.036048000000000004,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.036048000000000004,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.036048000000000004,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0.003,
|
||||
"shield": 0.003,
|
||||
"armor": 0.003,
|
||||
"cargo": 0.003,
|
||||
"speed": 0.009000000000000001
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1461856,
|
||||
"crystal": 35391,
|
||||
"deuterium": 924110,
|
||||
"population": 10111797,
|
||||
"food": 33752
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 13101,
|
||||
"level": 36
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 13102,
|
||||
"level": 40
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 13103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 15
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 181
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 13202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 13204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13206,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:30:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 11,
|
||||
"117": 6,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 181,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.16096,
|
||||
"crystal": 0.16096,
|
||||
"deuterium": 0.16096
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1461856,
|
||||
"crystal": 35391,
|
||||
"deuterium": 924110,
|
||||
"population": 10111797,
|
||||
"food": 33752
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,362 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "080cfa836ae9c13c2ea91d276b1b2264b5b38193",
|
||||
"api_string": "sr-ar-170-080cfa836ae9c13c2ea91d276b1b2264b5b38193",
|
||||
"saved_at": 1789830345,
|
||||
"coords": "1:90:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "J-DF5",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T12:05:06-03:00",
|
||||
"event_timestamp": 1789830306,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "080cfa836ae9c13c2ea91d276b1b2264b5b38193",
|
||||
"event_time": "2026-09-19T12:05:06-03:00",
|
||||
"event_timestamp": 1789830306,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "J-DF5",
|
||||
"defender_planet_coordinates": "1:90:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 32905,
|
||||
"crystal": 30122,
|
||||
"deuterium": 20000,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:90:9",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 11,
|
||||
"115": 9,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 32905,
|
||||
"crystal": 30122,
|
||||
"deuterium": 20000,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,475 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "08b1661ed0e3cea499d861bd4f71eb246c67aadc",
|
||||
"api_string": "sr-ar-170-08b1661ed0e3cea499d861bd4f71eb246c67aadc",
|
||||
"saved_at": 1789829057,
|
||||
"coords": "1:85:11",
|
||||
"planet_type": 1,
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_planet_name": "MD-21",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T11:42:55-03:00",
|
||||
"event_timestamp": 1789828975,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 78,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "08b1661ed0e3cea499d861bd4f71eb246c67aadc",
|
||||
"event_time": "2026-09-19T11:42:55-03:00",
|
||||
"event_timestamp": 1789828975,
|
||||
"total_ship_count": 78,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_user_id": 100511,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "MD-21",
|
||||
"defender_planet_coordinates": "1:85:11",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 183990,
|
||||
"crystal": 146723,
|
||||
"deuterium": 246639,
|
||||
"population": 920604,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 12101,
|
||||
"level": 39
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12103,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 60
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:85:11",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 9,
|
||||
"115": 10,
|
||||
"117": 7,
|
||||
"118": 6,
|
||||
"114": 6
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0,
|
||||
"fuel": 0.0027216000000000002
|
||||
},
|
||||
"209": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012156,
|
||||
"speed": 0,
|
||||
"fuel": 0.0027216000000000002
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 183990,
|
||||
"crystal": 146723,
|
||||
"deuterium": 246639,
|
||||
"population": 920604,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,391 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0919064d87f03a89e84b07f0e6475e3373377215",
|
||||
"api_string": "sr-ar-170-0919064d87f03a89e84b07f0e6475e3373377215",
|
||||
"saved_at": 1789995268,
|
||||
"coords": "1:4:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Lambela",
|
||||
"defender_planet_name": "Pluxo",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T09:42:11-03:00",
|
||||
"event_timestamp": 1789994531,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0919064d87f03a89e84b07f0e6475e3373377215",
|
||||
"event_time": "2026-09-21T09:42:11-03:00",
|
||||
"event_timestamp": 1789994531,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Lambela",
|
||||
"defender_user_id": 100023,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Pluxo",
|
||||
"defender_planet_coordinates": "1:4:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "NFT",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "NFT",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 3500,
|
||||
"debris_crystal": 2500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 470000,
|
||||
"crystal": 140000,
|
||||
"deuterium": 40000,
|
||||
"population": 482858,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:4:12",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 1,
|
||||
"110": 5,
|
||||
"111": 2,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 2,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 470000,
|
||||
"crystal": 140000,
|
||||
"deuterium": 40000,
|
||||
"population": 482858,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,485 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "09a8c8c950ef9ea792389ad1862db4d0bfca9a0d",
|
||||
"api_string": "sr-ar-170-09a8c8c950ef9ea792389ad1862db4d0bfca9a0d",
|
||||
"saved_at": 1789334627,
|
||||
"coords": "1:89:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Nexus 9",
|
||||
"defender_planet_name": "Tigre",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-13T14:37:12-03:00",
|
||||
"event_timestamp": 1789321032,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "09a8c8c950ef9ea792389ad1862db4d0bfca9a0d",
|
||||
"event_time": "2026-09-13T14:37:12-03:00",
|
||||
"event_timestamp": 1789321032,
|
||||
"total_ship_count": 101,
|
||||
"total_defense_count": 341,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Nexus 9",
|
||||
"defender_user_id": 100437,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Tigre",
|
||||
"defender_planet_coordinates": "1:89:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Gremio Estelar",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Sunless",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 471480,
|
||||
"crystal": 124353,
|
||||
"deuterium": 98791,
|
||||
"population": 1585217,
|
||||
"food": 12328
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 29
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 80
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 7
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 286
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 8
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:89:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 2,
|
||||
"111": 8,
|
||||
"115": 7,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 286,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 471480,
|
||||
"crystal": 124353,
|
||||
"deuterium": 98791,
|
||||
"population": 1585217,
|
||||
"food": 12328
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,497 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0b104ee5f6d7436518391a2f05de83bf4f9ac8e8",
|
||||
"api_string": "sr-ar-170-0b104ee5f6d7436518391a2f05de83bf4f9ac8e8",
|
||||
"saved_at": 1788944701,
|
||||
"coords": "1:144:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T06:04:23-03:00",
|
||||
"event_timestamp": 1788944663,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0b104ee5f6d7436518391a2f05de83bf4f9ac8e8",
|
||||
"event_time": "2026-09-09T06:04:23-03:00",
|
||||
"event_timestamp": 1788944663,
|
||||
"total_ship_count": 174,
|
||||
"total_defense_count": 1,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Cobra",
|
||||
"attacker_planet_coordinates": "1:134:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_user_id": 100672,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:144:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 586571,
|
||||
"crystal": 111517,
|
||||
"deuterium": 30637,
|
||||
"population": 6863,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 13
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 97
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 3
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 4
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 11
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 4
|
||||
}
|
||||
],
|
||||
"combatInformation": {
|
||||
"coords": "1:144:10",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 4,
|
||||
"110": 5,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 97,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 13,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"503": {
|
||||
"amount": 4
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 586571,
|
||||
"crystal": 111517,
|
||||
"deuterium": 30637,
|
||||
"population": 6863,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0bb4b295b030cfc15a15d0d9360ccf1ab7ca3a33",
|
||||
"api_string": "sr-ar-170-0bb4b295b030cfc15a15d0d9360ccf1ab7ca3a33",
|
||||
"saved_at": 1788804132,
|
||||
"coords": "4:130:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Captain Telesto",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T06:10:07-03:00",
|
||||
"event_timestamp": 1788772207,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0bb4b295b030cfc15a15d0d9360ccf1ab7ca3a33",
|
||||
"event_time": "2026-09-07T06:10:07-03:00",
|
||||
"event_timestamp": 1788772207,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Black Mamba",
|
||||
"attacker_planet_coordinates": "1:84:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Captain Telesto",
|
||||
"defender_user_id": 100465,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "4:130:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 102097,
|
||||
"crystal": 162971,
|
||||
"deuterium": 80564,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "4:130:9",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 102097,
|
||||
"crystal": 162971,
|
||||
"deuterium": 80564,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,647 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0bea4eb1645006e59a6f64ca477e19aad4d6591c",
|
||||
"api_string": "sr-ar-170-0bea4eb1645006e59a6f64ca477e19aad4d6591c",
|
||||
"saved_at": 1789829272,
|
||||
"coords": "1:112:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T11:44:38-03:00",
|
||||
"event_timestamp": 1789829078,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 2673,
|
||||
"total_defense_count": 2311
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0bea4eb1645006e59a6f64ca477e19aad4d6591c",
|
||||
"event_time": "2026-09-19T11:44:38-03:00",
|
||||
"event_timestamp": 1789829078,
|
||||
"total_ship_count": 2673,
|
||||
"total_defense_count": 2311,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 8,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_user_id": 100544,
|
||||
"defender_character_class_id": 0,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:112:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 5000
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 5963425,
|
||||
"crystal": 2597232,
|
||||
"deuterium": 1419543,
|
||||
"population": 18913937,
|
||||
"food": 66910
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 41
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 39
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11106,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11107,
|
||||
"level": 8
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 60
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 90
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 1808
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 200
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 233
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 132
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 97
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 13
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 3
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2201
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:112:12",
|
||||
"characterClassId": 0,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 10,
|
||||
"111": 11,
|
||||
"115": 11,
|
||||
"117": 8,
|
||||
"118": 6,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2201,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 233,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 132,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 97,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"215": {
|
||||
"amount": 13,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 60,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 90,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 1808,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004019999999999999,
|
||||
"speed": 0.020059999999999998,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 5963425,
|
||||
"crystal": 2597232,
|
||||
"deuterium": 1419543,
|
||||
"population": 18913937,
|
||||
"food": 66910
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,435 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0bff27b7ac2ab42b40ad8782c6558d8c708f22bc",
|
||||
"api_string": "sr-ar-170-0bff27b7ac2ab42b40ad8782c6558d8c708f22bc",
|
||||
"saved_at": 1789334638,
|
||||
"coords": "1:27:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Ceia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-13T14:37:14-03:00",
|
||||
"event_timestamp": 1789321034,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0bff27b7ac2ab42b40ad8782c6558d8c708f22bc",
|
||||
"event_time": "2026-09-13T14:37:14-03:00",
|
||||
"event_timestamp": 1789321034,
|
||||
"total_ship_count": 54,
|
||||
"total_defense_count": 3,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Ceia",
|
||||
"defender_planet_coordinates": "1:27:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 293947,
|
||||
"crystal": 125131,
|
||||
"deuterium": 62760,
|
||||
"population": 509240,
|
||||
"food": 12189
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 51
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 3
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:27:12",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"209": {
|
||||
"amount": 51,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 293947,
|
||||
"crystal": 125131,
|
||||
"deuterium": 62760,
|
||||
"population": 509240,
|
||||
"food": 12189
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,540 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "0cc4335e55822360686c1ce642a0fa2469c6729a",
|
||||
"api_string": "sr-ar-170-0cc4335e55822360686c1ce642a0fa2469c6729a",
|
||||
"saved_at": 1789819857,
|
||||
"coords": "1:73:11",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "SpaceX",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T09:10:38-03:00",
|
||||
"event_timestamp": 1789819838,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 646,
|
||||
"total_defense_count": 504
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "0cc4335e55822360686c1ce642a0fa2469c6729a",
|
||||
"event_time": "2026-09-19T09:10:38-03:00",
|
||||
"event_timestamp": 1789819838,
|
||||
"total_ship_count": 646,
|
||||
"total_defense_count": 504,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "SpaceX",
|
||||
"defender_planet_coordinates": "1:73:11",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 121091,
|
||||
"crystal": 189756,
|
||||
"deuterium": 223343,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 300
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 173
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 163
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 200
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:11",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 7
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 200,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 163,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 121091,
|
||||
"crystal": 189756,
|
||||
"deuterium": 223343,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "100c6b4e1cf96407eec3f4f7335a4edab9d9b453",
|
||||
"api_string": "sr-ar-170-100c6b4e1cf96407eec3f4f7335a4edab9d9b453",
|
||||
"saved_at": 1789497239,
|
||||
"coords": "1:68:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "J-DF2",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-15T15:32:59-03:00",
|
||||
"event_timestamp": 1789497179,
|
||||
"activity": 26,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 9,
|
||||
"total_defense_count": 59
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "100c6b4e1cf96407eec3f4f7335a4edab9d9b453",
|
||||
"event_time": "2026-09-15T15:32:59-03:00",
|
||||
"event_timestamp": 1789497179,
|
||||
"total_ship_count": 9,
|
||||
"total_defense_count": 59,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 26,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "J-DF2",
|
||||
"defender_planet_coordinates": "1:68:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 153,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 9
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 47
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 11
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:68:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 11,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 47,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 11,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 9,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 153,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,450 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1151bc98ff26daa26c68e1898ff63b5460c8afce",
|
||||
"api_string": "sr-ar-170-1151bc98ff26daa26c68e1898ff63b5460c8afce",
|
||||
"saved_at": 1789995247,
|
||||
"coords": "1:175:8",
|
||||
"planet_type": 3,
|
||||
"defender_name": "wNAkS",
|
||||
"defender_planet_name": "WANNA TRY ME",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T09:43:27-03:00",
|
||||
"event_timestamp": 1789994607,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 171
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1151bc98ff26daa26c68e1898ff63b5460c8afce",
|
||||
"event_time": "2026-09-21T09:43:27-03:00",
|
||||
"event_timestamp": 1789994607,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 171,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "wNAkS",
|
||||
"defender_user_id": 100290,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "WANNA TRY ME",
|
||||
"defender_planet_coordinates": "1:175:8",
|
||||
"defender_planet_type": 3,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.06576,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 41,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 42,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 17
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 28
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 16
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:175:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 13,
|
||||
"110": 10,
|
||||
"111": 17,
|
||||
"115": 15,
|
||||
"117": 12,
|
||||
"118": 10,
|
||||
"114": 11
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,595 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "128638b65804f7975f3b29ebe49883fc76c2172f",
|
||||
"api_string": "sr-ar-170-128638b65804f7975f3b29ebe49883fc76c2172f",
|
||||
"saved_at": 1789492550,
|
||||
"coords": "1:112:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-15T13:55:47-03:00",
|
||||
"event_timestamp": 1789491347,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "128638b65804f7975f3b29ebe49883fc76c2172f",
|
||||
"event_time": "2026-09-15T13:55:47-03:00",
|
||||
"event_timestamp": 1789491347,
|
||||
"total_ship_count": 1088,
|
||||
"total_defense_count": 2311,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 10,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_user_id": 100544,
|
||||
"defender_character_class_id": 0,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:112:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 5000
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 5603161,
|
||||
"crystal": 212678,
|
||||
"deuterium": 1557930,
|
||||
"population": 1982075,
|
||||
"food": 18347
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 31
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 720
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 131
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 56
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 91
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2201
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:112:12",
|
||||
"characterClassId": 0,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 10,
|
||||
"111": 11,
|
||||
"115": 10,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2201,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 56,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 91,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"215": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 720,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.0050149999999999995,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 5603161,
|
||||
"crystal": 212678,
|
||||
"deuterium": 1557930,
|
||||
"population": 1982075,
|
||||
"food": 18347
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,411 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "150bada4a666b897609bb2aad9489ed4516e39ac",
|
||||
"api_string": "sr-ar-170-150bada4a666b897609bb2aad9489ed4516e39ac",
|
||||
"saved_at": 1788853802,
|
||||
"coords": "1:85:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T04:48:28-03:00",
|
||||
"event_timestamp": 1788853708,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "150bada4a666b897609bb2aad9489ed4516e39ac",
|
||||
"event_time": "2026-09-08T04:48:28-03:00",
|
||||
"event_timestamp": 1788853708,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 81,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_user_id": 100148,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:85:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 448563,
|
||||
"crystal": 135693,
|
||||
"deuterium": 138084,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:85:8",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 9,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 4,
|
||||
"118": 3,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 448563,
|
||||
"crystal": 135693,
|
||||
"deuterium": 138084,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,595 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "15710907b3e05aed99e7f72426f3139b48d4a48d",
|
||||
"api_string": "sr-ar-170-15710907b3e05aed99e7f72426f3139b48d4a48d",
|
||||
"saved_at": 1790077907,
|
||||
"coords": "1:16:4",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Perfrost",
|
||||
"defender_planet_name": "Hielo",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-22T08:37:11-03:00",
|
||||
"event_timestamp": 1790077031,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 31,
|
||||
"total_defense_count": 38
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "15710907b3e05aed99e7f72426f3139b48d4a48d",
|
||||
"event_time": "2026-09-22T08:37:11-03:00",
|
||||
"event_timestamp": 1790077031,
|
||||
"total_ship_count": 31,
|
||||
"total_defense_count": 38,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Perfrost",
|
||||
"defender_user_id": 100079,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Hielo",
|
||||
"defender_planet_coordinates": "1:16:4",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Frio",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Frio",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0.003,
|
||||
"shield": 0.003,
|
||||
"armor": 0.003,
|
||||
"cargo": 0.003,
|
||||
"speed": 0.009000000000000001
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 879503,
|
||||
"crystal": 1255486,
|
||||
"deuterium": 1109960,
|
||||
"population": 19816868,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 41
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 42
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 11
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 13204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13206,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:16:4",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 11,
|
||||
"117": 6,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 11,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"209": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612,
|
||||
"fuel": 0.0015036
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.16096,
|
||||
"crystal": 0.16096,
|
||||
"deuterium": 0.16096
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 879503,
|
||||
"crystal": 1255486,
|
||||
"deuterium": 1109960,
|
||||
"population": 19816868,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,488 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "15a33e4e168f07a3aef6c2f7bcb939212734d0ef",
|
||||
"api_string": "sr-ar-170-15a33e4e168f07a3aef6c2f7bcb939212734d0ef",
|
||||
"saved_at": 1789912793,
|
||||
"coords": "1:67:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "HarryTheBest",
|
||||
"defender_planet_name": "Dislike",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-20T10:58:48-03:00",
|
||||
"event_timestamp": 1789912728,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 218,
|
||||
"total_defense_count": 2
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "15a33e4e168f07a3aef6c2f7bcb939212734d0ef",
|
||||
"event_time": "2026-09-20T10:58:48-03:00",
|
||||
"event_timestamp": 1789912728,
|
||||
"total_ship_count": 218,
|
||||
"total_defense_count": 2,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "HarryTheBest",
|
||||
"defender_user_id": 100794,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Dislike",
|
||||
"defender_planet_coordinates": "1:67:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "MEH",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "MEH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 8070059,
|
||||
"crystal": 10080404,
|
||||
"deuterium": 1225453,
|
||||
"population": 1980790,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 14101,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14102,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 133
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 16
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 41
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:67:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 5,
|
||||
"111": 11,
|
||||
"115": 11,
|
||||
"117": 8,
|
||||
"118": 8,
|
||||
"114": 6
|
||||
},
|
||||
"defenses": {
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 133,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 16,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"213": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 41,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00508,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 8070059,
|
||||
"crystal": 10080404,
|
||||
"deuterium": 1225453,
|
||||
"population": 1980790,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,431 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "16222648353b96ea8991313baf255539120fde46",
|
||||
"api_string": "sr-ar-170-16222648353b96ea8991313baf255539120fde46",
|
||||
"saved_at": 1789386641,
|
||||
"coords": "1:160:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Admiral Ranger",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T08:50:02-03:00",
|
||||
"event_timestamp": 1789386602,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "16222648353b96ea8991313baf255539120fde46",
|
||||
"event_time": "2026-09-14T08:50:02-03:00",
|
||||
"event_timestamp": 1789386602,
|
||||
"total_ship_count": 81,
|
||||
"total_defense_count": 135,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 7,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Admiral Ranger",
|
||||
"defender_user_id": 100083,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:160:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Alone",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Alone",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1590000,
|
||||
"crystal": 865000,
|
||||
"deuterium": 470000,
|
||||
"population": 645,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 20
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 60
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 107
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 27
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:160:6",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 7,
|
||||
"111": 7,
|
||||
"115": 8,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"402": {
|
||||
"amount": 107,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 27,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1590000,
|
||||
"crystal": 865000,
|
||||
"deuterium": 470000,
|
||||
"population": 645,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,488 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "17effb87af73fc6ade85d8347a8a72c3e76a33c9",
|
||||
"api_string": "sr-ar-170-17effb87af73fc6ade85d8347a8a72c3e76a33c9",
|
||||
"saved_at": 1789536973,
|
||||
"coords": "1:56:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "TIRANO SUPREMO",
|
||||
"defender_planet_name": "INFERNAL2026",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-16T02:33:33-03:00",
|
||||
"event_timestamp": 1789536813,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 170,
|
||||
"total_defense_count": 13
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "17effb87af73fc6ade85d8347a8a72c3e76a33c9",
|
||||
"event_time": "2026-09-16T02:33:33-03:00",
|
||||
"event_timestamp": 1789536813,
|
||||
"total_ship_count": 170,
|
||||
"total_defense_count": 13,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "TIRANO SUPREMO",
|
||||
"defender_user_id": 100279,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "INFERNAL2026",
|
||||
"defender_planet_coordinates": "1:56:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 375
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 111545,
|
||||
"crystal": 112815,
|
||||
"deuterium": 73430,
|
||||
"population": 1681,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 33,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 50
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:56:6",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 4,
|
||||
"110": 2,
|
||||
"111": 3,
|
||||
"115": 4,
|
||||
"117": 6,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 20,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 111545,
|
||||
"crystal": 112815,
|
||||
"deuterium": 73430,
|
||||
"population": 1681,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,186 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "196fa77e745ec86c98a9d9c9c50d53d63ad00204",
|
||||
"api_string": "sr-ar-170-196fa77e745ec86c98a9d9c9c50d53d63ad00204",
|
||||
"saved_at": 1788844284,
|
||||
"coords": "1:94:4",
|
||||
"planet_type": 1,
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_planet_name": "Arrakis",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T02:10:28-03:00",
|
||||
"event_timestamp": 1788844228,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "196fa77e745ec86c98a9d9c9c50d53d63ad00204",
|
||||
"event_time": "2026-09-08T02:10:28-03:00",
|
||||
"event_timestamp": 1788844228,
|
||||
"total_ship_count": 24,
|
||||
"total_defense_count": 162,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 11,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Viper",
|
||||
"attacker_planet_coordinates": "1:134:8",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_user_id": 100544,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Arrakis",
|
||||
"defender_planet_coordinates": "1:94:4",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 388227,
|
||||
"crystal": 241056,
|
||||
"deuterium": 43546,
|
||||
"population": 12513,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 11
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 147
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 13
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:94:4",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 147,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 13,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 388227,
|
||||
"crystal": 241056,
|
||||
"deuterium": 43546,
|
||||
"population": 12513,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,598 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1a8747f3727e1152d130ea2101ef53052d34b268",
|
||||
"api_string": "sr-ar-170-1a8747f3727e1152d130ea2101ef53052d34b268",
|
||||
"saved_at": 1789980002,
|
||||
"coords": "1:32:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Jesoda",
|
||||
"defender_planet_name": "Arsenal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T05:39:33-03:00",
|
||||
"event_timestamp": 1789979973,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 1738,
|
||||
"total_defense_count": 2015
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1a8747f3727e1152d130ea2101ef53052d34b268",
|
||||
"event_time": "2026-09-21T05:39:33-03:00",
|
||||
"event_timestamp": 1789979973,
|
||||
"total_ship_count": 1738,
|
||||
"total_defense_count": 2015,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Jesoda",
|
||||
"defender_user_id": 100160,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Arsenal",
|
||||
"defender_planet_coordinates": "1:32:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "30-70",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "30-70",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3843754,
|
||||
"crystal": 1157331,
|
||||
"deuterium": 949002,
|
||||
"population": 3764329,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 33,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 33
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11106,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 747
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 120
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 60
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 447
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 283
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2000
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:32:6",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 8,
|
||||
"111": 13,
|
||||
"115": 12,
|
||||
"117": 6,
|
||||
"118": 3,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2000,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 447,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 283,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 20,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 747,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.004052,
|
||||
"speed": 0.005064999999999999,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3843754,
|
||||
"crystal": 1157331,
|
||||
"deuterium": 949002,
|
||||
"population": 3764329,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,242 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1dafe6f43fc2289253d464ffa9f9a7340a099218",
|
||||
"api_string": "sr-ar-170-1dafe6f43fc2289253d464ffa9f9a7340a099218",
|
||||
"saved_at": 1789754010,
|
||||
"coords": "1:44:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Gum",
|
||||
"defender_planet_name": "Infernakulus I",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-18T14:53:04-03:00",
|
||||
"event_timestamp": 1789753984,
|
||||
"activity": 15,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 16954
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1dafe6f43fc2289253d464ffa9f9a7340a099218",
|
||||
"event_time": "2026-09-18T14:53:04-03:00",
|
||||
"event_timestamp": 1789753984,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 16954,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Gum",
|
||||
"defender_user_id": 100220,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Infernakulus I",
|
||||
"defender_planet_coordinates": "1:44:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 18005000,
|
||||
"crystal": 4523716,
|
||||
"deuterium": 1601313,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 33,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 8085
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 8569
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 241
|
||||
},
|
||||
{
|
||||
"defense_type": 406,
|
||||
"count": 57
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 100
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:44:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 8085,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 8569,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 241,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"amount": 57,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 100
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 18005000,
|
||||
"crystal": 4523716,
|
||||
"deuterium": 1601313,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,485 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1dbdffb822703b6555c6b3768e8a865ddb9f0f1e",
|
||||
"api_string": "sr-ar-170-1dbdffb822703b6555c6b3768e8a865ddb9f0f1e",
|
||||
"saved_at": 1789377541,
|
||||
"coords": "1:89:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Nexus 9",
|
||||
"defender_planet_name": "Tigre",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T06:17:35-03:00",
|
||||
"event_timestamp": 1789377455,
|
||||
"activity": 17,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1dbdffb822703b6555c6b3768e8a865ddb9f0f1e",
|
||||
"event_time": "2026-09-14T06:17:35-03:00",
|
||||
"event_timestamp": 1789377455,
|
||||
"total_ship_count": 101,
|
||||
"total_defense_count": 341,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 17,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Nexus 9",
|
||||
"defender_user_id": 100437,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Tigre",
|
||||
"defender_planet_coordinates": "1:89:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Gremio Estelar",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Sunless",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 857625,
|
||||
"crystal": 214244,
|
||||
"deuterium": 62016,
|
||||
"population": 1585217,
|
||||
"food": 20525
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 29
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 80
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 7
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 286
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 8
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:89:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 2,
|
||||
"111": 8,
|
||||
"115": 7,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 286,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.01,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 857625,
|
||||
"crystal": 214244,
|
||||
"deuterium": 62016,
|
||||
"population": 1585217,
|
||||
"food": 20525
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,508 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1e39dd7878049245d654630aebf7e2d008afb238",
|
||||
"api_string": "sr-ar-170-1e39dd7878049245d654630aebf7e2d008afb238",
|
||||
"saved_at": 1788869461,
|
||||
"coords": "1:24:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T09:06:51-03:00",
|
||||
"event_timestamp": 1788869211,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1e39dd7878049245d654630aebf7e2d008afb238",
|
||||
"event_time": "2026-09-08T09:06:51-03:00",
|
||||
"event_timestamp": 1788869211,
|
||||
"total_ship_count": 1139,
|
||||
"total_defense_count": 1277,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_user_id": 100122,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:24:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 198501,
|
||||
"crystal": 83447,
|
||||
"deuterium": 251415,
|
||||
"population": 404004,
|
||||
"food": 7156
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 70
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 72
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 987
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 10
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1131
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 131
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:24:10",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 7,
|
||||
"117": 4,
|
||||
"118": 4,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1131,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 131,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 70,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 72,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 987,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 198501,
|
||||
"crystal": 83447,
|
||||
"deuterium": 251415,
|
||||
"population": 404004,
|
||||
"food": 7156
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,401 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "1ffe29159f19b670d461c413df79754f8ef3d6a8",
|
||||
"api_string": "sr-ar-170-1ffe29159f19b670d461c413df79754f8ef3d6a8",
|
||||
"saved_at": 1788889163,
|
||||
"coords": "1:4:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Lambela",
|
||||
"defender_planet_name": "Pluxo",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T14:38:54-03:00",
|
||||
"event_timestamp": 1788889134,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "1ffe29159f19b670d461c413df79754f8ef3d6a8",
|
||||
"event_time": "2026-09-08T14:38:54-03:00",
|
||||
"event_timestamp": 1788889134,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 1,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Black Mamba",
|
||||
"attacker_planet_coordinates": "1:84:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Lambela",
|
||||
"defender_user_id": 100023,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Pluxo",
|
||||
"defender_planet_coordinates": "1:4:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "NFT",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "NFT",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 204176,
|
||||
"crystal": 133897,
|
||||
"deuterium": 29101,
|
||||
"population": 482858,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:4:12",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 1,
|
||||
"110": 5,
|
||||
"111": 2,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 2,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 204176,
|
||||
"crystal": 133897,
|
||||
"deuterium": 29101,
|
||||
"population": 482858,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,545 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "202cd2cdc3117f51158a8abc807d4510edff0ce5",
|
||||
"api_string": "sr-ar-170-202cd2cdc3117f51158a8abc807d4510edff0ce5",
|
||||
"saved_at": 1788862360,
|
||||
"coords": "1:47:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Helga Rage",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T07:11:55-03:00",
|
||||
"event_timestamp": 1788862315,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "202cd2cdc3117f51158a8abc807d4510edff0ce5",
|
||||
"event_time": "2026-09-08T07:11:55-03:00",
|
||||
"event_timestamp": 1788862315,
|
||||
"total_ship_count": 10,
|
||||
"total_defense_count": 40,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Helga Rage",
|
||||
"defender_user_id": 100236,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:47:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 184175,
|
||||
"crystal": 435776,
|
||||
"deuterium": 343039,
|
||||
"population": 3089235,
|
||||
"food": 40531
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 32
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 28
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:47:10",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 6,
|
||||
"110": 7,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 5,
|
||||
"118": 5,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 28,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.04,
|
||||
"crystal": 0.04,
|
||||
"deuterium": 0.04
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 184175,
|
||||
"crystal": 435776,
|
||||
"deuterium": 343039,
|
||||
"population": 3089235,
|
||||
"food": 40531
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,496 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "21b3a93fe7a130cc79ec22c636594b314c20a61d",
|
||||
"api_string": "sr-ar-170-21b3a93fe7a130cc79ec22c636594b314c20a61d",
|
||||
"saved_at": 1789061759,
|
||||
"coords": "1:24:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-10T14:34:37-03:00",
|
||||
"event_timestamp": 1789061677,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "21b3a93fe7a130cc79ec22c636594b314c20a61d",
|
||||
"event_time": "2026-09-10T14:34:37-03:00",
|
||||
"event_timestamp": 1789061677,
|
||||
"total_ship_count": 961,
|
||||
"total_defense_count": 1310,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_user_id": 100122,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:24:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 123086,
|
||||
"crystal": 67480,
|
||||
"deuterium": 73604,
|
||||
"population": 252908,
|
||||
"food": 4978
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 22
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 955
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1190
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 96
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 17
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:24:9",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 7,
|
||||
"117": 4,
|
||||
"118": 4,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1190,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 96,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 17,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"202": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 955,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 123086,
|
||||
"crystal": 67480,
|
||||
"deuterium": 73604,
|
||||
"population": 252908,
|
||||
"food": 4978
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,426 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "22139077a94f09481b4fa53f58960a54f3b36442",
|
||||
"api_string": "sr-ar-170-22139077a94f09481b4fa53f58960a54f3b36442",
|
||||
"saved_at": 1789321148,
|
||||
"coords": "1:87:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-13T14:36:47-03:00",
|
||||
"event_timestamp": 1789321007,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "22139077a94f09481b4fa53f58960a54f3b36442",
|
||||
"event_time": "2026-09-13T14:36:47-03:00",
|
||||
"event_timestamp": 1789321007,
|
||||
"total_ship_count": 4378,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:87:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 10705036,
|
||||
"crystal": 2044525,
|
||||
"deuterium": 3006688,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 230
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 4000
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 97
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 50
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:87:9",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 230,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 4000,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 10705036,
|
||||
"crystal": 2044525,
|
||||
"deuterium": 3006688,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,577 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "222818090e7015019b78f7deba0ccb13e08d92b6",
|
||||
"api_string": "sr-ar-170-222818090e7015019b78f7deba0ccb13e08d92b6",
|
||||
"saved_at": 1789377442,
|
||||
"coords": "1:73:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "Starlink",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T06:17:01-03:00",
|
||||
"event_timestamp": 1789377421,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "222818090e7015019b78f7deba0ccb13e08d92b6",
|
||||
"event_time": "2026-09-14T06:17:01-03:00",
|
||||
"event_timestamp": 1789377421,
|
||||
"total_ship_count": 143,
|
||||
"total_defense_count": 414,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Starlink",
|
||||
"defender_planet_coordinates": "1:73:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 986887,
|
||||
"crystal": 360408,
|
||||
"deuterium": 198317,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 61
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 37
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 6
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:10",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 986887,
|
||||
"crystal": 360408,
|
||||
"deuterium": 198317,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,492 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2246206978fa1477f88b43ca3cde997b1442486a",
|
||||
"api_string": "sr-ar-170-2246206978fa1477f88b43ca3cde997b1442486a",
|
||||
"saved_at": 1788844620,
|
||||
"coords": "1:105:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_planet_name": "MD-1",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T02:15:32-03:00",
|
||||
"event_timestamp": 1788844532,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2246206978fa1477f88b43ca3cde997b1442486a",
|
||||
"event_time": "2026-09-08T02:15:32-03:00",
|
||||
"event_timestamp": 1788844532,
|
||||
"total_ship_count": 352,
|
||||
"total_defense_count": 1,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Viper",
|
||||
"attacker_planet_coordinates": "1:134:8",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "ElPacificador",
|
||||
"defender_user_id": 100511,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "MD-1",
|
||||
"defender_planet_coordinates": "1:105:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 651286,
|
||||
"crystal": 309836,
|
||||
"deuterium": 114819,
|
||||
"population": 252908,
|
||||
"food": 4978
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 23
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 35
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 272
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:105:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 7,
|
||||
"111": 7,
|
||||
"115": 8,
|
||||
"117": 5,
|
||||
"118": 4,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 272,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 23,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 651286,
|
||||
"crystal": 309836,
|
||||
"deuterium": 114819,
|
||||
"population": 252908,
|
||||
"food": 4978
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,465 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "228744996c2d6e3ce253da500aa91bda885d92ab",
|
||||
"api_string": "sr-ar-170-228744996c2d6e3ce253da500aa91bda885d92ab",
|
||||
"saved_at": 1789408517,
|
||||
"coords": "1:67:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "HarryTheBest",
|
||||
"defender_planet_name": "Dislike",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T14:39:22-03:00",
|
||||
"event_timestamp": 1789407562,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "228744996c2d6e3ce253da500aa91bda885d92ab",
|
||||
"event_time": "2026-09-14T14:39:22-03:00",
|
||||
"event_timestamp": 1789407562,
|
||||
"total_ship_count": 50,
|
||||
"total_defense_count": 2,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "HarryTheBest",
|
||||
"defender_user_id": 100794,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Dislike",
|
||||
"defender_planet_coordinates": "1:67:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "MEH",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "MEH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1363135,
|
||||
"crystal": 762592,
|
||||
"deuterium": 14342,
|
||||
"population": 100,
|
||||
"food": 6418
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 18
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:67:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 1,
|
||||
"110": 2,
|
||||
"111": 2,
|
||||
"115": 10,
|
||||
"117": 3,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 18,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1363135,
|
||||
"crystal": 762592,
|
||||
"deuterium": 14342,
|
||||
"population": 100,
|
||||
"food": 6418
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,478 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "229f2cf1a68d1692100233aaa11fb7a25c16d129",
|
||||
"api_string": "sr-ar-170-229f2cf1a68d1692100233aaa11fb7a25c16d129",
|
||||
"saved_at": 1789377567,
|
||||
"coords": "1:94:4",
|
||||
"planet_type": 1,
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_planet_name": "Arrakis",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T06:17:56-03:00",
|
||||
"event_timestamp": 1789377476,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "229f2cf1a68d1692100233aaa11fb7a25c16d129",
|
||||
"event_time": "2026-09-14T06:17:56-03:00",
|
||||
"event_timestamp": 1789377476,
|
||||
"total_ship_count": 71,
|
||||
"total_defense_count": 485,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 1,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "SynthiagoDuran",
|
||||
"defender_user_id": 100544,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Arrakis",
|
||||
"defender_planet_coordinates": "1:94:4",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 699807,
|
||||
"crystal": 846202,
|
||||
"deuterium": 558325,
|
||||
"population": 34649,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 45
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 470
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 13
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:94:4",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 10,
|
||||
"111": 11,
|
||||
"115": 10,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 470,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 13,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 20,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 699807,
|
||||
"crystal": 846202,
|
||||
"deuterium": 558325,
|
||||
"population": 34649,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,315 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2629a654d4e14fd2d431048dbee19b34e7cebc3a",
|
||||
"api_string": "sr-ar-170-2629a654d4e14fd2d431048dbee19b34e7cebc3a",
|
||||
"saved_at": 1788883654,
|
||||
"coords": "1:35:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Emir Islav Musil",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T13:06:53-03:00",
|
||||
"event_timestamp": 1788883613,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2629a654d4e14fd2d431048dbee19b34e7cebc3a",
|
||||
"event_time": "2026-09-08T13:06:53-03:00",
|
||||
"event_timestamp": 1788883613,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Emir Islav Musil",
|
||||
"defender_user_id": 100177,
|
||||
"defender_character_class_id": 0,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:35:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 344801,
|
||||
"crystal": 45657,
|
||||
"deuterium": 6610,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:35:10",
|
||||
"characterClassId": 0,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 344801,
|
||||
"crystal": 45657,
|
||||
"deuterium": 6610,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "26c58b63f89eb3fd417310d573b5a1aba4fd2e45",
|
||||
"api_string": "sr-ar-170-26c58b63f89eb3fd417310d573b5a1aba4fd2e45",
|
||||
"saved_at": 1789995307,
|
||||
"coords": "1:26:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pirotin",
|
||||
"defender_planet_name": "Zordi Prime",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T08:32:58-03:00",
|
||||
"event_timestamp": 1789990378,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 51,
|
||||
"total_defense_count": 108
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "26c58b63f89eb3fd417310d573b5a1aba4fd2e45",
|
||||
"event_time": "2026-09-21T08:32:58-03:00",
|
||||
"event_timestamp": 1789990378,
|
||||
"total_ship_count": 51,
|
||||
"total_defense_count": 108,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 13,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pirotin",
|
||||
"defender_user_id": 100131,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Zordi Prime",
|
||||
"defender_planet_coordinates": "1:26:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Impact Eclipse",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "IEclipse",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 3000
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 13831,
|
||||
"population": 534460,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 51
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 106
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 17
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:26:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 106,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"503": {
|
||||
"amount": 17
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 13831,
|
||||
"population": 534460,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,545 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "26f410891c6bfdf96a73149147e608c13db52225",
|
||||
"api_string": "sr-ar-170-26f410891c6bfdf96a73149147e608c13db52225",
|
||||
"saved_at": 1788884294,
|
||||
"coords": "1:47:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Helga Rage",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T13:16:07-03:00",
|
||||
"event_timestamp": 1788884167,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "26f410891c6bfdf96a73149147e608c13db52225",
|
||||
"event_time": "2026-09-08T13:16:07-03:00",
|
||||
"event_timestamp": 1788884167,
|
||||
"total_ship_count": 10,
|
||||
"total_defense_count": 40,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Helga Rage",
|
||||
"defender_user_id": 100236,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:47:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 103433,
|
||||
"crystal": 450995,
|
||||
"deuterium": 369885,
|
||||
"population": 3703802,
|
||||
"food": 40531
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 33
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 28
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:47:10",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 6,
|
||||
"110": 7,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 5,
|
||||
"118": 5,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 28,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.04,
|
||||
"crystal": 0.04,
|
||||
"deuterium": 0.04
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 103433,
|
||||
"crystal": 450995,
|
||||
"deuterium": 369885,
|
||||
"population": 3703802,
|
||||
"food": 40531
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,745 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2711ff75522b4e5e6b85d6a31dd9b1d2fbfc8d03",
|
||||
"api_string": "sr-ar-170-2711ff75522b4e5e6b85d6a31dd9b1d2fbfc8d03",
|
||||
"saved_at": 1790105086,
|
||||
"coords": "1:19:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Perfrost",
|
||||
"defender_planet_name": "Frio",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-22T16:23:16-03:00",
|
||||
"event_timestamp": 1790104996,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 616,
|
||||
"total_defense_count": 229
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2711ff75522b4e5e6b85d6a31dd9b1d2fbfc8d03",
|
||||
"event_time": "2026-09-22T16:23:16-03:00",
|
||||
"event_timestamp": 1790104996,
|
||||
"total_ship_count": 616,
|
||||
"total_defense_count": 229,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Perfrost",
|
||||
"defender_user_id": 100079,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Frio",
|
||||
"defender_planet_coordinates": "1:19:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Frio",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Frio",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0.003,
|
||||
"shield": 0.003,
|
||||
"armor": 0.003,
|
||||
"cargo": 0.003,
|
||||
"speed": 0.009000000000000001
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3053954,
|
||||
"crystal": 503339,
|
||||
"deuterium": 389271,
|
||||
"population": 18724384,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 12101,
|
||||
"level": 41
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12102,
|
||||
"level": 42
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12103,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12104,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12106,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12107,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12108,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12110,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 86
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 70
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 44
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 120
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 56
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 74
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 37
|
||||
},
|
||||
{
|
||||
"ship_type": 211,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 60
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 200
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 13204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 13206,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:19:7",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 11,
|
||||
"117": 6,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 200,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 19,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 120,
|
||||
"weapon": 0.003,
|
||||
"shield": 0.003,
|
||||
"armor": 0.003,
|
||||
"cargo": 0.003,
|
||||
"speed": 0.009000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"205": {
|
||||
"amount": 56,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"206": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"207": {
|
||||
"amount": 74,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"215": {
|
||||
"amount": 37,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"211": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"213": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"218": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"219": {
|
||||
"amount": 60,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.006000000000000001,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"202": {
|
||||
"amount": 86,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"203": {
|
||||
"amount": 70,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612,
|
||||
"fuel": 0.0015036
|
||||
},
|
||||
"210": {
|
||||
"amount": 44,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.03204800000000001,
|
||||
"speed": 0.02612,
|
||||
"fuel": 0.0015036
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.16096,
|
||||
"crystal": 0.16096,
|
||||
"deuterium": 0.16096
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3053954,
|
||||
"crystal": 503339,
|
||||
"deuterium": 389271,
|
||||
"population": 18724384,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,389 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2769b9944248409d90892d26420e11ebca04687b",
|
||||
"api_string": "sr-ar-170-2769b9944248409d90892d26420e11ebca04687b",
|
||||
"saved_at": 1789829071,
|
||||
"coords": "1:87:9",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T11:43:09-03:00",
|
||||
"event_timestamp": 1789828989,
|
||||
"activity": 54,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 529,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2769b9944248409d90892d26420e11ebca04687b",
|
||||
"event_time": "2026-09-19T11:43:09-03:00",
|
||||
"event_timestamp": 1789828989,
|
||||
"total_ship_count": 529,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 54,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:87:9",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1362452,
|
||||
"crystal": 222929,
|
||||
"deuterium": 4421258,
|
||||
"population": 90,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 514
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 15
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:87:9",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 514,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1362452,
|
||||
"crystal": 222929,
|
||||
"deuterium": 4421258,
|
||||
"population": 90,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,586 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2798a390eada985f0b8c0943955c3a89f92849e3",
|
||||
"api_string": "sr-ar-170-2798a390eada985f0b8c0943955c3a89f92849e3",
|
||||
"saved_at": 1789647076,
|
||||
"coords": "1:73:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "Starlink",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-17T09:08:34-03:00",
|
||||
"event_timestamp": 1789646914,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 206,
|
||||
"total_defense_count": 684
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2798a390eada985f0b8c0943955c3a89f92849e3",
|
||||
"event_time": "2026-09-17T09:08:34-03:00",
|
||||
"event_timestamp": 1789646914,
|
||||
"total_ship_count": 206,
|
||||
"total_defense_count": 684,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Starlink",
|
||||
"defender_planet_coordinates": "1:73:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 283946,
|
||||
"crystal": 202275,
|
||||
"deuterium": 244652,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 61
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 37
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 69
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 370
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 10
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:10",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 7
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 370,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 69,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
},
|
||||
"503": {
|
||||
"amount": 10
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 283946,
|
||||
"crystal": 202275,
|
||||
"deuterium": 244652,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,394 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "27d1c1a65bedf1ff24768fe5ebed0f509054c749",
|
||||
"api_string": "sr-ar-170-27d1c1a65bedf1ff24768fe5ebed0f509054c749",
|
||||
"saved_at": 1789043863,
|
||||
"coords": "1:35:5",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-10T09:35:59-03:00",
|
||||
"event_timestamp": 1789043759,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "27d1c1a65bedf1ff24768fe5ebed0f509054c749",
|
||||
"event_time": "2026-09-10T09:35:59-03:00",
|
||||
"event_timestamp": 1789043759,
|
||||
"total_ship_count": 15,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_user_id": 100174,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:35:5",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 384575,
|
||||
"crystal": 211196,
|
||||
"deuterium": 29843,
|
||||
"population": 49,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 15
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:35:5",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 5,
|
||||
"111": 9,
|
||||
"115": 6,
|
||||
"117": 6,
|
||||
"118": 4,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"207": {
|
||||
"amount": 15,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 384575,
|
||||
"crystal": 211196,
|
||||
"deuterium": 29843,
|
||||
"population": 49,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,431 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "284387e0b522007f976cd7601bdd1827ee5cc98e",
|
||||
"api_string": "sr-ar-170-284387e0b522007f976cd7601bdd1827ee5cc98e",
|
||||
"saved_at": 1789247233,
|
||||
"coords": "1:62:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Admiral Trojan",
|
||||
"defender_planet_name": "Coolonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-12T17:58:16-03:00",
|
||||
"event_timestamp": 1789246696,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "284387e0b522007f976cd7601bdd1827ee5cc98e",
|
||||
"event_time": "2026-09-12T17:58:16-03:00",
|
||||
"event_timestamp": 1789246696,
|
||||
"total_ship_count": 17,
|
||||
"total_defense_count": 228,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 2,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Admiral Trojan",
|
||||
"defender_user_id": 100192,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Coolonia",
|
||||
"defender_planet_coordinates": "1:62:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1569332,
|
||||
"crystal": 857462,
|
||||
"deuterium": 411798,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 15
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 226
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 12
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:62:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 9,
|
||||
"111": 12,
|
||||
"115": 11,
|
||||
"117": 7,
|
||||
"118": 5,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"402": {
|
||||
"amount": 226,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 15,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1569332,
|
||||
"crystal": 857462,
|
||||
"deuterium": 411798,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,470 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "28e7c26398b5d47f48477a62135f112a8ca20140",
|
||||
"api_string": "sr-ar-170-28e7c26398b5d47f48477a62135f112a8ca20140",
|
||||
"saved_at": 1789247219,
|
||||
"coords": "1:59:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "longa",
|
||||
"defender_planet_name": "long 2",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-12T17:58:00-03:00",
|
||||
"event_timestamp": 1789246680,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "28e7c26398b5d47f48477a62135f112a8ca20140",
|
||||
"event_time": "2026-09-12T17:58:00-03:00",
|
||||
"event_timestamp": 1789246680,
|
||||
"total_ship_count": 72,
|
||||
"total_defense_count": 52,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 3,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "longa",
|
||||
"defender_user_id": 100285,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "long 2",
|
||||
"defender_planet_coordinates": "1:59:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOGROS",
|
||||
"defender_alliance_class_id": 2,
|
||||
"defender_alliance_tag": "LOGROS",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 671266,
|
||||
"crystal": 467021,
|
||||
"deuterium": 69835,
|
||||
"population": 26789,
|
||||
"food": 10221
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 26
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 35
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 34
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:59:8",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 2,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 9,
|
||||
"117": 6,
|
||||
"118": 3,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 35,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 34,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 671266,
|
||||
"crystal": 467021,
|
||||
"deuterium": 69835,
|
||||
"population": 26789,
|
||||
"food": 10221
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "292e0887d91898863078e4749aef71c722be8dc5",
|
||||
"api_string": "sr-ar-170-292e0887d91898863078e4749aef71c722be8dc5",
|
||||
"saved_at": 1788829300,
|
||||
"coords": "1:26:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Procurator Parsec",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T22:00:55-03:00",
|
||||
"event_timestamp": 1788829255,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "292e0887d91898863078e4749aef71c722be8dc5",
|
||||
"event_time": "2026-09-07T22:00:55-03:00",
|
||||
"event_timestamp": 1788829255,
|
||||
"total_ship_count": 1048,
|
||||
"total_defense_count": 1501,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 8,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Procurator Parsec",
|
||||
"defender_user_id": 100216,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:26:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Cry",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Cry",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 5500
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 18415714,
|
||||
"crystal": 1005802,
|
||||
"deuterium": 2716610,
|
||||
"population": 206369,
|
||||
"food": 4140
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 24
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 1024
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1000
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 500
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:26:7",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1000,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 500,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"210": {
|
||||
"amount": 24,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 18415714,
|
||||
"crystal": 1005802,
|
||||
"deuterium": 2716610,
|
||||
"population": 206369,
|
||||
"food": 4140
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,556 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2b073039165b393bdf70253747fdabb266847f5a",
|
||||
"api_string": "sr-ar-170-2b073039165b393bdf70253747fdabb266847f5a",
|
||||
"saved_at": 1788880122,
|
||||
"coords": "1:16:4",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Perfrost",
|
||||
"defender_planet_name": "Hielo",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T11:53:02-03:00",
|
||||
"event_timestamp": 1788879182,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2b073039165b393bdf70253747fdabb266847f5a",
|
||||
"event_time": "2026-09-08T11:53:02-03:00",
|
||||
"event_timestamp": 1788879182,
|
||||
"total_ship_count": 18,
|
||||
"total_defense_count": 107,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Perfrost",
|
||||
"defender_user_id": 100079,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Hielo",
|
||||
"defender_planet_coordinates": "1:16:4",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Frio",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Frio",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 196011,
|
||||
"crystal": 176158,
|
||||
"deuterium": 124900,
|
||||
"population": 7808354,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 38
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 37
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 9
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 9
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 60
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 15
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:16:4",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 10,
|
||||
"111": 11,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 60,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 15,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 9,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.012016,
|
||||
"speed": 0.01006,
|
||||
"fuel": 0.0006023999999999999
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.04024,
|
||||
"crystal": 0.04024,
|
||||
"deuterium": 0.04024
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 196011,
|
||||
"crystal": 176158,
|
||||
"deuterium": 124900,
|
||||
"population": 7808354,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,204 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2e76c445aac3fdacfdefc9fe4542cad07839c8f0",
|
||||
"api_string": "sr-ar-170-2e76c445aac3fdacfdefc9fe4542cad07839c8f0",
|
||||
"saved_at": 1789980081,
|
||||
"coords": "1:24:11",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pirotin",
|
||||
"defender_planet_name": "Pototoxido D Carbono",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T05:40:36-03:00",
|
||||
"event_timestamp": 1789980036,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 152,
|
||||
"total_defense_count": 68
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2e76c445aac3fdacfdefc9fe4542cad07839c8f0",
|
||||
"event_time": "2026-09-21T05:40:36-03:00",
|
||||
"event_timestamp": 1789980036,
|
||||
"total_ship_count": 152,
|
||||
"total_defense_count": 68,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 4,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pirotin",
|
||||
"defender_user_id": 100131,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Pototoxido D Carbono",
|
||||
"defender_planet_coordinates": "1:24:11",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Impact Eclipse",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "IEclipse",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 203648,
|
||||
"crystal": 136512,
|
||||
"deuterium": 54642,
|
||||
"population": 386345,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 22
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 70
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 47
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 7
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 45
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 23
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:24:11",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 45,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 23,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 22,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 70,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 203648,
|
||||
"crystal": 136512,
|
||||
"deuterium": 54642,
|
||||
"population": 386345,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,582 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2e9f62bc84e196b4930e732092c46f971a5e612d",
|
||||
"api_string": "sr-ar-170-2e9f62bc84e196b4930e732092c46f971a5e612d",
|
||||
"saved_at": 1789830342,
|
||||
"coords": "1:90:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "Lotus",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T12:05:07-03:00",
|
||||
"event_timestamp": 1789830307,
|
||||
"activity": 15,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 98,
|
||||
"total_defense_count": 1409
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2e9f62bc84e196b4930e732092c46f971a5e612d",
|
||||
"event_time": "2026-09-19T12:05:07-03:00",
|
||||
"event_timestamp": 1789830307,
|
||||
"total_ship_count": 98,
|
||||
"total_defense_count": 1409,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 15,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Lotus",
|
||||
"defender_planet_coordinates": "1:90:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1620147,
|
||||
"crystal": 318557,
|
||||
"deuterium": 286030,
|
||||
"population": 2730981,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 33
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 32
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 36
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 26
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1100
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 235
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 43
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 30
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:90:12",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 11,
|
||||
"115": 9,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 235,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 43,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"215": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"213": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 36,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 30
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1620147,
|
||||
"crystal": 318557,
|
||||
"deuterium": 286030,
|
||||
"population": 2730981,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,496 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2eeb60e2b7fc8806952278fb335df9626e7f0387",
|
||||
"api_string": "sr-ar-170-2eeb60e2b7fc8806952278fb335df9626e7f0387",
|
||||
"saved_at": 1789980104,
|
||||
"coords": "1:28:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Admiral Saturn",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T05:40:05-03:00",
|
||||
"event_timestamp": 1789980005,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 62,
|
||||
"total_defense_count": 2069
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2eeb60e2b7fc8806952278fb335df9626e7f0387",
|
||||
"event_time": "2026-09-21T05:40:05-03:00",
|
||||
"event_timestamp": 1789980005,
|
||||
"total_ship_count": 62,
|
||||
"total_defense_count": 2069,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 6,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Admiral Saturn",
|
||||
"defender_user_id": 100141,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:28:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Corleone Syndicate",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "CoSy",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 20000
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3672768,
|
||||
"crystal": 1847981,
|
||||
"deuterium": 235886,
|
||||
"population": 1694658,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 30
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11106,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 62
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1733
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 300
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 23
|
||||
},
|
||||
{
|
||||
"defense_type": 406,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 15
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:28:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 12,
|
||||
"110": 12,
|
||||
"111": 15,
|
||||
"115": 14,
|
||||
"117": 8,
|
||||
"118": 4,
|
||||
"114": 11
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1733,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 300,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 23,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 3672768,
|
||||
"crystal": 1847981,
|
||||
"deuterium": 235886,
|
||||
"population": 1694658,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,368 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "2fcc5d8a95eca95c162ab0e53466d2c55350b745",
|
||||
"api_string": "sr-ar-170-2fcc5d8a95eca95c162ab0e53466d2c55350b745",
|
||||
"saved_at": 1788889139,
|
||||
"coords": "1:8:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Keanyr27",
|
||||
"defender_planet_name": "Mordor",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T14:38:43-03:00",
|
||||
"event_timestamp": 1788889123,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "2fcc5d8a95eca95c162ab0e53466d2c55350b745",
|
||||
"event_time": "2026-09-08T14:38:43-03:00",
|
||||
"event_timestamp": 1788889123,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Black Mamba",
|
||||
"attacker_planet_coordinates": "1:84:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Keanyr27",
|
||||
"defender_user_id": 100042,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Mordor",
|
||||
"defender_planet_coordinates": "1:8:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 347303,
|
||||
"crystal": 144625,
|
||||
"deuterium": 34710,
|
||||
"population": 11675,
|
||||
"food": 351
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:8:10",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 4,
|
||||
"110": 4,
|
||||
"111": 7,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 347303,
|
||||
"crystal": 144625,
|
||||
"deuterium": 34710,
|
||||
"population": 11675,
|
||||
"food": 351
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,444 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "316e16d4574fe0759a2c6085a0a991a9840c8c0a",
|
||||
"api_string": "sr-ar-170-316e16d4574fe0759a2c6085a0a991a9840c8c0a",
|
||||
"saved_at": 1788940094,
|
||||
"coords": "1:29:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T04:33:33-03:00",
|
||||
"event_timestamp": 1788939213,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "316e16d4574fe0759a2c6085a0a991a9840c8c0a",
|
||||
"event_time": "2026-09-09T04:33:33-03:00",
|
||||
"event_timestamp": 1788939213,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 169,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_user_id": 100148,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:29:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 396451,
|
||||
"crystal": 209715,
|
||||
"deuterium": 107099,
|
||||
"population": 20413,
|
||||
"food": 558
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 106
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 58
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:29:12",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 9,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 4,
|
||||
"118": 3,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 106,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 58,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 396451,
|
||||
"crystal": 209715,
|
||||
"deuterium": 107099,
|
||||
"population": 20413,
|
||||
"food": 558
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,467 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "31b5158417970fe4de132894a7ff97d5010340b1",
|
||||
"api_string": "sr-ar-170-31b5158417970fe4de132894a7ff97d5010340b1",
|
||||
"saved_at": 1790164135,
|
||||
"coords": "1:44:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Gum",
|
||||
"defender_planet_name": "Infernakulus I",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-23T08:47:26-03:00",
|
||||
"event_timestamp": 1790164046,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 14396
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "31b5158417970fe4de132894a7ff97d5010340b1",
|
||||
"event_time": "2026-09-23T08:47:26-03:00",
|
||||
"event_timestamp": 1790164046,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 14396,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Gum",
|
||||
"defender_user_id": 100220,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Infernakulus I",
|
||||
"defender_planet_coordinates": "1:44:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 10801648,
|
||||
"crystal": 3451488,
|
||||
"deuterium": 1455712,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 33,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 7115
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 7027
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 207
|
||||
},
|
||||
{
|
||||
"defense_type": 406,
|
||||
"count": 45
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 100
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 14
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:44:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 13,
|
||||
"110": 13,
|
||||
"111": 14,
|
||||
"115": 13,
|
||||
"117": 9,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 7115,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 7027,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 207,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"amount": 45,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 100
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 10801648,
|
||||
"crystal": 3451488,
|
||||
"deuterium": 1455712,
|
||||
"population": 210,
|
||||
"food": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,679 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "321e4aa8e5eaff35628b6d8de70f30377695c43b",
|
||||
"api_string": "sr-ar-170-321e4aa8e5eaff35628b6d8de70f30377695c43b",
|
||||
"saved_at": 1789753254,
|
||||
"coords": "1:57:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "longa",
|
||||
"defender_planet_name": "long 1",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-18T14:40:39-03:00",
|
||||
"event_timestamp": 1789753239,
|
||||
"activity": 59,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 5852,
|
||||
"total_defense_count": 182
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "321e4aa8e5eaff35628b6d8de70f30377695c43b",
|
||||
"event_time": "2026-09-18T14:40:39-03:00",
|
||||
"event_timestamp": 1789753239,
|
||||
"total_ship_count": 5852,
|
||||
"total_defense_count": 182,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 3,
|
||||
"activity": 59,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "longa",
|
||||
"defender_user_id": 100285,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "long 1",
|
||||
"defender_planet_coordinates": "1:57:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOGROS",
|
||||
"defender_alliance_class_id": 2,
|
||||
"defender_alliance_tag": "LOGROS",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 1125
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 4443566,
|
||||
"crystal": 10028405,
|
||||
"deuterium": 8078601,
|
||||
"population": 1266196,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 34
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11106,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 770
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 1071
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 58
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 2760
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 432
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 217
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 166
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 50
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 27
|
||||
},
|
||||
{
|
||||
"ship_type": 211,
|
||||
"count": 89
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 48
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 153
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 128
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 51
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 8
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:57:8",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 2,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 11,
|
||||
"111": 8,
|
||||
"115": 10,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 128,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 51,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 432,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 217,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 166,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"207": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"215": {
|
||||
"amount": 27,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"211": {
|
||||
"amount": 89,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"213": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 48,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 153,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.004052,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 770,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 1071,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 58,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 2760,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.014181999999999998,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 4443566,
|
||||
"crystal": 10028405,
|
||||
"deuterium": 8078601,
|
||||
"population": 1266196,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,418 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3228444799dcf91470331845f5744dc5aa4a5256",
|
||||
"api_string": "sr-ar-170-3228444799dcf91470331845f5744dc5aa4a5256",
|
||||
"saved_at": 1789199633,
|
||||
"coords": "1:36:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "J-DF3",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-12T04:53:25-03:00",
|
||||
"event_timestamp": 1789199605,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3228444799dcf91470331845f5744dc5aa4a5256",
|
||||
"event_time": "2026-09-12T04:53:25-03:00",
|
||||
"event_timestamp": 1789199605,
|
||||
"total_ship_count": 8,
|
||||
"total_defense_count": 30,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "J-DF3",
|
||||
"defender_planet_coordinates": "1:36:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 128861,
|
||||
"crystal": 172630,
|
||||
"deuterium": 161276,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 8
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:36:6",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 7,
|
||||
"111": 9,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 128861,
|
||||
"crystal": 172630,
|
||||
"deuterium": 161276,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,470 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3337d2dd801257ef7e1a70b56f517eba11b2d7da",
|
||||
"api_string": "sr-ar-170-3337d2dd801257ef7e1a70b56f517eba11b2d7da",
|
||||
"saved_at": 1789335812,
|
||||
"coords": "1:108:4",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Ronald",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-13T18:23:04-03:00",
|
||||
"event_timestamp": 1789334584,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3337d2dd801257ef7e1a70b56f517eba11b2d7da",
|
||||
"event_time": "2026-09-13T18:23:04-03:00",
|
||||
"event_timestamp": 1789334584,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 37,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Marte",
|
||||
"attacker_planet_coordinates": "1:134:8",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Ronald",
|
||||
"defender_user_id": 100522,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:108:4",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1618117,
|
||||
"crystal": 435407,
|
||||
"deuterium": 12641,
|
||||
"population": 324771,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 9
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 9
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 9
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:108:4",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 6,
|
||||
"111": 6,
|
||||
"115": 9,
|
||||
"117": 4,
|
||||
"118": 5,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 9,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 9,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 9,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 2
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1618117,
|
||||
"crystal": 435407,
|
||||
"deuterium": 12641,
|
||||
"population": 324771,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,390 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3338743efaafb5ac330d44ed9589d0d940d8be43",
|
||||
"api_string": "sr-ar-170-3338743efaafb5ac330d44ed9589d0d940d8be43",
|
||||
"saved_at": 1788804011,
|
||||
"coords": "1:35:5",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T09:43:23-03:00",
|
||||
"event_timestamp": 1788785003,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3338743efaafb5ac330d44ed9589d0d940d8be43",
|
||||
"event_time": "2026-09-07T09:43:23-03:00",
|
||||
"event_timestamp": 1788785003,
|
||||
"total_ship_count": 5,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Cobra",
|
||||
"attacker_planet_coordinates": "1:134:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_user_id": 100174,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:35:5",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 429673,
|
||||
"crystal": 82108,
|
||||
"deuterium": 116185,
|
||||
"population": 73,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:35:5",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 5,
|
||||
"111": 9,
|
||||
"115": 6,
|
||||
"117": 5,
|
||||
"118": 4,
|
||||
"114": 3
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 429673,
|
||||
"crystal": 82108,
|
||||
"deuterium": 116185,
|
||||
"population": 73,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,391 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "33cfb4ebc4b63f457ff13986e09af2009c806fa0",
|
||||
"api_string": "sr-ar-170-33cfb4ebc4b63f457ff13986e09af2009c806fa0",
|
||||
"saved_at": 1788852508,
|
||||
"coords": "1:34:13",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_planet_name": "Krystall",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T04:25:41-03:00",
|
||||
"event_timestamp": 1788852341,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "33cfb4ebc4b63f457ff13986e09af2009c806fa0",
|
||||
"event_time": "2026-09-08T04:25:41-03:00",
|
||||
"event_timestamp": 1788852341,
|
||||
"total_ship_count": 28,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_user_id": 100170,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Krystall",
|
||||
"defender_planet_coordinates": "1:34:13",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 234084,
|
||||
"crystal": 68931,
|
||||
"deuterium": 98897,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 28
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:34:13",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 10,
|
||||
"111": 10,
|
||||
"115": 6,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"202": {
|
||||
"amount": 28,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 234084,
|
||||
"crystal": 68931,
|
||||
"deuterium": 98897,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,586 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "344bb49529a5c23674cbc6a98929bfc208c27483",
|
||||
"api_string": "sr-ar-170-344bb49529a5c23674cbc6a98929bfc208c27483",
|
||||
"saved_at": 1789580975,
|
||||
"coords": "1:73:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "Starlink",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-16T14:32:50-03:00",
|
||||
"event_timestamp": 1789579970,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 206,
|
||||
"total_defense_count": 414
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "344bb49529a5c23674cbc6a98929bfc208c27483",
|
||||
"event_time": "2026-09-16T14:32:50-03:00",
|
||||
"event_timestamp": 1789579970,
|
||||
"total_ship_count": 206,
|
||||
"total_defense_count": 414,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Starlink",
|
||||
"defender_planet_coordinates": "1:73:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1039424,
|
||||
"crystal": 258950,
|
||||
"deuterium": 160418,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 26
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 61
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 37
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 21
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 69
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 12
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 10
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:10",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 7
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 12,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 21,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 69,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 6,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.00503,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
},
|
||||
"503": {
|
||||
"amount": 10
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1039424,
|
||||
"crystal": 258950,
|
||||
"deuterium": 160418,
|
||||
"population": 404004,
|
||||
"food": 10221
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,412 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "34e1b726c5cd05ab6fb9d1fabc1400843b956656",
|
||||
"api_string": "sr-ar-170-34e1b726c5cd05ab6fb9d1fabc1400843b956656",
|
||||
"saved_at": 1788804086,
|
||||
"coords": "1:34:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_planet_name": "Malmr",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T09:39:32-03:00",
|
||||
"event_timestamp": 1788784772,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "34e1b726c5cd05ab6fb9d1fabc1400843b956656",
|
||||
"event_time": "2026-09-07T09:39:32-03:00",
|
||||
"event_timestamp": 1788784772,
|
||||
"total_ship_count": 10,
|
||||
"total_defense_count": 50,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Cobra",
|
||||
"attacker_planet_coordinates": "1:134:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_user_id": 100170,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Malmr",
|
||||
"defender_planet_coordinates": "1:34:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 454391,
|
||||
"crystal": 237342,
|
||||
"deuterium": 3491,
|
||||
"population": 408,
|
||||
"food": 23
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 10
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 50
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:34:7",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 10,
|
||||
"111": 10,
|
||||
"115": 6,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 50,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 454391,
|
||||
"crystal": 237342,
|
||||
"deuterium": 3491,
|
||||
"population": 408,
|
||||
"food": 23
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,545 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "34e8b4ec5ef131a611cfa7acb828add25a08f328",
|
||||
"api_string": "sr-ar-170-34e8b4ec5ef131a611cfa7acb828add25a08f328",
|
||||
"saved_at": 1788953559,
|
||||
"coords": "1:57:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "longa",
|
||||
"defender_planet_name": "long 1",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T08:30:51-03:00",
|
||||
"event_timestamp": 1788953451,
|
||||
"activity": 57,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "34e8b4ec5ef131a611cfa7acb828add25a08f328",
|
||||
"event_time": "2026-09-09T08:30:51-03:00",
|
||||
"event_timestamp": 1788953451,
|
||||
"total_ship_count": 236,
|
||||
"total_defense_count": 31,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 7,
|
||||
"activity": 57,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "longa",
|
||||
"defender_user_id": 100285,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "long 1",
|
||||
"defender_planet_coordinates": "1:57:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOGROS",
|
||||
"defender_alliance_class_id": 2,
|
||||
"defender_alliance_tag": "LOGROS",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1021833,
|
||||
"crystal": 512523,
|
||||
"deuterium": 71258,
|
||||
"population": 404004,
|
||||
"food": 11441
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 37
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 33
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 89
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 19
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 18
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 28
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:57:8",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 2,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 7,
|
||||
"111": 9,
|
||||
"115": 9,
|
||||
"117": 4,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 28,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 19,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 18,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 37,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"208": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 33,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 89,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1021833,
|
||||
"crystal": 512523,
|
||||
"deuterium": 71258,
|
||||
"population": 404004,
|
||||
"food": 11441
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,374 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "354aade290bbb31f2f8135aa64a82203cf8b31bd",
|
||||
"api_string": "sr-ar-170-354aade290bbb31f2f8135aa64a82203cf8b31bd",
|
||||
"saved_at": 1789995275,
|
||||
"coords": "1:10:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "President Space",
|
||||
"defender_planet_name": "Dron",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T09:41:48-03:00",
|
||||
"event_timestamp": 1789994508,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 46
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "354aade290bbb31f2f8135aa64a82203cf8b31bd",
|
||||
"event_time": "2026-09-21T09:41:48-03:00",
|
||||
"event_timestamp": 1789994508,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 46,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "President Space",
|
||||
"defender_user_id": 100051,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Dron",
|
||||
"defender_planet_coordinates": "1:10:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 255000,
|
||||
"crystal": 140000,
|
||||
"deuterium": 75000,
|
||||
"population": 922,
|
||||
"food": 39
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 46
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:10:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 2,
|
||||
"115": 3,
|
||||
"117": 4,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 46,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 255000,
|
||||
"crystal": 140000,
|
||||
"deuterium": 75000,
|
||||
"population": 922,
|
||||
"food": 39
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,510 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3560a4857b61c67562d25d01c112d6ea7bff7aaa",
|
||||
"api_string": "sr-ar-170-3560a4857b61c67562d25d01c112d6ea7bff7aaa",
|
||||
"saved_at": 1789368496,
|
||||
"coords": "6:90:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T03:45:16-03:00",
|
||||
"event_timestamp": 1789368316,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3560a4857b61c67562d25d01c112d6ea7bff7aaa",
|
||||
"event_time": "2026-09-14T03:45:16-03:00",
|
||||
"event_timestamp": 1789368316,
|
||||
"total_ship_count": 2762,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Marte",
|
||||
"attacker_planet_coordinates": "1:134:8",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_user_id": 100672,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "6:90:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1311470,
|
||||
"crystal": 611781,
|
||||
"deuterium": 349607,
|
||||
"population": 390383,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 14101,
|
||||
"level": 28
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14102,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 14103,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 730
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 165
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 274
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 35
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 543
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 836
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 144
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 35
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "6:90:7",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 5,
|
||||
"110": 6,
|
||||
"111": 6,
|
||||
"115": 7,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 543,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"205": {
|
||||
"amount": 836,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"206": {
|
||||
"amount": 144,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"219": {
|
||||
"amount": 35,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"202": {
|
||||
"amount": 730,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"203": {
|
||||
"amount": 165,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
},
|
||||
"210": {
|
||||
"amount": 274,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009018
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1311470,
|
||||
"crystal": 611781,
|
||||
"deuterium": 349607,
|
||||
"population": 390383,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,492 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "356d68c655e23f6b58b226e53e4aa9842dc4abb0",
|
||||
"api_string": "sr-ar-170-356d68c655e23f6b58b226e53e4aa9842dc4abb0",
|
||||
"saved_at": 1788829451,
|
||||
"coords": "1:53:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Omar-R",
|
||||
"defender_planet_name": "Ibuprofeno",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T22:03:03-03:00",
|
||||
"event_timestamp": 1788829383,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "356d68c655e23f6b58b226e53e4aa9842dc4abb0",
|
||||
"event_time": "2026-09-07T22:03:03-03:00",
|
||||
"event_timestamp": 1788829383,
|
||||
"total_ship_count": 564,
|
||||
"total_defense_count": 22,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Omar-R",
|
||||
"defender_user_id": 100267,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Ibuprofeno",
|
||||
"defender_planet_coordinates": "1:53:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1532684,
|
||||
"crystal": 84023,
|
||||
"deuterium": 325246,
|
||||
"population": 367189,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 76
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 5
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 335
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 62
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 67
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 14
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 17
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:53:12",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 2,
|
||||
"110": 0,
|
||||
"111": 7,
|
||||
"115": 8,
|
||||
"117": 3,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 17,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 62,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 67,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"219": {
|
||||
"amount": 14,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"202": {
|
||||
"amount": 76,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 335,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1532684,
|
||||
"crystal": 84023,
|
||||
"deuterium": 325246,
|
||||
"population": 367189,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,513 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "367fa388cf5752131ab80d6fc812b84d32466237",
|
||||
"api_string": "sr-ar-170-367fa388cf5752131ab80d6fc812b84d32466237",
|
||||
"saved_at": 1789247289,
|
||||
"coords": "1:73:11",
|
||||
"planet_type": 1,
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_planet_name": "SpaceX",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-12T17:59:09-03:00",
|
||||
"event_timestamp": 1789246749,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "367fa388cf5752131ab80d6fc812b84d32466237",
|
||||
"event_time": "2026-09-12T17:59:09-03:00",
|
||||
"event_timestamp": 1789246749,
|
||||
"total_ship_count": 214,
|
||||
"total_defense_count": 504,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "DeMarcos",
|
||||
"defender_user_id": 100361,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "SpaceX",
|
||||
"defender_planet_coordinates": "1:73:11",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "HispanoAmericano",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "EspLat",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 257123,
|
||||
"crystal": 262982,
|
||||
"deuterium": 398946,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 109
|
||||
},
|
||||
{
|
||||
"ship_type": 217,
|
||||
"count": 56
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 45
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 200
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 100
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:73:11",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 3,
|
||||
"110": 6,
|
||||
"111": 5,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 1,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 200,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 100,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"205": {
|
||||
"amount": 45,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 257123,
|
||||
"crystal": 262982,
|
||||
"deuterium": 398946,
|
||||
"population": 4513,
|
||||
"food": 445
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,483 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3725ec170675ab5f98aeeed517568bb84eb09f98",
|
||||
"api_string": "sr-ar-170-3725ec170675ab5f98aeeed517568bb84eb09f98",
|
||||
"saved_at": 1789413401,
|
||||
"coords": "1:144:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-14T16:16:11-03:00",
|
||||
"event_timestamp": 1789413371,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3725ec170675ab5f98aeeed517568bb84eb09f98",
|
||||
"event_time": "2026-09-14T16:16:11-03:00",
|
||||
"event_timestamp": 1789413371,
|
||||
"total_ship_count": 94,
|
||||
"total_defense_count": 1685,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_user_id": 100672,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:144:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 51504,
|
||||
"crystal": 24623,
|
||||
"deuterium": 36214,
|
||||
"population": 513349,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 33
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 60
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1684
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 6
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:144:10",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 5,
|
||||
"110": 6,
|
||||
"111": 6,
|
||||
"115": 7,
|
||||
"117": 5,
|
||||
"118": 6,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1684,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009026999999999999
|
||||
},
|
||||
"210": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009026999999999999
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"503": {
|
||||
"amount": 6
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 51504,
|
||||
"crystal": 24623,
|
||||
"deuterium": 36214,
|
||||
"population": 513349,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,552 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "38fb2d51f4497b58839d206d0b4e8638f2062618",
|
||||
"api_string": "sr-ar-170-38fb2d51f4497b58839d206d0b4e8638f2062618",
|
||||
"saved_at": 1788955424,
|
||||
"coords": "1:19:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Perfrost",
|
||||
"defender_planet_name": "Frio",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T09:00:08-03:00",
|
||||
"event_timestamp": 1788955208,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "38fb2d51f4497b58839d206d0b4e8638f2062618",
|
||||
"event_time": "2026-09-09T09:00:08-03:00",
|
||||
"event_timestamp": 1788955208,
|
||||
"total_ship_count": 20,
|
||||
"total_defense_count": 107,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Perfrost",
|
||||
"defender_user_id": 100079,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Frio",
|
||||
"defender_planet_coordinates": "1:19:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Frio",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Frio",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 493906,
|
||||
"crystal": 19044,
|
||||
"deuterium": 273386,
|
||||
"population": 6961343,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 12101,
|
||||
"level": 37
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12102,
|
||||
"level": 37
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 12103,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 16
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 66
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 123,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11205,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14202,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 14204,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14205,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 14206,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12201,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12202,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 12204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 12205,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 12206,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:19:7",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 10,
|
||||
"111": 11,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 7,
|
||||
"114": 8
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 66,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 10,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0.020032,
|
||||
"speed": 0.01006,
|
||||
"fuel": 0.0006023999999999999
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0.04024,
|
||||
"crystal": 0.04024,
|
||||
"deuterium": 0.04024
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 493906,
|
||||
"crystal": 19044,
|
||||
"deuterium": 273386,
|
||||
"population": 6961343,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "397fb5521711736dc3581bd4425ced11f3022fc1",
|
||||
"api_string": "sr-ar-170-397fb5521711736dc3581bd4425ced11f3022fc1",
|
||||
"saved_at": 1789980747,
|
||||
"coords": "3:487:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pirotin",
|
||||
"defender_planet_name": "PitiPiwPiw WiwWiw",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T05:52:14-03:00",
|
||||
"event_timestamp": 1789980734,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 183,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "397fb5521711736dc3581bd4425ced11f3022fc1",
|
||||
"event_time": "2026-09-21T05:52:14-03:00",
|
||||
"event_timestamp": 1789980734,
|
||||
"total_ship_count": 183,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 25,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pirotin",
|
||||
"defender_user_id": 100131,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "PitiPiwPiw WiwWiw",
|
||||
"defender_planet_coordinates": "3:487:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Impact Eclipse",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "IEclipse",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 1164376,
|
||||
"crystal": 325532,
|
||||
"deuterium": 493730,
|
||||
"population": 67207,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 92
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 91
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "3:487:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 92,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1164376,
|
||||
"crystal": 325532,
|
||||
"deuterium": 493730,
|
||||
"population": 67207,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "39e9ac755ac52aff08e0845e576ae117ff32b9a6",
|
||||
"api_string": "sr-ar-170-39e9ac755ac52aff08e0845e576ae117ff32b9a6",
|
||||
"saved_at": 1789797171,
|
||||
"coords": "1:144:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Gum",
|
||||
"defender_planet_name": "Corulag I",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-19T02:13:21-03:00",
|
||||
"event_timestamp": 1789794801,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "39e9ac755ac52aff08e0845e576ae117ff32b9a6",
|
||||
"event_time": "2026-09-19T02:13:21-03:00",
|
||||
"event_timestamp": 1789794801,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Gum",
|
||||
"defender_user_id": 100220,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Corulag I",
|
||||
"defender_planet_coordinates": "1:144:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": true,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 865000,
|
||||
"crystal": 470000,
|
||||
"deuterium": 255000,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:144:6",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 865000,
|
||||
"crystal": 470000,
|
||||
"deuterium": 255000,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,454 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3a97eb341f927cd06eda38f7b5c62b1d7bdd9120",
|
||||
"api_string": "sr-ar-170-3a97eb341f927cd06eda38f7b5c62b1d7bdd9120",
|
||||
"saved_at": 1788853547,
|
||||
"coords": "1:29:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-08T04:44:03-03:00",
|
||||
"event_timestamp": 1788853443,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3a97eb341f927cd06eda38f7b5c62b1d7bdd9120",
|
||||
"event_time": "2026-09-08T04:44:03-03:00",
|
||||
"event_timestamp": 1788853443,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 218,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pachacutec",
|
||||
"defender_user_id": 100148,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:29:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 692656,
|
||||
"crystal": 356942,
|
||||
"deuterium": 189641,
|
||||
"population": 20413,
|
||||
"food": 616
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 11
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 132
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 74
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 502,
|
||||
"count": 20
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:29:12",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 9,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 4,
|
||||
"118": 3,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 132,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 74,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"502": {
|
||||
"amount": 20
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 692656,
|
||||
"crystal": 356942,
|
||||
"deuterium": 189641,
|
||||
"population": 20413,
|
||||
"food": 616
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,412 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3b27de383c0e76a97e049425a7f29c512960ca07",
|
||||
"api_string": "sr-ar-170-3b27de383c0e76a97e049425a7f29c512960ca07",
|
||||
"saved_at": 1789040443,
|
||||
"coords": "1:27:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Ceia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-10T08:39:24-03:00",
|
||||
"event_timestamp": 1789040364,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3b27de383c0e76a97e049425a7f29c512960ca07",
|
||||
"event_time": "2026-09-10T08:39:24-03:00",
|
||||
"event_timestamp": 1789040364,
|
||||
"total_ship_count": 135,
|
||||
"total_defense_count": 3,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Ceia",
|
||||
"defender_planet_coordinates": "1:27:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 22624,
|
||||
"crystal": 8045,
|
||||
"deuterium": 146350,
|
||||
"population": 509240,
|
||||
"food": 12189
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 27
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 135
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 13
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:27:12",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 11,
|
||||
"110": 11,
|
||||
"111": 13,
|
||||
"115": 10,
|
||||
"117": 5,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 22624,
|
||||
"crystal": 8045,
|
||||
"deuterium": 146350,
|
||||
"population": 509240,
|
||||
"food": 12189
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,375 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3b3395f7a3e8f3bd3c04bf2bd9edf191933c9183",
|
||||
"api_string": "sr-ar-170-3b3395f7a3e8f3bd3c04bf2bd9edf191933c9183",
|
||||
"saved_at": 1788925106,
|
||||
"coords": "1:35:5",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T00:24:37-03:00",
|
||||
"event_timestamp": 1788924277,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3b3395f7a3e8f3bd3c04bf2bd9edf191933c9183",
|
||||
"event_time": "2026-09-09T00:24:37-03:00",
|
||||
"event_timestamp": 1788924277,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Draco",
|
||||
"defender_user_id": 100174,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:35:5",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 111000,
|
||||
"debris_crystal": 50000
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 355634,
|
||||
"crystal": 92389,
|
||||
"deuterium": 11898,
|
||||
"population": 54,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:35:5",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 7,
|
||||
"110": 5,
|
||||
"111": 9,
|
||||
"115": 6,
|
||||
"117": 5,
|
||||
"118": 4,
|
||||
"114": 3
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 355634,
|
||||
"crystal": 92389,
|
||||
"deuterium": 11898,
|
||||
"population": 54,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,536 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3c14067957ed07b01fb6765a89f81a96af6c0f61",
|
||||
"api_string": "sr-ar-170-3c14067957ed07b01fb6765a89f81a96af6c0f61",
|
||||
"saved_at": 1789980087,
|
||||
"coords": "1:26:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Procurator Parsec",
|
||||
"defender_planet_name": "Colonia",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T05:40:24-03:00",
|
||||
"event_timestamp": 1789980024,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 3815
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3c14067957ed07b01fb6765a89f81a96af6c0f61",
|
||||
"event_time": "2026-09-21T05:40:24-03:00",
|
||||
"event_timestamp": 1789980024,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 3815,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Procurator Parsec",
|
||||
"defender_user_id": 100216,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Colonia",
|
||||
"defender_planet_coordinates": "1:26:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Cry",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Cry",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005055
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005055
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005055
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005055
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0.005055
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 508563,
|
||||
"crystal": 473702,
|
||||
"deuterium": 450876,
|
||||
"population": 951883,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 5
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 35
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 25
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1634
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 1446
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 713
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 7
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 13
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 408,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 14
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 14
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11203,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11206,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 164
|
||||
},
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 121
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 306
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 49
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 35
|
||||
},
|
||||
{
|
||||
"ship_type": 207,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 208,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 82
|
||||
},
|
||||
{
|
||||
"ship_type": 211,
|
||||
"count": 14
|
||||
},
|
||||
{
|
||||
"ship_type": 213,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"ship_type": 215,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 6
|
||||
},
|
||||
{
|
||||
"ship_type": 219,
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"combatInformation": {
|
||||
"coords": "1:26:7",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 14,
|
||||
"110": 13,
|
||||
"111": 14,
|
||||
"115": 11,
|
||||
"117": 8,
|
||||
"118": 2,
|
||||
"114": 3
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1634,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 1446,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 713,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 13,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 508563,
|
||||
"crystal": 473702,
|
||||
"deuterium": 450876,
|
||||
"population": 951883,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,456 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3c2fc5d823e9dd5c4bda67471e45748342993172",
|
||||
"api_string": "sr-ar-170-3c2fc5d823e9dd5c4bda67471e45748342993172",
|
||||
"saved_at": 1788953525,
|
||||
"coords": "1:64:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "longa",
|
||||
"defender_planet_name": "long 3",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T08:31:29-03:00",
|
||||
"event_timestamp": 1788953489,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3c2fc5d823e9dd5c4bda67471e45748342993172",
|
||||
"event_time": "2026-09-09T08:31:29-03:00",
|
||||
"event_timestamp": 1788953489,
|
||||
"total_ship_count": 155,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 8,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "longa",
|
||||
"defender_user_id": 100285,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "long 3",
|
||||
"defender_planet_coordinates": "1:64:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOGROS",
|
||||
"defender_alliance_class_id": 2,
|
||||
"defender_alliance_tag": "LOGROS",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 96901,
|
||||
"crystal": 232885,
|
||||
"deuterium": 149368,
|
||||
"population": 50,
|
||||
"food": 8
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 34,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 25
|
||||
},
|
||||
{
|
||||
"ship_type": 204,
|
||||
"count": 29
|
||||
},
|
||||
{
|
||||
"ship_type": 205,
|
||||
"count": 47
|
||||
},
|
||||
{
|
||||
"ship_type": 206,
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"ship_type": 211,
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"ship_type": 218,
|
||||
"count": 32
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:64:8",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 2,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 7,
|
||||
"111": 9,
|
||||
"115": 9,
|
||||
"117": 4,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"204": {
|
||||
"amount": 29,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"205": {
|
||||
"amount": 47,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"206": {
|
||||
"amount": 20,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"211": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"218": {
|
||||
"amount": 32,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 25,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 96901,
|
||||
"crystal": 232885,
|
||||
"deuterium": 149368,
|
||||
"population": 50,
|
||||
"food": 8
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,508 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3c764cca0f2712d0e2b4cbf573ff6ca6e3ccd0ee",
|
||||
"api_string": "sr-ar-170-3c764cca0f2712d0e2b4cbf573ff6ca6e3ccd0ee",
|
||||
"saved_at": 1788954294,
|
||||
"coords": "1:24:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-09T08:42:36-03:00",
|
||||
"event_timestamp": 1788954156,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3c764cca0f2712d0e2b4cbf573ff6ca6e3ccd0ee",
|
||||
"event_time": "2026-09-09T08:42:36-03:00",
|
||||
"event_timestamp": 1788954156,
|
||||
"total_ship_count": 1278,
|
||||
"total_defense_count": 1457,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "xXM4Ti4SXx",
|
||||
"defender_user_id": 100122,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:24:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 168750,
|
||||
"crystal": 81398,
|
||||
"deuterium": 289415,
|
||||
"population": 404004,
|
||||
"food": 7156
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 12,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 15,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 70
|
||||
},
|
||||
{
|
||||
"ship_type": 209,
|
||||
"count": 72
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 1121
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 15
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 1311
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 131
|
||||
},
|
||||
{
|
||||
"defense_type": 403,
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"defense_type": 404,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 3
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:24:10",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 8,
|
||||
"111": 9,
|
||||
"115": 7,
|
||||
"117": 4,
|
||||
"118": 4,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 1311,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 131,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"amount": 8,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 3,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 70,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"209": {
|
||||
"amount": 72,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
},
|
||||
"210": {
|
||||
"amount": 1121,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 168750,
|
||||
"crystal": 81398,
|
||||
"deuterium": 289415,
|
||||
"population": 404004,
|
||||
"food": 7156
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,391 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3d236b83aa2d70dedaba4f9f7470704da9480d60",
|
||||
"api_string": "sr-ar-170-3d236b83aa2d70dedaba4f9f7470704da9480d60",
|
||||
"saved_at": 1788804075,
|
||||
"coords": "1:34:13",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_planet_name": "Krystall",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-07T09:39:34-03:00",
|
||||
"event_timestamp": 1788784774,
|
||||
"activity": 32,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3d236b83aa2d70dedaba4f9f7470704da9480d60",
|
||||
"event_time": "2026-09-07T09:39:34-03:00",
|
||||
"event_timestamp": 1788784774,
|
||||
"total_ship_count": 28,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": 32,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Cobra",
|
||||
"attacker_planet_coordinates": "1:134:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Chief Asgard",
|
||||
"defender_user_id": 100170,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Krystall",
|
||||
"defender_planet_coordinates": "1:34:13",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Los Nephalem",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "NPH",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 20171,
|
||||
"crystal": 13018,
|
||||
"deuterium": 49844,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 202,
|
||||
"count": 28
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:34:13",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 10,
|
||||
"110": 10,
|
||||
"111": 10,
|
||||
"115": 6,
|
||||
"117": 4,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": {
|
||||
"202": {
|
||||
"amount": 28,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 20171,
|
||||
"crystal": 13018,
|
||||
"deuterium": 49844,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3dfad9da37bf877441028be9464a52b2b29c2d50",
|
||||
"api_string": "sr-ar-170-3dfad9da37bf877441028be9464a52b2b29c2d50",
|
||||
"saved_at": 1790034032,
|
||||
"coords": "1:26:8",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Pirotin",
|
||||
"defender_planet_name": "Zordi Prime",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T16:35:30-03:00",
|
||||
"event_timestamp": 1790019330,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 51,
|
||||
"total_defense_count": 108
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3dfad9da37bf877441028be9464a52b2b29c2d50",
|
||||
"event_time": "2026-09-21T16:35:30-03:00",
|
||||
"event_timestamp": 1790019330,
|
||||
"total_ship_count": 51,
|
||||
"total_defense_count": 108,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 18,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Pirotin",
|
||||
"defender_user_id": 100131,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "Zordi Prime",
|
||||
"defender_planet_coordinates": "1:26:8",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Impact Eclipse",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "IEclipse",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 4500
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 278114,
|
||||
"crystal": 126189,
|
||||
"deuterium": 54623,
|
||||
"population": 534460,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 51
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 106
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 17
|
||||
}
|
||||
],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:26:8",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 106,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": {
|
||||
"503": {
|
||||
"amount": 17
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 278114,
|
||||
"crystal": 126189,
|
||||
"deuterium": 54623,
|
||||
"population": 534460,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,370 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3eea7c0fd574cd4bef0e31286aa771a2af43b5c1",
|
||||
"api_string": "sr-ar-170-3eea7c0fd574cd4bef0e31286aa771a2af43b5c1",
|
||||
"saved_at": 1789995273,
|
||||
"coords": "1:8:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Keanyr27",
|
||||
"defender_planet_name": "Mordor",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-21T09:41:56-03:00",
|
||||
"event_timestamp": 1789994516,
|
||||
"activity": -1,
|
||||
"loot_percentage": 50,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3eea7c0fd574cd4bef0e31286aa771a2af43b5c1",
|
||||
"event_time": "2026-09-21T09:41:56-03:00",
|
||||
"event_timestamp": 1789994516,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 50,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Keanyr27",
|
||||
"defender_user_id": 100042,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Mordor",
|
||||
"defender_planet_coordinates": "1:8:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 321163,
|
||||
"crystal": 107364,
|
||||
"deuterium": 25804,
|
||||
"population": 11675,
|
||||
"food": 421
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 17
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 11
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 7
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:8:10",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 4,
|
||||
"110": 4,
|
||||
"111": 7,
|
||||
"115": 6,
|
||||
"117": 3,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 321163,
|
||||
"crystal": 107364,
|
||||
"deuterium": 25804,
|
||||
"population": 11675,
|
||||
"food": 421
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3f4fb4fae8e25339a8b5ab1e2a7d531da8fa5889",
|
||||
"api_string": "sr-ar-170-3f4fb4fae8e25339a8b5ab1e2a7d531da8fa5889",
|
||||
"saved_at": 1788811848,
|
||||
"coords": "1:87:7",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_planet_name": "Fenix",
|
||||
"attacker_name": "Serpentis",
|
||||
"event_time": "2026-09-07T04:06:37-03:00",
|
||||
"event_timestamp": 1788764797,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3f4fb4fae8e25339a8b5ab1e2a7d531da8fa5889",
|
||||
"event_time": "2026-09-07T04:06:37-03:00",
|
||||
"event_timestamp": 1788764797,
|
||||
"total_ship_count": 42,
|
||||
"total_defense_count": 0,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 10,
|
||||
"activity": -1,
|
||||
"attacker_name": "Serpentis",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Black Mamba",
|
||||
"attacker_planet_coordinates": "1:84:12",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Proconsul Eridanus",
|
||||
"defender_user_id": 100138,
|
||||
"defender_character_class_id": 2,
|
||||
"defender_planet_name": "Fenix",
|
||||
"defender_planet_coordinates": "1:87:7",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "LOS_ONLY_RED",
|
||||
"defender_alliance_class_id": 3,
|
||||
"defender_alliance_tag": "LOR",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": true,
|
||||
"failed_research": true,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"resources": {
|
||||
"metal": 263812,
|
||||
"crystal": 66277,
|
||||
"deuterium": 36658,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 42
|
||||
}
|
||||
],
|
||||
"defense": [],
|
||||
"research": [],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:87:7",
|
||||
"characterClassId": 2,
|
||||
"allianceClassId": 3,
|
||||
"researches": {
|
||||
"109": 0,
|
||||
"110": 0,
|
||||
"111": 0,
|
||||
"115": 0,
|
||||
"117": 0,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": [],
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 263812,
|
||||
"crystal": 66277,
|
||||
"deuterium": 36658,
|
||||
"population": 100,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,418 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3f84c4812500d727f8a1da3285228c928a221a10",
|
||||
"api_string": "sr-ar-170-3f84c4812500d727f8a1da3285228c928a221a10",
|
||||
"saved_at": 1789243787,
|
||||
"coords": "1:36:6",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Quantum",
|
||||
"defender_planet_name": "J-DF3",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-12T17:09:16-03:00",
|
||||
"event_timestamp": 1789243756,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3f84c4812500d727f8a1da3285228c928a221a10",
|
||||
"event_time": "2026-09-12T17:09:16-03:00",
|
||||
"event_timestamp": 1789243756,
|
||||
"total_ship_count": 7,
|
||||
"total_defense_count": 83,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 2,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Anaconda",
|
||||
"attacker_planet_coordinates": "1:35:11",
|
||||
"attacker_planet_type": 1,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Quantum",
|
||||
"defender_user_id": 100441,
|
||||
"defender_character_class_id": 1,
|
||||
"defender_planet_name": "J-DF3",
|
||||
"defender_planet_coordinates": "1:36:6",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": "Vortice",
|
||||
"defender_alliance_class_id": 0,
|
||||
"defender_alliance_tag": "Vortice",
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 78011,
|
||||
"crystal": 51918,
|
||||
"deuterium": 79668,
|
||||
"population": 90,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 18
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 15
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 4
|
||||
}
|
||||
],
|
||||
"lfbuildings": [],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 7
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 51
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 27
|
||||
},
|
||||
{
|
||||
"defense_type": 405,
|
||||
"count": 5
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 12
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 10
|
||||
}
|
||||
],
|
||||
"lfresearch": [],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:36:6",
|
||||
"characterClassId": 1,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 8,
|
||||
"110": 7,
|
||||
"111": 10,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 5
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 51,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 27,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"amount": 5,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 7,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0
|
||||
}
|
||||
},
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 78011,
|
||||
"crystal": 51918,
|
||||
"deuterium": 79668,
|
||||
"population": 90,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,487 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "3fbed230c401ec1b1333ea84ccddcc2d1b4d8a65",
|
||||
"api_string": "sr-ar-170-3fbed230c401ec1b1333ea84ccddcc2d1b4d8a65",
|
||||
"saved_at": 1789477958,
|
||||
"coords": "1:144:10",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-15T09:42:41-03:00",
|
||||
"event_timestamp": 1789476161,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "3fbed230c401ec1b1333ea84ccddcc2d1b4d8a65",
|
||||
"event_time": "2026-09-15T09:42:41-03:00",
|
||||
"event_timestamp": 1789476161,
|
||||
"total_ship_count": 94,
|
||||
"total_defense_count": 2339,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Titano",
|
||||
"attacker_planet_coordinates": "1:84:8",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Yo No Fui",
|
||||
"defender_user_id": 100672,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Planeta Principal",
|
||||
"defender_planet_coordinates": "1:144:10",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 0
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 329232,
|
||||
"crystal": 152941,
|
||||
"deuterium": 164142,
|
||||
"population": 568322,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 23
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 20
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"building_type": 44,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 35
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 22
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"ships": [
|
||||
{
|
||||
"ship_type": 203,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"ship_type": 210,
|
||||
"count": 30
|
||||
},
|
||||
{
|
||||
"ship_type": 212,
|
||||
"count": 60
|
||||
}
|
||||
],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 2338
|
||||
},
|
||||
{
|
||||
"defense_type": 407,
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"defense_type": 503,
|
||||
"count": 6
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 114,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 121,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 122,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 118,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 9
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 7
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 6
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"research_type": 14203,
|
||||
"level": 2
|
||||
},
|
||||
{
|
||||
"research_type": 11204,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 14201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 13201,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"research_type": 12203,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:144:10",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 5,
|
||||
"110": 6,
|
||||
"111": 6,
|
||||
"115": 7,
|
||||
"117": 6,
|
||||
"118": 6,
|
||||
"114": 4
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 2338,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"amount": 1,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": {
|
||||
"203": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009026999999999999
|
||||
},
|
||||
"210": {
|
||||
"amount": 30,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0,
|
||||
"fuel": 0.0009026999999999999
|
||||
}
|
||||
},
|
||||
"missiles": {
|
||||
"503": {
|
||||
"amount": 6
|
||||
}
|
||||
},
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 329232,
|
||||
"crystal": 152941,
|
||||
"deuterium": 164142,
|
||||
"population": 568322,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,409 @@
|
||||
{
|
||||
"meta": {
|
||||
"type": "sr",
|
||||
"sr_id": "402ecfbc78cd82b77b003b89c9190b03360bc15f",
|
||||
"api_string": "sr-ar-170-402ecfbc78cd82b77b003b89c9190b03360bc15f",
|
||||
"saved_at": 1790164140,
|
||||
"coords": "1:53:12",
|
||||
"planet_type": 1,
|
||||
"defender_name": "Omar-R",
|
||||
"defender_planet_name": "Marea Dune",
|
||||
"attacker_name": "MaNaki",
|
||||
"event_time": "2026-09-23T08:47:49-03:00",
|
||||
"event_timestamp": 1790164069,
|
||||
"activity": -1,
|
||||
"loot_percentage": 75,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 6
|
||||
},
|
||||
"report": {
|
||||
"generic": {
|
||||
"sr_id": "402ecfbc78cd82b77b003b89c9190b03360bc15f",
|
||||
"event_time": "2026-09-23T08:47:49-03:00",
|
||||
"event_timestamp": 1790164069,
|
||||
"total_ship_count": 0,
|
||||
"total_defense_count": 6,
|
||||
"loot_percentage": 75,
|
||||
"spy_fail_chance": 0,
|
||||
"activity": -1,
|
||||
"attacker_name": "MaNaki",
|
||||
"attacker_user_id": 100634,
|
||||
"attacker_character_class_id": 1,
|
||||
"attacker_planet_name": "Rosalind",
|
||||
"attacker_planet_coordinates": "1:34:12",
|
||||
"attacker_planet_type": 3,
|
||||
"attacker_alliance_name": "Free Inter Galactic Agency",
|
||||
"attacker_alliance_class_id": 0,
|
||||
"attacker_alliance_tag": "FIGA",
|
||||
"defender_name": "Omar-R",
|
||||
"defender_user_id": 100267,
|
||||
"defender_character_class_id": 3,
|
||||
"defender_planet_name": "Marea Dune",
|
||||
"defender_planet_coordinates": "1:53:12",
|
||||
"defender_planet_type": 1,
|
||||
"defender_alliance_name": null,
|
||||
"defender_alliance_class_id": null,
|
||||
"defender_alliance_tag": null,
|
||||
"failed_ships": false,
|
||||
"failed_defense": false,
|
||||
"failed_buildings": false,
|
||||
"failed_research": false,
|
||||
"debris_metal": 0,
|
||||
"debris_crystal": 4500
|
||||
},
|
||||
"details": {
|
||||
"lifeformBonuses": {
|
||||
"BaseStatsBooster": {
|
||||
"202": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"203": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"208": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"209": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"210": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"212": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"217": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"204": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"205": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"206": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"207": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"215": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"211": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"213": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"214": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"218": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"219": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0,
|
||||
"cargo": 0,
|
||||
"speed": 0
|
||||
},
|
||||
"401": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"403": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"404": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"405": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"406": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"407": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"408": {
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"CharacterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1127478,
|
||||
"crystal": 246179,
|
||||
"deuterium": 208196,
|
||||
"population": 458816,
|
||||
"food": 0
|
||||
},
|
||||
"buildings": [
|
||||
{
|
||||
"building_type": 1,
|
||||
"level": 19
|
||||
},
|
||||
{
|
||||
"building_type": 2,
|
||||
"level": 16
|
||||
},
|
||||
{
|
||||
"building_type": 3,
|
||||
"level": 13
|
||||
},
|
||||
{
|
||||
"building_type": 4,
|
||||
"level": 21
|
||||
},
|
||||
{
|
||||
"building_type": 14,
|
||||
"level": 10
|
||||
},
|
||||
{
|
||||
"building_type": 21,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 22,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"building_type": 23,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 24,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"building_type": 31,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"building_type": 36,
|
||||
"level": 3
|
||||
}
|
||||
],
|
||||
"lfbuildings": [
|
||||
{
|
||||
"lfbuilding_type": 11101,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11102,
|
||||
"level": 24
|
||||
},
|
||||
{
|
||||
"lfbuilding_type": 11103,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"ships": [],
|
||||
"defense": [
|
||||
{
|
||||
"defense_type": 401,
|
||||
"count": 4
|
||||
},
|
||||
{
|
||||
"defense_type": 402,
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"research": [
|
||||
{
|
||||
"research_type": 113,
|
||||
"level": 6
|
||||
},
|
||||
{
|
||||
"research_type": 120,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 115,
|
||||
"level": 8
|
||||
},
|
||||
{
|
||||
"research_type": 117,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 106,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 108,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 124,
|
||||
"level": 5
|
||||
},
|
||||
{
|
||||
"research_type": 109,
|
||||
"level": 4
|
||||
},
|
||||
{
|
||||
"research_type": 110,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 111,
|
||||
"level": 9
|
||||
}
|
||||
],
|
||||
"lfresearch": [
|
||||
{
|
||||
"research_type": 11201,
|
||||
"level": 3
|
||||
},
|
||||
{
|
||||
"research_type": 11202,
|
||||
"level": 2
|
||||
}
|
||||
],
|
||||
"repairOrder": [],
|
||||
"combatInformation": {
|
||||
"coords": "1:53:12",
|
||||
"characterClassId": 3,
|
||||
"allianceClassId": 0,
|
||||
"researches": {
|
||||
"109": 4,
|
||||
"110": 3,
|
||||
"111": 9,
|
||||
"115": 8,
|
||||
"117": 3,
|
||||
"118": 0,
|
||||
"114": 0
|
||||
},
|
||||
"defenses": {
|
||||
"401": {
|
||||
"amount": 4,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
},
|
||||
"402": {
|
||||
"amount": 2,
|
||||
"weapon": 0,
|
||||
"shield": 0,
|
||||
"armor": 0
|
||||
}
|
||||
},
|
||||
"ships": [],
|
||||
"missiles": [],
|
||||
"bonuses": {
|
||||
"recycleAttackerFleet": 0,
|
||||
"moonChanceIncrease": 0,
|
||||
"lifeformProtection": 0,
|
||||
"spaceDockExtender": 0,
|
||||
"denCapacity": {
|
||||
"metal": 0,
|
||||
"crystal": 0,
|
||||
"deuterium": 0
|
||||
},
|
||||
"characterClassBooster": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"metal": 1127478,
|
||||
"crystal": 246179,
|
||||
"deuterium": 208196,
|
||||
"population": 458816,
|
||||
"food": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user