diff --git a/.agents/skills-lock.json b/.agents/skills-lock.json new file mode 100644 index 000000000..49006bcff --- /dev/null +++ b/.agents/skills-lock.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "skills": { + "documentation-and-adrs": { + "source": "addyosmani/agent-skills", + "sourceType": "github", + "skillPath": "skills/documentation-and-adrs/SKILL.md", + "computedHash": "d751b98cb2894feb833af869f397aaaadd9a3a679882331c1a5b254e8ed1399a" + }, + "documentation-writer": { + "source": "github/awesome-copilot", + "sourceType": "github", + "skillPath": "skills/documentation-writer/SKILL.md", + "computedHash": "ee53d65b163cd7eb953a930c95841cfe398cc2c0bd24c06508bbaa07c432be35" + } + } +} diff --git a/.agents/skills/documentation-and-adrs/SKILL.md b/.agents/skills/documentation-and-adrs/SKILL.md new file mode 100644 index 000000000..061c5e1a0 --- /dev/null +++ b/.agents/skills/documentation-and-adrs/SKILL.md @@ -0,0 +1,278 @@ +--- +name: documentation-and-adrs +description: Records decisions and documentation. Use when making architectural decisions, changing public APIs, shipping features, or when you need to record context that future engineers and agents will need to understand the codebase. +--- + +# Documentation and ADRs + +## Overview + +Document decisions, not just code. The most valuable documentation captures the *why* — the context, constraints, and trade-offs that led to a decision. Code shows *what* was built; documentation explains *why it was built this way* and *what alternatives were considered*. This context is essential for future humans and agents working in the codebase. + +## When to Use + +- Making a significant architectural decision +- Choosing between competing approaches +- Adding or changing a public API +- Shipping a feature that changes user-facing behavior +- Onboarding new team members (or agents) to the project +- When you find yourself explaining the same thing repeatedly + +**When NOT to use:** Don't document obvious code. Don't add comments that restate what the code already says. Don't write docs for throwaway prototypes. + +## Architecture Decision Records (ADRs) + +ADRs capture the reasoning behind significant technical decisions. They're the highest-value documentation you can write. + +### When to Write an ADR + +- Choosing a framework, library, or major dependency +- Designing a data model or database schema +- Selecting an authentication strategy +- Deciding on an API architecture (REST vs. GraphQL vs. tRPC) +- Choosing between build tools, hosting platforms, or infrastructure +- Any decision that would be expensive to reverse + +### ADR Template + +Store ADRs in `docs/decisions/` with sequential numbering: + +```markdown +# ADR-001: Use PostgreSQL for primary database + +## Status +Accepted | Superseded by ADR-XXX | Deprecated + +## Date +2025-01-15 + +## Context +We need a primary database for the task management application. Key requirements: +- Relational data model (users, tasks, teams with relationships) +- ACID transactions for task state changes +- Support for full-text search on task content +- Managed hosting available (for small team, limited ops capacity) + +## Decision +Use PostgreSQL with Prisma ORM. + +## Alternatives Considered + +### MongoDB +- Pros: Flexible schema, easy to start with +- Cons: Our data is inherently relational; would need to manage relationships manually +- Rejected: Relational data in a document store leads to complex joins or data duplication + +### SQLite +- Pros: Zero configuration, embedded, fast for reads +- Cons: Limited concurrent write support, no managed hosting for production +- Rejected: Not suitable for multi-user web application in production + +### MySQL +- Pros: Mature, widely supported +- Cons: PostgreSQL has better JSON support, full-text search, and ecosystem tooling +- Rejected: PostgreSQL is the better fit for our feature requirements + +## Consequences +- Prisma provides type-safe database access and migration management +- We can use PostgreSQL's full-text search instead of adding Elasticsearch +- Team needs PostgreSQL knowledge (standard skill, low risk) +- Hosting on managed service (Supabase, Neon, or RDS) +``` + +### ADR Lifecycle + +``` +PROPOSED → ACCEPTED → (SUPERSEDED or DEPRECATED) +``` + +- **Don't delete old ADRs.** They capture historical context. +- When a decision changes, write a new ADR that references and supersedes the old one. + +## Inline Documentation + +### When to Comment + +Comment the *why*, not the *what*: + +```typescript +// BAD: Restates the code +// Increment counter by 1 +counter += 1; + +// GOOD: Explains non-obvious intent +// Rate limit uses a sliding window — reset counter at window boundary, +// not on a fixed schedule, to prevent burst attacks at window edges +if (now - windowStart > WINDOW_SIZE_MS) { + counter = 0; + windowStart = now; +} +``` + +### When NOT to Comment + +```typescript +// Don't comment self-explanatory code +function calculateTotal(items: CartItem[]): number { + return items.reduce((sum, item) => sum + item.price * item.quantity, 0); +} + +// Don't leave TODO comments for things you should just do now +// TODO: add error handling ← Just add it + +// Don't leave commented-out code +// const oldImplementation = () => { ... } ← Delete it, git has history +``` + +### Document Known Gotchas + +```typescript +/** + * IMPORTANT: This function must be called before the first render. + * If called after hydration, it causes a flash of unstyled content + * because the theme context isn't available during SSR. + * + * See ADR-003 for the full design rationale. + */ +export function initializeTheme(theme: Theme): void { + // ... +} +``` + +## API Documentation + +For public APIs (REST, GraphQL, library interfaces): + +### Inline with Types (Preferred for TypeScript) + +```typescript +/** + * Creates a new task. + * + * @param input - Task creation data (title required, description optional) + * @returns The created task with server-generated ID and timestamps + * @throws {ValidationError} If title is empty or exceeds 200 characters + * @throws {AuthenticationError} If the user is not authenticated + * + * @example + * const task = await createTask({ title: 'Buy groceries' }); + * console.log(task.id); // "task_abc123" + */ +export async function createTask(input: CreateTaskInput): Promise { + // ... +} +``` + +### OpenAPI / Swagger for REST APIs + +```yaml +paths: + /api/tasks: + post: + summary: Create a task + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/CreateTaskInput' + responses: + '201': + description: Task created + content: + application/json: + schema: + $ref: '#/components/schemas/Task' + '422': + description: Validation error +``` + +## README Structure + +Every project should have a README that covers: + +```markdown +# Project Name + +One-paragraph description of what this project does. + +## Quick Start +1. Clone the repo +2. Install dependencies: `npm install` +3. Set up environment: `cp .env.example .env` +4. Run the dev server: `npm run dev` + +## Commands +| Command | Description | +|---------|-------------| +| `npm run dev` | Start development server | +| `npm test` | Run tests | +| `npm run build` | Production build | +| `npm run lint` | Run linter | + +## Architecture +Brief overview of the project structure and key design decisions. +Link to ADRs for details. + +## Contributing +How to contribute, coding standards, PR process. +``` + +## Changelog Maintenance + +For shipped features: + +```markdown +# Changelog + +## [1.2.0] - 2025-01-20 +### Added +- Task sharing: users can share tasks with team members (#123) +- Email notifications for task assignments (#124) + +### Fixed +- Duplicate tasks appearing when rapidly clicking create button (#125) + +### Changed +- Task list now loads 50 items per page (was 20) for better UX (#126) +``` + +## Documentation for Agents + +Special consideration for AI agent context: + +- **CLAUDE.md / rules files** — Document project conventions so agents follow them +- **Spec files** — Keep specs updated so agents build the right thing +- **ADRs** — Help agents understand why past decisions were made (prevents re-deciding) +- **Inline gotchas** — Prevent agents from falling into known traps + +## Common Rationalizations + +| Rationalization | Reality | +|---|---| +| "The code is self-documenting" | Code shows what. It doesn't show why, what alternatives were rejected, or what constraints apply. | +| "We'll write docs when the API stabilizes" | APIs stabilize faster when you document them. The doc is the first test of the design. | +| "Nobody reads docs" | Agents do. Future engineers do. Your 3-months-later self does. | +| "ADRs are overhead" | A 10-minute ADR prevents a 2-hour debate about the same decision six months later. | +| "Comments get outdated" | Comments on *why* are stable. Comments on *what* get outdated — that's why you only write the former. | + +## Red Flags + +- Architectural decisions with no written rationale +- Public APIs with no documentation or types +- README that doesn't explain how to run the project +- Commented-out code instead of deletion +- TODO comments that have been there for weeks +- No ADRs in a project with significant architectural choices +- Documentation that restates the code instead of explaining intent + +## Verification + +After documenting: + +- [ ] ADRs exist for all significant architectural decisions +- [ ] README covers quick start, commands, and architecture overview +- [ ] API functions have parameter and return type documentation +- [ ] Known gotchas are documented inline where they matter +- [ ] No commented-out code remains +- [ ] Rules files (CLAUDE.md etc.) are current and accurate diff --git a/.agents/skills/documentation-writer/SKILL.md b/.agents/skills/documentation-writer/SKILL.md new file mode 100644 index 000000000..93e3fbf57 --- /dev/null +++ b/.agents/skills/documentation-writer/SKILL.md @@ -0,0 +1,45 @@ +--- +name: documentation-writer +description: 'Diátaxis Documentation Expert. An expert technical writer specializing in creating high-quality software documentation, guided by the principles and structure of the Diátaxis technical documentation authoring framework.' +--- + +# Diátaxis Documentation Expert + +You are an expert technical writer specializing in creating high-quality software documentation. +Your work is strictly guided by the principles and structure of the Diátaxis Framework (https://diataxis.fr/). + +## GUIDING PRINCIPLES + +1. **Clarity:** Write in simple, clear, and unambiguous language. +2. **Accuracy:** Ensure all information, especially code snippets and technical details, is correct and up-to-date. +3. **User-Centricity:** Always prioritize the user's goal. Every document must help a specific user achieve a specific task. +4. **Consistency:** Maintain a consistent tone, terminology, and style across all documentation. + +## YOUR TASK: The Four Document Types + +You will create documentation across the four Diátaxis quadrants. You must understand the distinct purpose of each: + +- **Tutorials:** Learning-oriented, practical steps to guide a newcomer to a successful outcome. A lesson. +- **How-to Guides:** Problem-oriented, steps to solve a specific problem. A recipe. +- **Reference:** Information-oriented, technical descriptions of machinery. A dictionary. +- **Explanation:** Understanding-oriented, clarifying a particular topic. A discussion. + +## WORKFLOW + +You will follow this process for every documentation request: + +1. **Acknowledge & Clarify:** Acknowledge my request and ask clarifying questions to fill any gaps in the information I provide. You MUST determine the following before proceeding: + - **Document Type:** (Tutorial, How-to, Reference, or Explanation) + - **Target Audience:** (e.g., novice developers, experienced sysadmins, non-technical users) + - **User's Goal:** What does the user want to achieve by reading this document? + - **Scope:** What specific topics should be included and, importantly, excluded? + +2. **Propose a Structure:** Based on the clarified information, propose a detailed outline (e.g., a table of contents with brief descriptions) for the document. Await my approval before writing the full content. + +3. **Generate Content:** Once I approve the outline, write the full documentation in well-formatted Markdown. Adhere to all guiding principles. + +## CONTEXTUAL AWARENESS + +- When I provide other markdown files, use them as context to understand the project's existing tone, style, and terminology. +- DO NOT copy content from them unless I explicitly ask you to. +- You may not consult external websites or other sources unless I provide a link and instruct you to do so. diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000..0681ce973 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,80 @@ +name: Deploy to Hetzner + +on: + push: + branches: [main] + paths-ignore: + - "*.md" + - "docs/**" + workflow_dispatch: + +env: + REGISTRY: ghcr.io + OWNER: ${{ github.repository_owner }} + IMAGE_BACKEND: nicoruedaa/olmanager/backend + IMAGE_FRONTEND: nicoruedaa/olmanager/frontend + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build and push backend + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.backend + push: true + tags: ${{ env.REGISTRY }}/${{ env.IMAGE_BACKEND }}:latest + cache-from: type=gha + cache-to: type=gha,mode=max + + - name: Build and push frontend + uses: docker/build-push-action@v6 + with: + context: . + file: Dockerfile.frontend + push: true + tags: ${{ env.REGISTRY }}/${{ env.IMAGE_FRONTEND }}:latest + build-args: | + VITE_SUPABASE_URL=https://zqvppsruobmmpssrgzbj.supabase.co + VITE_SUPABASE_PUBLISHABLE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InpxdnBwc3J1b2JtbXBzc3JnemJqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3ODA2MTk2NTAsImV4cCI6MjA5NjE5NTY1MH0.wj9n28b3N1CPJYVbMB8fPIxoEoqpETjIm8mrmi7a_qU + cache-from: type=gha + cache-to: type=gha,mode=max + + - name: Deploy to Hetzner + uses: appleboy/ssh-action@v1 + with: + host: ${{ secrets.HETZNER_HOST }} + username: ${{ secrets.HETZNER_USER }} + key: ${{ secrets.HETZNER_SSH_KEY }} + script: | + set -e + cd /opt/olmanager-server + + docker compose pull backend frontend + + docker compose up -d backend frontend + + docker image prune -f + + - name: Health check + run: | + sleep 15 + curl -f https://olmanager.nicorueda.dev/health || exit 1 \ No newline at end of file diff --git a/.gitignore b/.gitignore index e8e4b17ea..8a21484de 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,11 @@ Thumbs.db # ========================= openspec/ +# ========================= +# Player photos +# Newly downloaded photo assets we are not committing. Photos already tracked +# stay tracked (git ignore does not untrack); this only stops new ones from +# showing up as untracked clutter. +# ========================= +public/player-photos/ + diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 000000000..18c7a1ee5 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,92 @@ +# AGENTS.md — UI v2 (la única UI) + +v1 fue eliminada. No hay toggle, no hay `src/components/`, no hay `src/App.tsx`. + +--- + +## 1. Estado + +| Elemento | Estado | +|----------|--------| +| `src/components/` | ❌ Eliminado | +| `src/pages/` | ❌ Eliminado | +| `src/App.tsx` / `App.css` | ❌ Eliminado | +| `src/ui-v2/uiVersion.ts` | 🗑️ Stub (exporta "v2" fijo) | +| `src/main.tsx` | ✅ Renderiza AppV2 directo | +| Toggle v1/v2 en Config | ❌ Ya no existe funcionalmente | + +**Lo que sobrevive de v1** está en `src/ui-v2/_legacy/`. Es el código v1 original con imports convertidos, únicamente lo que los wrappers v2 necesitan para funcionar. No tocar a menos que se esté portando a v2 nativo. + +--- + +## 2. Where things live + +``` +src/ +├── main.tsx # entry point → siempre AppV2 +├── lib/ # helpers puros (movidos de @/components/) +│ ├── squad/helpers.ts # antes en components/squad/SquadTab.helpers +│ ├── home/helpers.ts +│ ├── dashboard/helpers.ts +│ └── ... +├── ui-v2/ +│ ├── AppV2.tsx # router root + update checker + UI scale + Android immersive +│ ├── _legacy/ # copias de v1 con imports convertidos +│ │ ├── components/ # ~30 subdirectorios +│ │ └── pages/ +│ ├── components/ui/ # shadcn primitives +│ ├── lib/utils.ts # cn() +│ ├── pages/ # v2 pages (SettingsV2, TeamSelectionV2) +│ └── dashboard/ +│ ├── DashboardV2.tsx # state container + tab dispatcher +│ ├── DashboardSidebarV2.tsx +│ ├── DashboardHeaderV2.tsx +│ └── tabs/ # 21 tabs nativos v2 +└── store/, services/, hooks/, api/, context/ # compartidos +``` + +--- + +## 3. Legacy wrappers que usan _legacy/ + +| Tab v2 | Importa de _legacy | +|--------|-------------------| +| NewsTabV2 | `_legacy/components/news/NewsTab` | +| SocialTabV2 | `_legacy/components/social/SocialTab` | +| PlayerProfileV2 | `_legacy/components/playerProfile/PlayerProfile` | +| TeamProfileV2 | `_legacy/components/teamProfile/TeamProfile` | +| ScheduleTabV2 | `_legacy/components/schedule/ScheduleCalendarView` | +| ScheduleTabV2 | `_legacy/components/match/DraftResultScreen` | +| ScheduleTabV2 | `_legacy/components/playoffs/PlayoffBracketBoard` | +| HomeTabV2 | `_legacy/components/NextMatchDisplay` | +| TransfersTabV2 | modals y CountryFlag desde _legacy | +| SquadTabV2, PlayersTabV2 | PlayerAvatar, ContextMenu desde _legacy | +| CompetitionsTabV2 | ScheduleCalendarView desde _legacy | +| AppV2 | FloatingBugButton, MainMenu, MatchSimulation, SettingsV2 | + +--- + +## 4. Diseño + +Tokens: zinc neutrals + **orange primary** (`#F97316`). Heading font: **Barlow Condensed** uppercase, tabular numbers. + +Layout: `` con `` + ``. + +--- + +## 5. Workflow + +```bash +npx tsc --noEmit +npm run build +npm run tauri dev +``` + +Branch: `feat/ui-v2`. Commit style: `feat(ui-v2): …`, `fix(ui-v2): …`. + +--- + +## 6. Próximos pasos (opcionales) + +- Portar los wrappers `_legacy/` a v2 nativo (NewsTab, SocialTab, PlayerProfile, TeamProfile, transfer modals) +- Separar chunks grandes (MatchSimulation, _legacy) con lazy loading diff --git a/CHAMPION_IMAGES.md b/CHAMPION_IMAGES.md deleted file mode 100644 index d949ed6e9..000000000 --- a/CHAMPION_IMAGES.md +++ /dev/null @@ -1,81 +0,0 @@ -# Champion Images — Migración a Local - -## Resumen - -Se eliminó la dependencia externa de **Data Dragon (Riot CDN)** y **CommunityDragon** para las imágenes de campeones de League of Legends. Ahora todas las imágenes se sirven desde archivos locales en `public/`. - -## Cambios Realizados - -### Assets descargados -- **172 tiles** en `public/champion-tiles/{nombre}.webp` — íconos cuadrados para listas y grids -- **172 splashes** en `public/champion-splash/{nombre}.webp` — imágenes de fondo para perfiles y páginas de campeón -- **Datos estáticos** en `data/draft/champion-list.json` — lista de campeones con key, id, name, tags para el ChampionDraft - -### Script de descarga -- `scripts/download-champion-assets.mjs` — descarga tiles, splashes y datos desde DDragon y los convierte a webp -- `npm run download:champions` — comando para ejecutar la descarga - -### Limpieza de librería -- `src/lib/championImages.ts` — se eliminaron `ddragonTileUrl()` y `ddragonSplashUrl()`, solo quedan `resolveChampionTile()` y `resolveChampionSplash()` con paths locales -- `src/lib/championImages.test.ts` — se eliminaron los tests de las funciones DDragon -- `src/lib/championIds.ts` — se agregó `yunara` al mapping (campeón custom ID 804) - -### Componentes migrados (11) - -| Componente | Cambio | -|---|---| -| `ChampionPage` | Eliminado fallback a DDragon, usa solo ruta local | -| `ChampionCard` | Eliminado fallback a DDragon | -| `ChampionsGrid` | Eliminado fallback a DDragon | -| `ChampionsTab` | Eliminado fallback a DDragon | -| `SquadRosterView` | Eliminado fallback a DDragon | -| `PlayerProfileChampionsCard` | Eliminado fallback a DDragon | -| `HomeRosterLineupCard` | Eliminado fallback a DDragon | -| `PlayerProfileHeroCard` | Eliminado fetch a DDragon para splash, usa skin 0 local | -| `ChampionDraft` | Carga datos desde `champion-list.json` local + imágenes locales | -| `LolLiveMap` | Usa imágenes locales en canvas | -| `LolMatchLive` | Usa imágenes locales | -| `render.ts` (prototype) | Usa imágenes locales en canvas | -| `panels.tsx` (prototype) | Usa imágenes locales | - -## URLs externas que siguen activas (fuera de scope) - -Estas URLs NO son imágenes de campeones — son recursos distintos que quedan para otro cambio: - -### DDragon — Items, spells y datos de simulación - -| Archivo | URL | Propósito | -|---------|-----|-----------| -| `LolMatchLive.tsx` | `ddragon.../data/en_US/champion.json` | Stats de simulación (HP, rango, ultimates) | -| `LolMatchLive.tsx` | `ddragon.../data/en_US/champion/{id}.json` | Detalle de champion para simulación | -| `LolMatchLive.tsx` | `ddragon.../img/spell/{image}.png` | Iconos de spells (summoners, ultimates) | -| `panels.tsx` | `ddragon.../img/item/3340.png` | Icono de wards (item) | -| `panels.tsx` | `ddragon.../img/spell/{icon}.png` | Iconos de summoner spells | -| `render.ts` | `ddragon.../img/spell/YorickR.png` | Icono de pet (maiden) | -| `render.ts` | `ddragon.../img/spell/IvernR.png` | Icono de pet (daisy) | -| `render.ts` | `ddragon.../img/spell/HallucinateFull.png` | Icono de pet (shaco clone) | -| `render.ts` | `ddragon.../img/spell/AnnieR.png` | Icono de pet (tibbers) | - -### CommunityDragon — Position icons y ranked crests - -| Archivo | URL | Propósito | -|---------|-----|-----------| -| `ChampionDraft.tsx` | `icon-position-*.webp` | Íconos de rol (top/jungle/mid/adc/support) | -| `ChampionsGrid.tsx` | `icon-position-*.png` | Íconos de rol | -| `ChampionsTab.tsx` | `ranked-mini-crests/*.png` | Crests de ranked (challenger/grandmaster/master) | -| `SquadRosterView.tsx` | `icon-position-*.png` | Íconos de rol | -| `YouthAcademyTab.tsx` | `icon-position-*.png` | Íconos de rol | -| `TeamProfileRosterCard.tsx` | `icon-position-*.png` | Íconos de rol | -| `TacticsTab.tsx` | `icon-position-*.png` | Íconos de rol | -| `ScoutingPlayerSearchCard.tsx` | `icon-position-*.png` | Íconos de rol | -| `PreMatchLineup.tsx` | `icon-position-*.png` | Íconos de rol | -| `TrainingTab.tsx` | `ranked-mini-crests/*.png` | Crests de ranked | -| `LolMatchLive.tsx` | `communitydragon.../currency.webp` | Icono de oro | - -## Tareas pendientes -- Verificación visual manual de tiles/splashes en todos los componentes afectados - -## Cómo regenerar los assets -```bash -npm run download:champions -``` diff --git a/data/draft/champion-list.json b/assets/draft/champion-list.json similarity index 100% rename from data/draft/champion-list.json rename to assets/draft/champion-list.json diff --git a/olm_screen.png b/assets/olm_screen.png similarity index 100% rename from olm_screen.png rename to assets/olm_screen.png diff --git a/data/draft/ai-config.json b/assets/simulation/ai-config.json similarity index 100% rename from data/draft/ai-config.json rename to assets/simulation/ai-config.json diff --git a/assets/simulation/champion-list.json b/assets/simulation/champion-list.json new file mode 100644 index 000000000..22237d3be --- /dev/null +++ b/assets/simulation/champion-list.json @@ -0,0 +1,1684 @@ +{ + "version": "16.10.1", + "champions": [ + { + "id": "Aatrox", + "key": 266, + "name": "Aatrox", + "tags": [ + "Fighter" + ], + "image": "Aatrox.png" + }, + { + "id": "Ahri", + "key": 103, + "name": "Ahri", + "tags": [ + "Mage", + "Assassin" + ], + "image": "Ahri.png" + }, + { + "id": "Akali", + "key": 84, + "name": "Akali", + "tags": [ + "Assassin" + ], + "image": "Akali.png" + }, + { + "id": "Akshan", + "key": 166, + "name": "Akshan", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Akshan.png" + }, + { + "id": "Alistar", + "key": 12, + "name": "Alistar", + "tags": [ + "Tank", + "Support" + ], + "image": "Alistar.png" + }, + { + "id": "Ambessa", + "key": 799, + "name": "Ambessa", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Ambessa.png" + }, + { + "id": "Amumu", + "key": 32, + "name": "Amumu", + "tags": [ + "Tank", + "Support" + ], + "image": "Amumu.png" + }, + { + "id": "Anivia", + "key": 34, + "name": "Anivia", + "tags": [ + "Mage" + ], + "image": "Anivia.png" + }, + { + "id": "Annie", + "key": 1, + "name": "Annie", + "tags": [ + "Mage", + "Support" + ], + "image": "Annie.png" + }, + { + "id": "Aphelios", + "key": 523, + "name": "Aphelios", + "tags": [ + "Marksman" + ], + "image": "Aphelios.png" + }, + { + "id": "Ashe", + "key": 22, + "name": "Ashe", + "tags": [ + "Marksman", + "Support" + ], + "image": "Ashe.png" + }, + { + "id": "AurelionSol", + "key": 136, + "name": "Aurelion Sol", + "tags": [ + "Mage" + ], + "image": "AurelionSol.png" + }, + { + "id": "Aurora", + "key": 893, + "name": "Aurora", + "tags": [ + "Mage", + "Assassin" + ], + "image": "Aurora.png" + }, + { + "id": "Azir", + "key": 268, + "name": "Azir", + "tags": [ + "Mage", + "Marksman" + ], + "image": "Azir.png" + }, + { + "id": "Bard", + "key": 432, + "name": "Bard", + "tags": [ + "Support", + "Mage" + ], + "image": "Bard.png" + }, + { + "id": "Belveth", + "key": 200, + "name": "Bel'Veth", + "tags": [ + "Fighter" + ], + "image": "Belveth.png" + }, + { + "id": "Blitzcrank", + "key": 53, + "name": "Blitzcrank", + "tags": [ + "Tank", + "Support" + ], + "image": "Blitzcrank.png" + }, + { + "id": "Brand", + "key": 63, + "name": "Brand", + "tags": [ + "Mage", + "Support" + ], + "image": "Brand.png" + }, + { + "id": "Braum", + "key": 201, + "name": "Braum", + "tags": [ + "Tank", + "Support" + ], + "image": "Braum.png" + }, + { + "id": "Briar", + "key": 233, + "name": "Briar", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Briar.png" + }, + { + "id": "Caitlyn", + "key": 51, + "name": "Caitlyn", + "tags": [ + "Marksman" + ], + "image": "Caitlyn.png" + }, + { + "id": "Camille", + "key": 164, + "name": "Camille", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Camille.png" + }, + { + "id": "Cassiopeia", + "key": 69, + "name": "Cassiopeia", + "tags": [ + "Mage" + ], + "image": "Cassiopeia.png" + }, + { + "id": "Chogath", + "key": 31, + "name": "Cho'Gath", + "tags": [ + "Tank", + "Mage" + ], + "image": "Chogath.png" + }, + { + "id": "Corki", + "key": 42, + "name": "Corki", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Corki.png" + }, + { + "id": "Darius", + "key": 122, + "name": "Darius", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Darius.png" + }, + { + "id": "Diana", + "key": 131, + "name": "Diana", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Diana.png" + }, + { + "id": "Draven", + "key": 119, + "name": "Draven", + "tags": [ + "Marksman" + ], + "image": "Draven.png" + }, + { + "id": "DrMundo", + "key": 36, + "name": "Dr. Mundo", + "tags": [ + "Tank", + "Fighter" + ], + "image": "DrMundo.png" + }, + { + "id": "Ekko", + "key": 245, + "name": "Ekko", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Ekko.png" + }, + { + "id": "Elise", + "key": 60, + "name": "Elise", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Elise.png" + }, + { + "id": "Evelynn", + "key": 28, + "name": "Evelynn", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Evelynn.png" + }, + { + "id": "Ezreal", + "key": 81, + "name": "Ezreal", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Ezreal.png" + }, + { + "id": "Fiddlesticks", + "key": 9, + "name": "Fiddlesticks", + "tags": [ + "Mage", + "Support" + ], + "image": "Fiddlesticks.png" + }, + { + "id": "Fiora", + "key": 114, + "name": "Fiora", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Fiora.png" + }, + { + "id": "Fizz", + "key": 105, + "name": "Fizz", + "tags": [ + "Assassin", + "Fighter" + ], + "image": "Fizz.png" + }, + { + "id": "Galio", + "key": 3, + "name": "Galio", + "tags": [ + "Tank", + "Mage" + ], + "image": "Galio.png" + }, + { + "id": "Gangplank", + "key": 41, + "name": "Gangplank", + "tags": [ + "Fighter" + ], + "image": "Gangplank.png" + }, + { + "id": "Garen", + "key": 86, + "name": "Garen", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Garen.png" + }, + { + "id": "Gnar", + "key": 150, + "name": "Gnar", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Gnar.png" + }, + { + "id": "Gragas", + "key": 79, + "name": "Gragas", + "tags": [ + "Fighter", + "Mage" + ], + "image": "Gragas.png" + }, + { + "id": "Graves", + "key": 104, + "name": "Graves", + "tags": [ + "Marksman" + ], + "image": "Graves.png" + }, + { + "id": "Gwen", + "key": 887, + "name": "Gwen", + "tags": [ + "Fighter" + ], + "image": "Gwen.png" + }, + { + "id": "Hecarim", + "key": 120, + "name": "Hecarim", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Hecarim.png" + }, + { + "id": "Heimerdinger", + "key": 74, + "name": "Heimerdinger", + "tags": [ + "Mage", + "Support" + ], + "image": "Heimerdinger.png" + }, + { + "id": "Hwei", + "key": 910, + "name": "Hwei", + "tags": [ + "Mage", + "Support" + ], + "image": "Hwei.png" + }, + { + "id": "Illaoi", + "key": 420, + "name": "Illaoi", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Illaoi.png" + }, + { + "id": "Irelia", + "key": 39, + "name": "Irelia", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Irelia.png" + }, + { + "id": "Ivern", + "key": 427, + "name": "Ivern", + "tags": [ + "Support", + "Mage" + ], + "image": "Ivern.png" + }, + { + "id": "Janna", + "key": 40, + "name": "Janna", + "tags": [ + "Support", + "Mage" + ], + "image": "Janna.png" + }, + { + "id": "JarvanIV", + "key": 59, + "name": "Jarvan IV", + "tags": [ + "Fighter", + "Tank" + ], + "image": "JarvanIV.png" + }, + { + "id": "Jax", + "key": 24, + "name": "Jax", + "tags": [ + "Fighter" + ], + "image": "Jax.png" + }, + { + "id": "Jayce", + "key": 126, + "name": "Jayce", + "tags": [ + "Fighter", + "Marksman" + ], + "image": "Jayce.png" + }, + { + "id": "Jhin", + "key": 202, + "name": "Jhin", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Jhin.png" + }, + { + "id": "Jinx", + "key": 222, + "name": "Jinx", + "tags": [ + "Marksman" + ], + "image": "Jinx.png" + }, + { + "id": "Kaisa", + "key": 145, + "name": "Kai'Sa", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Kaisa.png" + }, + { + "id": "Kalista", + "key": 429, + "name": "Kalista", + "tags": [ + "Marksman" + ], + "image": "Kalista.png" + }, + { + "id": "Karma", + "key": 43, + "name": "Karma", + "tags": [ + "Mage", + "Support" + ], + "image": "Karma.png" + }, + { + "id": "Karthus", + "key": 30, + "name": "Karthus", + "tags": [ + "Mage" + ], + "image": "Karthus.png" + }, + { + "id": "Kassadin", + "key": 38, + "name": "Kassadin", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Kassadin.png" + }, + { + "id": "Katarina", + "key": 55, + "name": "Katarina", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Katarina.png" + }, + { + "id": "Kayle", + "key": 10, + "name": "Kayle", + "tags": [ + "Mage", + "Marksman" + ], + "image": "Kayle.png" + }, + { + "id": "Kayn", + "key": 141, + "name": "Kayn", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Kayn.png" + }, + { + "id": "Kennen", + "key": 85, + "name": "Kennen", + "tags": [ + "Mage" + ], + "image": "Kennen.png" + }, + { + "id": "Khazix", + "key": 121, + "name": "Kha'Zix", + "tags": [ + "Assassin" + ], + "image": "Khazix.png" + }, + { + "id": "Kindred", + "key": 203, + "name": "Kindred", + "tags": [ + "Marksman" + ], + "image": "Kindred.png" + }, + { + "id": "Kled", + "key": 240, + "name": "Kled", + "tags": [ + "Fighter" + ], + "image": "Kled.png" + }, + { + "id": "KogMaw", + "key": 96, + "name": "Kog'Maw", + "tags": [ + "Marksman", + "Mage" + ], + "image": "KogMaw.png" + }, + { + "id": "KSante", + "key": 897, + "name": "K'Sante", + "tags": [ + "Tank", + "Fighter" + ], + "image": "KSante.png" + }, + { + "id": "Leblanc", + "key": 7, + "name": "LeBlanc", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Leblanc.png" + }, + { + "id": "LeeSin", + "key": 64, + "name": "Lee Sin", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "LeeSin.png" + }, + { + "id": "Leona", + "key": 89, + "name": "Leona", + "tags": [ + "Tank", + "Support" + ], + "image": "Leona.png" + }, + { + "id": "Lillia", + "key": 876, + "name": "Lillia", + "tags": [ + "Fighter", + "Mage" + ], + "image": "Lillia.png" + }, + { + "id": "Lissandra", + "key": 127, + "name": "Lissandra", + "tags": [ + "Mage" + ], + "image": "Lissandra.png" + }, + { + "id": "Lucian", + "key": 236, + "name": "Lucian", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Lucian.png" + }, + { + "id": "Lulu", + "key": 117, + "name": "Lulu", + "tags": [ + "Support", + "Mage" + ], + "image": "Lulu.png" + }, + { + "id": "Lux", + "key": 99, + "name": "Lux", + "tags": [ + "Mage", + "Support" + ], + "image": "Lux.png" + }, + { + "id": "Malphite", + "key": 54, + "name": "Malphite", + "tags": [ + "Tank", + "Mage" + ], + "image": "Malphite.png" + }, + { + "id": "Malzahar", + "key": 90, + "name": "Malzahar", + "tags": [ + "Mage" + ], + "image": "Malzahar.png" + }, + { + "id": "Maokai", + "key": 57, + "name": "Maokai", + "tags": [ + "Tank", + "Support" + ], + "image": "Maokai.png" + }, + { + "id": "MasterYi", + "key": 11, + "name": "Master Yi", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "MasterYi.png" + }, + { + "id": "Mel", + "key": 800, + "name": "Mel", + "tags": [ + "Mage", + "Support" + ], + "image": "Mel.png" + }, + { + "id": "Milio", + "key": 902, + "name": "Milio", + "tags": [ + "Support", + "Mage" + ], + "image": "Milio.png" + }, + { + "id": "MissFortune", + "key": 21, + "name": "Miss Fortune", + "tags": [ + "Marksman", + "Mage" + ], + "image": "MissFortune.png" + }, + { + "id": "MonkeyKing", + "key": 62, + "name": "Wukong", + "tags": [ + "Fighter", + "Tank" + ], + "image": "MonkeyKing.png" + }, + { + "id": "Mordekaiser", + "key": 82, + "name": "Mordekaiser", + "tags": [ + "Fighter", + "Mage" + ], + "image": "Mordekaiser.png" + }, + { + "id": "Morgana", + "key": 25, + "name": "Morgana", + "tags": [ + "Support", + "Mage" + ], + "image": "Morgana.png" + }, + { + "id": "Naafiri", + "key": 950, + "name": "Naafiri", + "tags": [ + "Assassin", + "Fighter" + ], + "image": "Naafiri.png" + }, + { + "id": "Nami", + "key": 267, + "name": "Nami", + "tags": [ + "Support", + "Mage" + ], + "image": "Nami.png" + }, + { + "id": "Nasus", + "key": 75, + "name": "Nasus", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Nasus.png" + }, + { + "id": "Nautilus", + "key": 111, + "name": "Nautilus", + "tags": [ + "Tank", + "Support" + ], + "image": "Nautilus.png" + }, + { + "id": "Neeko", + "key": 518, + "name": "Neeko", + "tags": [ + "Mage", + "Support" + ], + "image": "Neeko.png" + }, + { + "id": "Nidalee", + "key": 76, + "name": "Nidalee", + "tags": [ + "Assassin", + "Mage" + ], + "image": "Nidalee.png" + }, + { + "id": "Nilah", + "key": 895, + "name": "Nilah", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Nilah.png" + }, + { + "id": "Nocturne", + "key": 56, + "name": "Nocturne", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Nocturne.png" + }, + { + "id": "Nunu", + "key": 20, + "name": "Nunu & Willump", + "tags": [ + "Tank", + "Mage" + ], + "image": "Nunu.png" + }, + { + "id": "Olaf", + "key": 2, + "name": "Olaf", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Olaf.png" + }, + { + "id": "Orianna", + "key": 61, + "name": "Orianna", + "tags": [ + "Mage", + "Support" + ], + "image": "Orianna.png" + }, + { + "id": "Ornn", + "key": 516, + "name": "Ornn", + "tags": [ + "Tank" + ], + "image": "Ornn.png" + }, + { + "id": "Pantheon", + "key": 80, + "name": "Pantheon", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Pantheon.png" + }, + { + "id": "Poppy", + "key": 78, + "name": "Poppy", + "tags": [ + "Tank", + "Fighter" + ], + "image": "Poppy.png" + }, + { + "id": "Pyke", + "key": 555, + "name": "Pyke", + "tags": [ + "Support", + "Assassin" + ], + "image": "Pyke.png" + }, + { + "id": "Qiyana", + "key": 246, + "name": "Qiyana", + "tags": [ + "Assassin" + ], + "image": "Qiyana.png" + }, + { + "id": "Quinn", + "key": 133, + "name": "Quinn", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Quinn.png" + }, + { + "id": "Rakan", + "key": 497, + "name": "Rakan", + "tags": [ + "Support" + ], + "image": "Rakan.png" + }, + { + "id": "Rammus", + "key": 33, + "name": "Rammus", + "tags": [ + "Tank" + ], + "image": "Rammus.png" + }, + { + "id": "RekSai", + "key": 421, + "name": "Rek'Sai", + "tags": [ + "Fighter", + "Tank" + ], + "image": "RekSai.png" + }, + { + "id": "Rell", + "key": 526, + "name": "Rell", + "tags": [ + "Tank", + "Support" + ], + "image": "Rell.png" + }, + { + "id": "Renata", + "key": 888, + "name": "Renata Glasc", + "tags": [ + "Support", + "Mage" + ], + "image": "Renata.png" + }, + { + "id": "Renekton", + "key": 58, + "name": "Renekton", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Renekton.png" + }, + { + "id": "Rengar", + "key": 107, + "name": "Rengar", + "tags": [ + "Assassin", + "Fighter" + ], + "image": "Rengar.png" + }, + { + "id": "Riven", + "key": 92, + "name": "Riven", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Riven.png" + }, + { + "id": "Rumble", + "key": 68, + "name": "Rumble", + "tags": [ + "Fighter", + "Mage" + ], + "image": "Rumble.png" + }, + { + "id": "Ryze", + "key": 13, + "name": "Ryze", + "tags": [ + "Mage" + ], + "image": "Ryze.png" + }, + { + "id": "Samira", + "key": 360, + "name": "Samira", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Samira.png" + }, + { + "id": "Sejuani", + "key": 113, + "name": "Sejuani", + "tags": [ + "Tank" + ], + "image": "Sejuani.png" + }, + { + "id": "Senna", + "key": 235, + "name": "Senna", + "tags": [ + "Support", + "Marksman" + ], + "image": "Senna.png" + }, + { + "id": "Seraphine", + "key": 147, + "name": "Seraphine", + "tags": [ + "Support", + "Mage" + ], + "image": "Seraphine.png" + }, + { + "id": "Sett", + "key": 875, + "name": "Sett", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Sett.png" + }, + { + "id": "Shaco", + "key": 35, + "name": "Shaco", + "tags": [ + "Assassin" + ], + "image": "Shaco.png" + }, + { + "id": "Shen", + "key": 98, + "name": "Shen", + "tags": [ + "Tank" + ], + "image": "Shen.png" + }, + { + "id": "Shyvana", + "key": 102, + "name": "Shyvana", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Shyvana.png" + }, + { + "id": "Singed", + "key": 27, + "name": "Singed", + "tags": [ + "Tank", + "Mage" + ], + "image": "Singed.png" + }, + { + "id": "Sion", + "key": 14, + "name": "Sion", + "tags": [ + "Tank", + "Fighter" + ], + "image": "Sion.png" + }, + { + "id": "Sivir", + "key": 15, + "name": "Sivir", + "tags": [ + "Marksman" + ], + "image": "Sivir.png" + }, + { + "id": "Skarner", + "key": 72, + "name": "Skarner", + "tags": [ + "Tank", + "Fighter" + ], + "image": "Skarner.png" + }, + { + "id": "Smolder", + "key": 901, + "name": "Smolder", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Smolder.png" + }, + { + "id": "Sona", + "key": 37, + "name": "Sona", + "tags": [ + "Support", + "Mage" + ], + "image": "Sona.png" + }, + { + "id": "Soraka", + "key": 16, + "name": "Soraka", + "tags": [ + "Support", + "Mage" + ], + "image": "Soraka.png" + }, + { + "id": "Swain", + "key": 50, + "name": "Swain", + "tags": [ + "Mage", + "Support" + ], + "image": "Swain.png" + }, + { + "id": "Sylas", + "key": 517, + "name": "Sylas", + "tags": [ + "Mage", + "Assassin" + ], + "image": "Sylas.png" + }, + { + "id": "Syndra", + "key": 134, + "name": "Syndra", + "tags": [ + "Mage" + ], + "image": "Syndra.png" + }, + { + "id": "TahmKench", + "key": 223, + "name": "Tahm Kench", + "tags": [ + "Tank", + "Support" + ], + "image": "TahmKench.png" + }, + { + "id": "Taliyah", + "key": 163, + "name": "Taliyah", + "tags": [ + "Mage", + "Support" + ], + "image": "Taliyah.png" + }, + { + "id": "Talon", + "key": 91, + "name": "Talon", + "tags": [ + "Assassin" + ], + "image": "Talon.png" + }, + { + "id": "Taric", + "key": 44, + "name": "Taric", + "tags": [ + "Support", + "Tank" + ], + "image": "Taric.png" + }, + { + "id": "Teemo", + "key": 17, + "name": "Teemo", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Teemo.png" + }, + { + "id": "Thresh", + "key": 412, + "name": "Thresh", + "tags": [ + "Support", + "Tank" + ], + "image": "Thresh.png" + }, + { + "id": "Tristana", + "key": 18, + "name": "Tristana", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Tristana.png" + }, + { + "id": "Trundle", + "key": 48, + "name": "Trundle", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Trundle.png" + }, + { + "id": "Tryndamere", + "key": 23, + "name": "Tryndamere", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Tryndamere.png" + }, + { + "id": "TwistedFate", + "key": 4, + "name": "Twisted Fate", + "tags": [ + "Mage", + "Marksman" + ], + "image": "TwistedFate.png" + }, + { + "id": "Twitch", + "key": 29, + "name": "Twitch", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Twitch.png" + }, + { + "id": "Udyr", + "key": 77, + "name": "Udyr", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Udyr.png" + }, + { + "id": "Urgot", + "key": 6, + "name": "Urgot", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Urgot.png" + }, + { + "id": "Varus", + "key": 110, + "name": "Varus", + "tags": [ + "Marksman", + "Mage" + ], + "image": "Varus.png" + }, + { + "id": "Vayne", + "key": 67, + "name": "Vayne", + "tags": [ + "Marksman", + "Assassin" + ], + "image": "Vayne.png" + }, + { + "id": "Veigar", + "key": 45, + "name": "Veigar", + "tags": [ + "Mage" + ], + "image": "Veigar.png" + }, + { + "id": "Velkoz", + "key": 161, + "name": "Vel'Koz", + "tags": [ + "Mage", + "Support" + ], + "image": "Velkoz.png" + }, + { + "id": "Vex", + "key": 711, + "name": "Vex", + "tags": [ + "Mage" + ], + "image": "Vex.png" + }, + { + "id": "Vi", + "key": 254, + "name": "Vi", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Vi.png" + }, + { + "id": "Viego", + "key": 234, + "name": "Viego", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Viego.png" + }, + { + "id": "Viktor", + "key": 112, + "name": "Viktor", + "tags": [ + "Mage" + ], + "image": "Viktor.png" + }, + { + "id": "Vladimir", + "key": 8, + "name": "Vladimir", + "tags": [ + "Mage", + "Fighter" + ], + "image": "Vladimir.png" + }, + { + "id": "Volibear", + "key": 106, + "name": "Volibear", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Volibear.png" + }, + { + "id": "Warwick", + "key": 19, + "name": "Warwick", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Warwick.png" + }, + { + "id": "Xayah", + "key": 498, + "name": "Xayah", + "tags": [ + "Marksman" + ], + "image": "Xayah.png" + }, + { + "id": "Xerath", + "key": 101, + "name": "Xerath", + "tags": [ + "Mage", + "Support" + ], + "image": "Xerath.png" + }, + { + "id": "XinZhao", + "key": 5, + "name": "Xin Zhao", + "tags": [ + "Fighter", + "Tank" + ], + "image": "XinZhao.png" + }, + { + "id": "Yasuo", + "key": 157, + "name": "Yasuo", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Yasuo.png" + }, + { + "id": "Yone", + "key": 777, + "name": "Yone", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Yone.png" + }, + { + "id": "Yorick", + "key": 83, + "name": "Yorick", + "tags": [ + "Fighter", + "Tank" + ], + "image": "Yorick.png" + }, + { + "id": "Yunara", + "key": 804, + "name": "Yunara", + "tags": [ + "Mage", + "Assassin" + ], + "image": "Yunara.png" + }, + { + "id": "Yuumi", + "key": 350, + "name": "Yuumi", + "tags": [ + "Support", + "Mage" + ], + "image": "Yuumi.png" + }, + { + "id": "Zaahen", + "key": 904, + "name": "Zaahen", + "tags": [ + "Fighter", + "Assassin" + ], + "image": "Zaahen.png" + }, + { + "id": "Zac", + "key": 154, + "name": "Zac", + "tags": [ + "Tank", + "Fighter" + ], + "image": "Zac.png" + }, + { + "id": "Zed", + "key": 238, + "name": "Zed", + "tags": [ + "Assassin" + ], + "image": "Zed.png" + }, + { + "id": "Zeri", + "key": 221, + "name": "Zeri", + "tags": [ + "Marksman" + ], + "image": "Zeri.png" + }, + { + "id": "Ziggs", + "key": 115, + "name": "Ziggs", + "tags": [ + "Mage" + ], + "image": "Ziggs.png" + }, + { + "id": "Zilean", + "key": 26, + "name": "Zilean", + "tags": [ + "Support", + "Mage" + ], + "image": "Zilean.png" + }, + { + "id": "Zoe", + "key": 142, + "name": "Zoe", + "tags": [ + "Mage" + ], + "image": "Zoe.png" + }, + { + "id": "Zyra", + "key": 143, + "name": "Zyra", + "tags": [ + "Mage", + "Support" + ], + "image": "Zyra.png" + } + ] +} \ No newline at end of file diff --git a/data/draft/champion-timings.json b/assets/simulation/champion-timings.json similarity index 100% rename from data/draft/champion-timings.json rename to assets/simulation/champion-timings.json diff --git a/data/draft/champions.json b/assets/simulation/champions.json similarity index 100% rename from data/draft/champions.json rename to assets/simulation/champions.json diff --git a/components.json b/components.json new file mode 100644 index 000000000..b3571b018 --- /dev/null +++ b/components.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "base-nova", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "", + "css": "src/App.css", + "baseColor": "zinc", + "cssVariables": true, + "prefix": "" + }, + "iconLibrary": "lucide", + "rtl": false, + "aliases": { + "components": "@/ui-v2/components", + "utils": "@/ui-v2/lib/utils", + "ui": "@/ui-v2/components/ui", + "lib": "@/ui-v2/lib", + "hooks": "@/ui-v2/hooks" + }, + "menuColor": "default", + "menuAccent": "subtle", + "registries": {} +} diff --git a/data/competitions/al-l/manifest.json b/data/competitions/al-l/manifest.json new file mode 100644 index 000000000..707309f68 --- /dev/null +++ b/data/competitions/al-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "al-l", + "name": "AL-L", + "full_name": "AL Legacy", + "region": "AL-L", + "country": "SA", + "tier": 2, + "logo": null, + "teams_file": "teams/al-l_teams.json", + "players_file": "players/al-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/al/manifest.json b/data/competitions/al/manifest.json new file mode 100644 index 000000000..4af9ed695 --- /dev/null +++ b/data/competitions/al/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "al", + "name": "AL", + "full_name": "Arabian League", + "region": "AL", + "country": "SA", + "tier": 2, + "logo": "/competitions-icons/eed3791d2ec9e36b.webp", + "teams_file": "teams/al_teams.json", + "players_file": "players/al_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/cblol-l/manifest.json b/data/competitions/cblol-l/manifest.json new file mode 100644 index 000000000..2bfef1eaf --- /dev/null +++ b/data/competitions/cblol-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "cblol-l", + "name": "CBLOL-L", + "full_name": "CBLOL-Legacy", + "region": "CBLOL-L", + "country": "BR", + "tier": 1, + "logo": "/competitions-icons/1a6d3110c773d644.webp", + "teams_file": "teams/cblol-l_teams.json", + "players_file": "players/cblol-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/cblol/manifest.json b/data/competitions/cblol/manifest.json index c23de6d06..0248318d3 100644 --- a/data/competitions/cblol/manifest.json +++ b/data/competitions/cblol/manifest.json @@ -5,14 +5,11 @@ "region": "CBLOL", "country": "BR", "tier": 1, - "logo": "/competition-icons/1778444782039_bhxoln03s1k.webp", + "logo": "/competitions-icons/e143fd7de34abe1d.webp", "teams_file": "teams/cblol_teams.json", "players_file": "players/cblol_players.json", - "staff_file": "staffs/cblol_staffs.json", "schedule": { "format": "double_round_robin", - "team_count": 8, - "preseason_friendlies": 3, "splits": [ { "name": "Split 1", @@ -40,6 +37,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 8, + "preseason_friendlies": 3 + }, + "staff_file": "staffs/cblol_staffs.json" } diff --git a/data/competitions/cd/manifest.json b/data/competitions/cd/manifest.json new file mode 100644 index 000000000..734ceb079 --- /dev/null +++ b/data/competitions/cd/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "cd", + "name": "CD", + "full_name": "Circuito Desafiante", + "region": "CD", + "country": "BR", + "tier": 2, + "logo": "/competitions-icons/c6ba3b0c888e1524.webp", + "teams_file": "teams/cd_teams.json", + "players_file": "players/cd_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/ebl/manifest.json b/data/competitions/ebl/manifest.json new file mode 100644 index 000000000..75c8ec1d0 --- /dev/null +++ b/data/competitions/ebl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "ebl", + "name": "EBL", + "full_name": "Esports Balkan League ", + "region": "EBL", + "country": "RS", + "tier": 2, + "logo": "/competitions-icons/ed414dcd2fcada06.webp", + "teams_file": "teams/ebl_teams.json", + "players_file": "players/ebl_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/eu-lcs-l/manifest.json b/data/competitions/eu-lcs-l/manifest.json new file mode 100644 index 000000000..eff60eda1 --- /dev/null +++ b/data/competitions/eu-lcs-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "eu-lcs-l", + "name": "EU-LCS-L", + "full_name": "EU-LCS-Legacy", + "region": "EU-LCS-L", + "country": null, + "tier": 1, + "logo": "/competitions-icons/1cd42c582587d057.webp", + "teams_file": "teams/eu-lcs-l_teams.json", + "players_file": "players/eu-lcs-l_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/hll/manifest.json b/data/competitions/hll/manifest.json new file mode 100644 index 000000000..ef340d57d --- /dev/null +++ b/data/competitions/hll/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "hll", + "name": "HLL", + "full_name": "Hellenic Legends League", + "region": "HLL", + "country": "GR", + "tier": 2, + "logo": "/competitions-icons/f323a0e14363fd06.png", + "teams_file": "teams/hll_teams.json", + "players_file": "players/hll_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 4, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/hm/manifest.json b/data/competitions/hm/manifest.json new file mode 100644 index 000000000..3173329e8 --- /dev/null +++ b/data/competitions/hm/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "hm", + "name": "HM", + "full_name": "Hitpoint Masters", + "region": "HM", + "country": "CZ", + "tier": 2, + "logo": "/competitions-icons/200cbec793f7f67c.png", + "teams_file": "teams/hm_teams.json", + "players_file": "players/hm_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/lck-l/manifest.json b/data/competitions/lck-l/manifest.json new file mode 100644 index 000000000..d08e34e5b --- /dev/null +++ b/data/competitions/lck-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "lck-l", + "name": "LCK-L", + "full_name": "LCK LEGACY", + "region": "LCK-L", + "country": "KR", + "tier": 1, + "logo": "/competitions-icons/ecd61ca62145e68e.webp", + "teams_file": "teams/lck-l_teams.json", + "players_file": "players/lck-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/lck/manifest.json b/data/competitions/lck/manifest.json index 0f8de26b6..10e8b345d 100644 --- a/data/competitions/lck/manifest.json +++ b/data/competitions/lck/manifest.json @@ -5,14 +5,11 @@ "region": "LCK", "country": "KR", "tier": 1, - "logo": "/competition-icons/1778445082142_hcs3cdy9h7p.webp", + "logo": "/competitions-icons/b5b07392ac1b4633.webp", "teams_file": "teams/lck_teams.json", "players_file": "players/lck_players.json", - "staff_file": "staffs/lck_staffs.json", "schedule": { "format": "double_round_robin", - "team_count": 10, - "preseason_friendlies": 3, "splits": [ { "name": "Spring", @@ -40,6 +37,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 10, + "preseason_friendlies": 3 + }, + "staff_file": "staffs/lck_staffs.json" } diff --git a/data/competitions/lck_cl/manifest.json b/data/competitions/lck_cl/manifest.json new file mode 100644 index 000000000..4a806eb38 --- /dev/null +++ b/data/competitions/lck_cl/manifest.json @@ -0,0 +1,28 @@ +{ + "id": "lck-cl", + "name": "LCK CL", + "full_name": "LCK Challenger League Series", + "region": "LCK CL", + "country": "South Korea", + "tier": 2, + "logo": "/competitions-icons/lck-cl.webp", + "teams_file": "teams/lck_cl_teams.json", + "players_file": "players/lck_cl_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 3, + "splits": [ + { + "name": "Spring", + "best_of": 1, + "playoffs": null, + "season_start": { + "month": 1, + "day": 1 + }, + "superweek_offsets": [] + } + ] + } +} \ No newline at end of file diff --git a/data/competitions/lckcl/manifest.json b/data/competitions/lckcl/manifest.json new file mode 100644 index 000000000..256b9373b --- /dev/null +++ b/data/competitions/lckcl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lckcl", + "name": "LCKCL", + "full_name": "LCK Challenger League Series", + "region": "LCKCL", + "country": "KR", + "tier": 2, + "logo": "/competitions-icons/83c1c207b2dfde6b.webp", + "teams_file": "teams/lckcl_teams.json", + "players_file": "players/lckcl_players.json", + "schedule": { + "format": "unknown", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/lckcl_staffs.json" +} diff --git a/data/competitions/lcp/manifest.json b/data/competitions/lcp/manifest.json index 377a79d1b..9c424e778 100644 --- a/data/competitions/lcp/manifest.json +++ b/data/competitions/lcp/manifest.json @@ -5,14 +5,11 @@ "region": "LCP", "country": "AP", "tier": 1, - "logo": "/competition-icons/lcp.webp", + "logo": "/competitions-icons/lcp.webp", "teams_file": "teams/lcp_teams.json", "players_file": "players/lcp_players.json", - "staff_file": "staffs/lcp_staffs.json", "schedule": { "format": "double_round_robin", - "team_count": 8, - "preseason_friendlies": 3, "splits": [ { "name": "Spring", @@ -40,6 +37,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 8, + "preseason_friendlies": 3 + }, + "staff_file": "staffs/lcp_staffs.json" } diff --git a/data/competitions/lcs/manifest.json b/data/competitions/lcs/manifest.json index 01a51e025..657d54f96 100644 --- a/data/competitions/lcs/manifest.json +++ b/data/competitions/lcs/manifest.json @@ -5,14 +5,11 @@ "region": "LCS", "country": "NA", "tier": 1, - "logo": "/competition-icons/lcs.webp", + "logo": "/competitions-icons/lcs.webp", "teams_file": "teams/lcs_teams.json", "players_file": "players/lcs_players.json", - "staff_file": "staffs/lcs_staffs.json", "schedule": { "format": "double_round_robin", - "team_count": 8, - "preseason_friendlies": 3, "splits": [ { "name": "Spring", @@ -40,6 +37,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 8, + "preseason_friendlies": 3 + }, + "staff_file": "staffs/lcs_staffs.json" } diff --git a/data/competitions/ldl/manifest.json b/data/competitions/ldl/manifest.json new file mode 100644 index 000000000..bd8bada89 --- /dev/null +++ b/data/competitions/ldl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "ldl", + "name": "LDL", + "full_name": "League of Legends Development League ", + "region": "LDL", + "country": "CN", + "tier": 2, + "logo": "/competitions-icons/43a743c0356ae84d.webp", + "teams_file": "teams/ldl_teams.json", + "players_file": "players/ldl_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/lec/manifest.json b/data/competitions/lec/manifest.json index a9a988fcb..e584ca311 100644 --- a/data/competitions/lec/manifest.json +++ b/data/competitions/lec/manifest.json @@ -5,14 +5,11 @@ "region": "LEC", "country": "EU", "tier": 1, - "logo": "/competition-icons/lec.webp", + "logo": "/competitions-icons/lec.webp", "teams_file": "teams/lec_teams.json", "players_file": "players/lec_players.json", - "staff_file": "staffs/lec_staffs.json", "schedule": { "format": "single_round_robin", - "team_count": 10, - "preseason_friendlies": 3, "splits": [ { "name": "Winter", @@ -44,6 +41,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 10, + "preseason_friendlies": 3 + }, + "staff_file": "staffs/lec_staffs.json" } diff --git a/data/competitions/les/manifest.json b/data/competitions/les/manifest.json new file mode 100644 index 000000000..6a516f2ff --- /dev/null +++ b/data/competitions/les/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "les", + "name": "LES", + "full_name": "Liga Española de League of Legends", + "region": "LES", + "country": "ES", + "tier": 2, + "logo": "/competitions-icons/c5a06181749cd742.webp", + "teams_file": "teams/les_teams.json", + "players_file": "players/les_players.json", + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/les_staffs.json" +} diff --git a/data/competitions/lfl-l/manifest.json b/data/competitions/lfl-l/manifest.json new file mode 100644 index 000000000..3b74e1b10 --- /dev/null +++ b/data/competitions/lfl-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "lfl-l", + "name": "LFL-L", + "full_name": "LFL Legacy", + "region": "LFL-L", + "country": "FR", + "tier": 2, + "logo": null, + "teams_file": "teams/lfl-l_teams.json", + "players_file": "players/lfl-l_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 20, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true, + "staff_file": "staffs/lfl-l_staffs.json" +} diff --git a/data/competitions/lfl/manifest.json b/data/competitions/lfl/manifest.json new file mode 100644 index 000000000..ffe123ba5 --- /dev/null +++ b/data/competitions/lfl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lfl", + "name": "LFL", + "full_name": "La Ligue Française de League of Legends", + "region": "LFL", + "country": "FR", + "tier": 2, + "logo": "/competitions-icons/82c14bb68fd59053.webp", + "teams_file": "teams/lfl_teams.json", + "players_file": "players/lfl_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/lfl_staffs.json" +} diff --git a/data/competitions/lit/manifest.json b/data/competitions/lit/manifest.json new file mode 100644 index 000000000..1c73b68a0 --- /dev/null +++ b/data/competitions/lit/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lit", + "name": "LIT", + "full_name": "League of Legends Italian Tournament", + "region": "LIT", + "country": "IT", + "tier": 2, + "logo": "/competitions-icons/6410084ddd2a75e5.webp", + "teams_file": "teams/lit_teams.json", + "players_file": "players/lit_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/ljl-l/manifest.json b/data/competitions/ljl-l/manifest.json new file mode 100644 index 000000000..9560f1b50 --- /dev/null +++ b/data/competitions/ljl-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "ljl-l", + "name": "LJL-L", + "full_name": "LJL Legacy", + "region": "LJL-L", + "country": "JP", + "tier": 2, + "logo": null, + "teams_file": "teams/ljl-l_teams.json", + "players_file": "players/ljl-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/ljl/manifest.json b/data/competitions/ljl/manifest.json new file mode 100644 index 000000000..a5482e7e0 --- /dev/null +++ b/data/competitions/ljl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "ljl", + "name": "LJL", + "full_name": "Japan's professional League of Legends league", + "region": "LJL", + "country": "JP", + "tier": 2, + "logo": "/competitions-icons/0422685ddf60c635.webp", + "teams_file": "teams/ljl_teams.json", + "players_file": "players/ljl_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/lla-l/manifest.json b/data/competitions/lla-l/manifest.json new file mode 100644 index 000000000..b13c971de --- /dev/null +++ b/data/competitions/lla-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "lla-l", + "name": "LLA-L", + "full_name": "LLA-LEGACY", + "region": "LLA-L", + "country": "CL", + "tier": 1, + "logo": "/competitions-icons/aed4e4a1eabca6a5.webp", + "teams_file": "teams/lla-l_teams.json", + "players_file": "players/lla-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/lms-l/manifest.json b/data/competitions/lms-l/manifest.json new file mode 100644 index 000000000..08ff8d6d0 --- /dev/null +++ b/data/competitions/lms-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "lms-l", + "name": "LMS-L", + "full_name": "LMS-LEGACY", + "region": "LMS-L", + "country": "LMS", + "tier": 1, + "logo": "/competitions-icons/b3a4ae63f06967cf.png", + "teams_file": "teams/lms-l_teams.json", + "players_file": "players/lms-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/lpl-l/manifest.json b/data/competitions/lpl-l/manifest.json new file mode 100644 index 000000000..6533cf78f --- /dev/null +++ b/data/competitions/lpl-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "lpl-l", + "name": "LPL-L", + "full_name": "LPL LEGACY", + "region": "LPL-L", + "country": "CN", + "tier": 1, + "logo": "/competitions-icons/8b31482180e238d5.webp", + "teams_file": "teams/lpl-l_teams.json", + "players_file": "players/lpl-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/lpl/manifest.json b/data/competitions/lpl/manifest.json index 753d1b847..1d68e1402 100644 --- a/data/competitions/lpl/manifest.json +++ b/data/competitions/lpl/manifest.json @@ -5,14 +5,11 @@ "region": "LPL", "country": "CN", "tier": 1, - "logo": "/competition-icons/1778444764071_lzoz5h1zkl.webp", + "logo": "/competitions-icons/ccbcd26f2b1fb07b.webp", "teams_file": "teams/lpl_teams.json", "players_file": "players/lpl_players.json", - "staff_file": "staffs/lpl_staffs.json", "schedule": { "format": "single_round_robin", - "team_count": 14, - "preseason_friendlies": 0, "splits": [ { "name": "Spring", @@ -40,6 +37,9 @@ }, "superweek_offsets": [] } - ] - } + ], + "team_count": 14, + "preseason_friendlies": 0 + }, + "staff_file": "staffs/lpl_staffs.json" } diff --git a/data/competitions/lplol/manifest.json b/data/competitions/lplol/manifest.json new file mode 100644 index 000000000..b04bff26f --- /dev/null +++ b/data/competitions/lplol/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lplol", + "name": "LPLOL", + "full_name": "Liga Portuguesa de League of Legends", + "region": "LPLOL", + "country": "PT", + "tier": 2, + "logo": "/competitions-icons/0a7b6825e1cece7c.webp", + "teams_file": "teams/lplol_teams.json", + "players_file": "players/lplol_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 12, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/lrn/manifest.json b/data/competitions/lrn/manifest.json new file mode 100644 index 000000000..b22cf75a5 --- /dev/null +++ b/data/competitions/lrn/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lrn", + "name": "LRN", + "full_name": "Liga Regional Norte", + "region": "LRN", + "country": "MX", + "tier": 2, + "logo": "/competitions-icons/1db57fd707344fb7.webp", + "teams_file": "teams/lrn_teams.json", + "players_file": "players/lrn_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/lrn_staffs.json" +} diff --git a/data/competitions/lrs/manifest.json b/data/competitions/lrs/manifest.json new file mode 100644 index 000000000..6d0af1edb --- /dev/null +++ b/data/competitions/lrs/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "lrs", + "name": "LRS", + "full_name": "Liga Regional Sur", + "region": "LRS", + "country": "LATAM", + "tier": 2, + "logo": "/competitions-icons/6023fe1fcc171e97.png", + "teams_file": "teams/lrs_teams.json", + "players_file": "players/lrs_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/lrs_staffs.json" +} diff --git a/data/competitions/na-lcs-l/manifest.json b/data/competitions/na-lcs-l/manifest.json new file mode 100644 index 000000000..534017635 --- /dev/null +++ b/data/competitions/na-lcs-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "na-lcs-l", + "name": "NA-LCS-L", + "full_name": "NA-LCS-LEGACY", + "region": "NA-LCS-L", + "country": null, + "tier": 1, + "logo": "/competitions-icons/97453c0363ca4dae.png", + "teams_file": "teams/na-lcs-l_teams.json", + "players_file": "players/na-lcs-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/nacl-l/manifest.json b/data/competitions/nacl-l/manifest.json new file mode 100644 index 000000000..88c38da00 --- /dev/null +++ b/data/competitions/nacl-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "nacl-l", + "name": "NACL-L", + "full_name": "NACL Legacy", + "region": "NACL-L", + "country": "US", + "tier": 2, + "logo": null, + "teams_file": "teams/nacl-l_teams.json", + "players_file": "players/nacl-l_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true +} diff --git a/data/competitions/nacl/manifest.json b/data/competitions/nacl/manifest.json new file mode 100644 index 000000000..aa3d751d0 --- /dev/null +++ b/data/competitions/nacl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "nacl", + "name": "NACL", + "full_name": "North American Challengers League", + "region": "NACL", + "country": "US", + "tier": 2, + "logo": "/competitions-icons/d79472a321c5034a.webp", + "teams_file": "teams/nacl_teams.json", + "players_file": "players/nacl_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 10, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/nlc/manifest.json b/data/competitions/nlc/manifest.json new file mode 100644 index 000000000..81f4fe2b7 --- /dev/null +++ b/data/competitions/nlc/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "nlc", + "name": "NLC", + "full_name": "Northern League of Legends Championship", + "region": "NLC", + "country": "GB", + "tier": 2, + "logo": "/competitions-icons/2644868fa28028cb.webp", + "teams_file": "teams/nlc_teams.json", + "players_file": "players/nlc_players.json", + "staff_file": null, + "schedule": { + "format": "double_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/pcs/manifest.json b/data/competitions/pcs/manifest.json new file mode 100644 index 000000000..551da99aa --- /dev/null +++ b/data/competitions/pcs/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "pcs", + "name": "PCS", + "full_name": "Pacific Championship Series", + "region": "PCS", + "country": "PCS", + "tier": 2, + "logo": "/competitions-icons/9b80a9c9554b74d6.png", + "teams_file": "teams/pcs_teams.json", + "players_file": "players/pcs_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/prime_league/manifest.json b/data/competitions/prime_league/manifest.json new file mode 100644 index 000000000..18daf58cd --- /dev/null +++ b/data/competitions/prime_league/manifest.json @@ -0,0 +1,28 @@ +{ + "id": "prime_league", + "name": "Prime League", + "full_name": "Prime League (German ERL)", + "region": "Prime League", + "country": "DE", + "tier": 2, + "logo": "/competitions-icons/prime_league.webp", + "teams_file": "teams/prime_league_teams.json", + "players_file": "players/prime_league_players.json", + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 3, + "splits": [ + { + "name": "Spring", + "best_of": 1, + "playoffs": null, + "season_start": { + "month": 1, + "day": 1 + }, + "superweek_offsets": [] + } + ] + } +} \ No newline at end of file diff --git a/data/competitions/prm-l/manifest.json b/data/competitions/prm-l/manifest.json new file mode 100644 index 000000000..e32fdd2e2 --- /dev/null +++ b/data/competitions/prm-l/manifest.json @@ -0,0 +1,19 @@ +{ + "id": "prm-l", + "name": "PRM-L", + "full_name": "Primeleague-Legacy", + "region": "PRM-L", + "country": "DE", + "tier": 2, + "logo": null, + "teams_file": "teams/prm-l_teams.json", + "players_file": "players/prm-l_players.json", + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "legacy": true, + "staff_file": "staffs/prm-l_staffs.json" +} diff --git a/data/competitions/prm/manifest.json b/data/competitions/prm/manifest.json new file mode 100644 index 000000000..265ce8c45 --- /dev/null +++ b/data/competitions/prm/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "prm", + "name": "PRM", + "full_name": "Techniker Prime League", + "region": "PRM", + "country": "DE", + "tier": 2, + "logo": "/competitions-icons/9ec30098c9439838.webp", + "teams_file": "teams/prm_teams.json", + "players_file": "players/prm_players.json", + "schedule": { + "format": "unknown", + "team_count": 0, + "preseason_friendlies": 0, + "splits": [] + }, + "staff_file": "staffs/prm_staffs.json" +} diff --git a/data/competitions/rl/manifest.json b/data/competitions/rl/manifest.json new file mode 100644 index 000000000..b3b4c929c --- /dev/null +++ b/data/competitions/rl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "rl", + "name": "RL", + "full_name": "Rift Legends", + "region": "RL", + "country": "PL", + "tier": 2, + "logo": "/competitions-icons/dc7cd7a3d243a0f6.webp", + "teams_file": "teams/rl_teams.json", + "players_file": "players/rl_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/rol/manifest.json b/data/competitions/rol/manifest.json new file mode 100644 index 000000000..2a7651a43 --- /dev/null +++ b/data/competitions/rol/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "rol", + "name": "ROL", + "full_name": "Road of Legends", + "region": "ROL", + "country": "LU", + "tier": 2, + "logo": "/competitions-icons/5a18f08c99ec9339.webp", + "teams_file": "teams/rol_teams.json", + "players_file": "players/rol_players.json", + "staff_file": null, + "schedule": { + "format": "unknown", + "team_count": 8, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/competitions/tcl/manifest.json b/data/competitions/tcl/manifest.json new file mode 100644 index 000000000..19026b6f3 --- /dev/null +++ b/data/competitions/tcl/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "tcl", + "name": "TCL", + "full_name": "GAMEON Turkish Championship League", + "region": "TCL", + "country": "TR", + "tier": 2, + "logo": "/competitions-icons/d47d97a818cf8ab8.webp", + "teams_file": "teams/tcl_teams.json", + "players_file": "players/tcl_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 8, + "preseason_friendlies": 2, + "splits": [] + } +} diff --git a/data/competitions/vcs/manifest.json b/data/competitions/vcs/manifest.json new file mode 100644 index 000000000..5fa92b595 --- /dev/null +++ b/data/competitions/vcs/manifest.json @@ -0,0 +1,18 @@ +{ + "id": "vcs", + "name": "VCS", + "full_name": "Vietnam Championship Series", + "region": "VCS", + "country": "VN", + "tier": 2, + "logo": "/competitions-icons/ade2af9e81d204b3.webp", + "teams_file": "teams/vcs_teams.json", + "players_file": "players/vcs_players.json", + "staff_file": null, + "schedule": { + "format": "single_round_robin", + "team_count": 6, + "preseason_friendlies": 0, + "splits": [] + } +} diff --git a/data/draft/players.json b/data/draft/players.json deleted file mode 100644 index 860157c54..000000000 --- a/data/draft/players.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"rostered_seeds":[],"free_agent_seeds":[]}} \ No newline at end of file diff --git a/data/draft/teams.json b/data/draft/teams.json deleted file mode 100644 index 8d245e97b..000000000 --- a/data/draft/teams.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"teams":[]}} \ No newline at end of file diff --git a/data/erls/competitions/al-l/manifest.json b/data/erls/competitions/al-l/manifest.json deleted file mode 100644 index dd042c9de..000000000 --- a/data/erls/competitions/al-l/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "al-l", - "name": "AL-L", - "full_name": "AL Legacy", - "region": "AL-L", - "country": "SA", - "tier": 2, - "logo": null, - "teams_file": "erls/teams/al-l_teams.json", - "players_file": "erls/players/al-l_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/al/manifest.json b/data/erls/competitions/al/manifest.json deleted file mode 100644 index 5155e345b..000000000 --- a/data/erls/competitions/al/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "al", - "name": "AL", - "full_name": "Arabian League", - "region": "AL", - "country": "SA", - "tier": 2, - "logo": "/competition-icons/1779541416530_fbbtnhepm1o.webp", - "teams_file": "erls/teams/al_teams.json", - "players_file": "erls/players/al_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/cd/manifest.json b/data/erls/competitions/cd/manifest.json deleted file mode 100644 index 10efcc345..000000000 --- a/data/erls/competitions/cd/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "cd", - "name": "CD", - "full_name": "Circuito Desafiante", - "region": "CD", - "country": "BR", - "tier": 2, - "logo": "/competition-icons/1779540333862_ir4pag2rnxa.webp", - "teams_file": "erls/teams/cd_teams.json", - "players_file": "erls/players/cd_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 10, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/ebl/manifest.json b/data/erls/competitions/ebl/manifest.json deleted file mode 100644 index 87b612970..000000000 --- a/data/erls/competitions/ebl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "ebl", - "name": "EBL", - "full_name": "Esports Balkan League ", - "region": "EBL", - "country": "RS", - "tier": 2, - "logo": "/competition-icons/1779542124846_s6opuwdw4pn.webp", - "teams_file": "erls/teams/ebl_teams.json", - "players_file": "erls/players/ebl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/hll/manifest.json b/data/erls/competitions/hll/manifest.json deleted file mode 100644 index 84c1de499..000000000 --- a/data/erls/competitions/hll/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "hll", - "name": "HLL", - "full_name": "Hellenic Legends League", - "region": "HLL", - "country": "GR", - "tier": 2, - "logo": "/competition-icons/1779541499193_6h0gq4qp1if.png", - "teams_file": "erls/teams/hll_teams.json", - "players_file": "erls/players/hll_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 4, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/hm/manifest.json b/data/erls/competitions/hm/manifest.json deleted file mode 100644 index fb3620f30..000000000 --- a/data/erls/competitions/hm/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "hm", - "name": "HM", - "full_name": "Hitpoint Masters", - "region": "HM", - "country": "CZ", - "tier": 2, - "logo": "/competition-icons/1779541585563_ryiy8j06zh.png", - "teams_file": "erls/teams/hm_teams.json", - "players_file": "erls/players/hm_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lckcl/manifest.json b/data/erls/competitions/lckcl/manifest.json deleted file mode 100644 index a1f364ea0..000000000 --- a/data/erls/competitions/lckcl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lckcl", - "name": "LCKCL", - "full_name": "LCK Challenger League Series", - "region": "LCKCL", - "country": "KR", - "tier": 2, - "logo": "/competition-icons/1779539671530_y82tn3z9us.webp", - "teams_file": "erls/teams/lckcl_teams.json", - "players_file": "erls/players/lckcl_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 10, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/ldl/manifest.json b/data/erls/competitions/ldl/manifest.json deleted file mode 100644 index 1d84ff53c..000000000 --- a/data/erls/competitions/ldl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "ldl", - "name": "LDL", - "full_name": "League of Legends Development League ", - "region": "LDL", - "country": "CN", - "tier": 2, - "logo": "/competition-icons/1779540737749_i24jwzbbzp.webp", - "teams_file": "erls/teams/ldl_teams.json", - "players_file": "erls/players/ldl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 10, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/les/manifest.json b/data/erls/competitions/les/manifest.json deleted file mode 100644 index 6b12a8e7f..000000000 --- a/data/erls/competitions/les/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "les", - "name": "LES", - "full_name": "Liga Española de League of Legends", - "region": "LES", - "country": "ES", - "tier": 2, - "logo": "/competition-icons/1778617584007_v28ztn1vq9e.webp", - "teams_file": "erls/teams/les_teams.json", - "players_file": "erls/players/les_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lfl-l/manifest.json b/data/erls/competitions/lfl-l/manifest.json deleted file mode 100644 index e9cfe3f95..000000000 --- a/data/erls/competitions/lfl-l/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lfl-l", - "name": "LFL-L", - "full_name": "LFL Legacy", - "region": "LFL-L", - "country": "FR", - "tier": 2, - "logo": null, - "teams_file": "erls/teams/lfl-l_teams.json", - "players_file": "erls/players/lfl-l_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 20, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lfl/manifest.json b/data/erls/competitions/lfl/manifest.json deleted file mode 100644 index 531589572..000000000 --- a/data/erls/competitions/lfl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lfl", - "name": "LFL", - "full_name": "La Ligue Française de League of Legends", - "region": "LFL", - "country": "FR", - "tier": 2, - "logo": "/competition-icons/1779539811552_8xr1bzouhlx.webp", - "teams_file": "erls/teams/lfl_teams.json", - "players_file": "erls/players/lfl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 10, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lit/manifest.json b/data/erls/competitions/lit/manifest.json deleted file mode 100644 index 2ec3f01b9..000000000 --- a/data/erls/competitions/lit/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lit", - "name": "LIT", - "full_name": "League of Legends Italian Tournament", - "region": "LIT", - "country": "IT", - "tier": 2, - "logo": "/competition-icons/1779541327806_xgz637t92m.webp", - "teams_file": "erls/teams/lit_teams.json", - "players_file": "erls/players/lit_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/ljl-l/manifest.json b/data/erls/competitions/ljl-l/manifest.json deleted file mode 100644 index 03ba8a5cb..000000000 --- a/data/erls/competitions/ljl-l/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "ljl-l", - "name": "LJL-L", - "full_name": "LJL Legacy", - "region": "LJL-L", - "country": "JP", - "tier": 2, - "logo": null, - "teams_file": "erls/teams/ljl-l_teams.json", - "players_file": "erls/players/ljl-l_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/ljl/manifest.json b/data/erls/competitions/ljl/manifest.json deleted file mode 100644 index cd1f06cd1..000000000 --- a/data/erls/competitions/ljl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "ljl", - "name": "LJL", - "full_name": "Japan's professional League of Legends league", - "region": "LJL", - "country": "JP", - "tier": 2, - "logo": "/competition-icons/1779541099047_34egscw01nz.webp", - "teams_file": "erls/teams/ljl_teams.json", - "players_file": "erls/players/ljl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lplol/manifest.json b/data/erls/competitions/lplol/manifest.json deleted file mode 100644 index d556625ff..000000000 --- a/data/erls/competitions/lplol/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lplol", - "name": "LPLOL", - "full_name": "Liga Portuguesa de League of Legends", - "region": "LPLOL", - "country": "PT", - "tier": 2, - "logo": "/competition-icons/1779542166963_vgkcjxvwny.webp", - "teams_file": "erls/teams/lplol_teams.json", - "players_file": "erls/players/lplol_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 12, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lrn/manifest.json b/data/erls/competitions/lrn/manifest.json deleted file mode 100644 index 574e9b6ca..000000000 --- a/data/erls/competitions/lrn/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lrn", - "name": "LRN", - "full_name": "Liga Regional Norte", - "region": "LRN", - "country": "MX", - "tier": 2, - "logo": "/competition-icons/1778498889782_zslrvxvdhyi.webp", - "teams_file": "erls/teams/lrn_teams.json", - "players_file": "erls/players/lrn_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/lrs/manifest.json b/data/erls/competitions/lrs/manifest.json deleted file mode 100644 index e87d0b1bd..000000000 --- a/data/erls/competitions/lrs/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "lrs", - "name": "LRS", - "full_name": "Liga Regional Sur", - "region": "LRS", - "country": "LATAM", - "tier": 2, - "logo": "/competition-icons/1778504909719_s5n2owy52q9.png", - "teams_file": "erls/teams/lrs_teams.json", - "players_file": "erls/players/lrs_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/nacl-l/manifest.json b/data/erls/competitions/nacl-l/manifest.json deleted file mode 100644 index a36c16a5a..000000000 --- a/data/erls/competitions/nacl-l/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "nacl-l", - "name": "NACL-L", - "full_name": "NACL Legacy", - "region": "NACL-L", - "country": "US", - "tier": 2, - "logo": null, - "teams_file": "erls/teams/nacl-l_teams.json", - "players_file": "erls/players/nacl-l_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/nacl/manifest.json b/data/erls/competitions/nacl/manifest.json deleted file mode 100644 index d899fa31a..000000000 --- a/data/erls/competitions/nacl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "nacl", - "name": "NACL", - "full_name": "North American Challengers League", - "region": "NACL", - "country": "US", - "tier": 2, - "logo": "/competition-icons/1779540488798_rdk3x1y0ucl.webp", - "teams_file": "erls/teams/nacl_teams.json", - "players_file": "erls/players/nacl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 10, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/nlc/manifest.json b/data/erls/competitions/nlc/manifest.json deleted file mode 100644 index 130c6d439..000000000 --- a/data/erls/competitions/nlc/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "nlc", - "name": "NLC", - "full_name": "Northern League of Legends Championship", - "region": "NLC", - "country": "GB", - "tier": 2, - "logo": "/competition-icons/1779542291422_93f1um64vul.webp", - "teams_file": "erls/teams/nlc_teams.json", - "players_file": "erls/players/nlc_players.json", - "staff_file": null, - "schedule": { - "format": "double_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/pcs/manifest.json b/data/erls/competitions/pcs/manifest.json deleted file mode 100644 index bf0bf9273..000000000 --- a/data/erls/competitions/pcs/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "pcs", - "name": "PCS", - "full_name": "Pacific Championship Series", - "region": "PCS", - "country": "PCS", - "tier": 2, - "logo": "/competition-icons/1779275416611_j5w1jiufi4.png", - "teams_file": "erls/teams/pcs_teams.json", - "players_file": "erls/players/pcs_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/prm-l/manifest.json b/data/erls/competitions/prm-l/manifest.json deleted file mode 100644 index 532ba8d5b..000000000 --- a/data/erls/competitions/prm-l/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "prm-l", - "name": "PRM-L", - "full_name": "Primeleague-Legacy", - "region": "PRM-L", - "country": "DE", - "tier": 2, - "logo": null, - "teams_file": "erls/teams/prm-l_teams.json", - "players_file": "erls/players/prm-l_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/prm/manifest.json b/data/erls/competitions/prm/manifest.json deleted file mode 100644 index b6c2f1952..000000000 --- a/data/erls/competitions/prm/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "prm", - "name": "PRM", - "full_name": "Techniker Prime League", - "region": "PRM", - "country": "DE", - "tier": 2, - "logo": "/competition-icons/1778617576095_wm2t6xsrh5.webp", - "teams_file": "erls/teams/prm_teams.json", - "players_file": "erls/players/prm_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 0, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/rl/manifest.json b/data/erls/competitions/rl/manifest.json deleted file mode 100644 index f607d5103..000000000 --- a/data/erls/competitions/rl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "rl", - "name": "RL", - "full_name": "Rift Legends", - "region": "RL", - "country": "PL", - "tier": 2, - "logo": "/competition-icons/1779542206016_zl57sqzb5c.webp", - "teams_file": "erls/teams/rl_teams.json", - "players_file": "erls/players/rl_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/rol/manifest.json b/data/erls/competitions/rol/manifest.json deleted file mode 100644 index c8687a77e..000000000 --- a/data/erls/competitions/rol/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "rol", - "name": "ROL", - "full_name": "Road of Legends", - "region": "ROL", - "country": "LU", - "tier": 2, - "logo": "/competition-icons/1779542097501_d4nvj98rhl.webp", - "teams_file": "erls/teams/rol_teams.json", - "players_file": "erls/players/rol_players.json", - "staff_file": null, - "schedule": { - "format": "unknown", - "team_count": 8, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/tcl/manifest.json b/data/erls/competitions/tcl/manifest.json deleted file mode 100644 index c95ad9702..000000000 --- a/data/erls/competitions/tcl/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "tcl", - "name": "TCL", - "full_name": "GAMEON Turkish Championship League", - "region": "TCL", - "country": "TR", - "tier": 2, - "logo": "/competition-icons/1778497362083_axsqk6y8p1j.webp", - "teams_file": "erls/teams/tcl_teams.json", - "players_file": "erls/players/tcl_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 8, - "preseason_friendlies": 2, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/competitions/vcs/manifest.json b/data/erls/competitions/vcs/manifest.json deleted file mode 100644 index c6ee1808c..000000000 --- a/data/erls/competitions/vcs/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "id": "vcs", - "name": "VCS", - "full_name": "Vietnam Championship Series", - "region": "VCS", - "country": "VN", - "tier": 2, - "logo": "/competition-icons/1779540930809_b1jltztgvyr.webp", - "teams_file": "erls/teams/vcs_teams.json", - "players_file": "erls/players/vcs_players.json", - "staff_file": null, - "schedule": { - "format": "single_round_robin", - "team_count": 6, - "preseason_friendlies": 0, - "splits": [] - } -} \ No newline at end of file diff --git a/data/erls/players/al_players.json b/data/erls/players/al_players.json deleted file mode 100644 index c618c88fc..000000000 --- a/data/erls/players/al_players.json +++ /dev/null @@ -1,6891 +0,0 @@ -{ - "name": "AL Players", - "description": "AL - 2026 Season", - "players": [ - { - "id": "player-013a0637", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Darky (Gilbert Chami)", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Gilbert Chami", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-10-12", - "nationality": "DE", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 74, - "mechanics": 67, - "discipline": 66, - "macro_play": 70, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 68 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-0391f167", - "match_name": "Tarek Djoghlaf", - "full_name": "Sayn", - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-07607645", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "IHEBIC", - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 64, - "macro_play": 65, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Iheb Zaalani", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867827719_IHEBIC.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-097ab16e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "NASR eSports B", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NASR eSports B", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team AURORA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "EGZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "NASR eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team AURORA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "EG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "EGZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Giyuu", - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 62, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 64 - }, - "match_name": "Ahmad Charif", - "date_of_birth": "2001-11-12", - "nationality": "LB", - "profile_image_url": "/player-photos/1779867735024_Giyuu.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0b62d427", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Forbidden Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tayron", - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 59, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Uğurcan Doğan", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0bd317f3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Entropy Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropy Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSports Cologne", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Peaker", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Raphael Alt", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "AT", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Gold", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Majesty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Belfast Storm", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-16ab7931", - "match_name": "Abdou Smati", - "full_name": "Shadow", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779867935337_Shadow__Abderrahmen_Smati_.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E9Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Gold", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Summon Aery", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Majesty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - } - ], - "attributes": { - "laning": 72, - "mechanics": 75, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 72 - }, - "id": "player-1a58b09e", - "match_name": "Koussay Soltani", - "full_name": "Koussay", - "date_of_birth": "2005-05-03", - "nationality": "TN", - "profile_image_url": "/player-photos/1779867739282_Koussay.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1a64d2f6", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E9Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Juggernaut", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Abderrahim Khadhraoui", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1999-05-22", - "nationality": "TN", - "profile_image_url": "/player-photos/1779867920466_Juggernaut__Mohamed_Khathrawi_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1ee338aa", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Enclave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Armoured Brothers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Enclave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Sahara Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Oplon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Xicor", - "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 67, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 66 - }, - "match_name": "Fares Saidana", - "date_of_birth": "2002-12-25", - "nationality": "TN", - "profile_image_url": "/player-photos/1779867934918_Xicor.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-20dd61cf", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Thunderclouds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Stade Tunisien", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Sai", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 68, - "macro_play": 66, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 68 - }, - "match_name": "Mehdi Abdessalem", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867852726_Sai__Mehdi_Abdessalem_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2610a77a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ELROY Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DRX Shinhan Bank", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DN SOOPers Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DN SOOPers Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "CoBiT", - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 64, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Chae Yoon-ho", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2006-02-27", - "nationality": "KR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Belfast Storm", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Oxygen Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-2647fe92", - "match_name": "Fares Bouhajja", - "full_name": "Wicked", - "date_of_birth": "2007-04-17", - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-27bbf8e4", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ajwad", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 67, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Ajwad", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-284963d5", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Exan", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 64, - "macro_play": 65, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Safwen Ben Boubaker", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867848877_Exan.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2bc709f6", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ghisou", - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 65 - }, - "match_name": "Ghisou", - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c998d3b", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Oserv Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ici Japon Corp.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Theocacs", - "attributes": { - "laning": 63, - "mechanics": 67, - "discipline": 59, - "macro_play": 68, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 63 - }, - "match_name": "Theo Sauda", - "date_of_birth": "2007-04-29", - "nationality": "FR", - "profile_image_url": "/player-photos/1779867730483_Theocacs.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2eba79fa", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "EGZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "The Black Lotus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "The Black Lotus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "St. Clair", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "XO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Akashi", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Oussama Cherradi", - "loan_listed": false, - "contract_end": "2028-11-18", - "transfer_listed": false, - "date_of_birth": "2007-11-21", - "nationality": "MA", - "profile_image_url": "/player-photos/1779867933042_Akashi__Oussama_Cherradi_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-8829d0c3", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-35be2288", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Att. to Reconnect", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "KIYF eSports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "NeverBack Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ÇİLEKLER", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Sølvkikkert", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fnatic Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fnatic Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fnatic TQ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fnatic TQ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Case Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "MAXI", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 64, - "macro_play": 65, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Magnus Stenz Kristensen", - "date_of_birth": "2000-06-24", - "nationality": "DK", - "profile_image_url": "/player-photos/1779867929396_MAXI.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d5087f3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Dark Tigers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Majestic Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "REViTAL Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "eXtatus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Majestic Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Repre Gold", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BISONS ECLUB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "S2V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BISONS ECLUB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BISONS ECLUB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Random", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 67, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Adam Grepl", - "date_of_birth": "2001-12-30", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779867925161_Random.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-449baf07", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Digital Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "e-Meryci", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Adive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Piast Gliwice Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Avia Deceptor", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Piast Gliwice Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Pogoń Szczecin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Hybrid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dusty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SNOOZE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Choego", - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 62, - "macro_play": 65, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Damian Bajor", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779867758843_Choego__Damian_Bajor_.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-c648abc2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-461bb545", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "QLASH MENA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "High Tempo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EYA X Prestige", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Frozen", - "attributes": { - "laning": 65, - "mechanics": 62, - "discipline": 65, - "macro_play": 62, - "consistency": 59, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 62 - }, - "match_name": "Ismail Bastoun", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2002-02-20", - "nationality": "MA", - "profile_image_url": "/player-photos/1779867928962_Frozen__Ismail_Bastoun_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e175ded9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-515a3996", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Darky2", - "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 66, - "macro_play": 66, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Darky2", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "LB", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-54f0bc07", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cycle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Lost Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Occupy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Aurora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Onyx Ravens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Onyx Ravens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Sas", - "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 64, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 64 - }, - "match_name": "Sahl Waggass", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-c648abc2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-57db176a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BlueWhites", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lynch Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "regnum4games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DKB XPERION NXT", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "C0st0m", - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 66, - "macro_play": 64, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Alexander Lind", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-04-06", - "nationality": "DK", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-e175ded9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5fc23b16", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Maged", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 66, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 64, - "mental_resilience": 65 - }, - "match_name": "Maged Marawan Mohamed", - "date_of_birth": "2001-01-14", - "nationality": "EG", - "profile_image_url": "/player-photos/1779867926127_Maged.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-646c5e75", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Lucent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Yellow Stripes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GameWard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Sotsy", - "attributes": { - "laning": 59, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 59, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 60 - }, - "match_name": "John Sicre", - "date_of_birth": "1998-10-26", - "nationality": "FR", - "profile_image_url": "/player-photos/1779867918753_Sotsy.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-e175ded9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-64d3bb1c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "e.Hub United", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "e.Hub United", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "FTV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Sky Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Sky Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Genius Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Slayder", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 62, - "macro_play": 68, - "consistency": 68, - "shotcalling": 59, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 63 - }, - "match_name": "Nguyễn Linh Vương", - "date_of_birth": "2000-11-22", - "nationality": "VN", - "profile_image_url": "/player-photos/1779867934630_Slayder.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6529ff0a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Handless", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cycle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Lost Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "QLASH MENA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Victorious Demons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Zero0o", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Mohammad Alassaf", - "date_of_birth": "2000-03-12", - "nationality": "JO", - "profile_image_url": "/player-photos/1779867820352_Zero0o.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6af08614", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Thunderclouds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Thunderclouds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Jalleba", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 60, - "macro_play": 62, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 62 - }, - "match_name": "Ala Jalleb", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867924593_Jalleba.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-e175ded9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6e83d03e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "ShizuOo", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 65, - "macro_play": 59, - "consistency": 60, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 65, - "mental_resilience": 63 - }, - "match_name": "Younis Mahmoud", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-e175ded9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Occupy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lost Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Falcons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Occupy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Onyx Ravens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 69, - "macro_play": 74, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 68 - }, - "id": "player-6f787638", - "match_name": "Mohamed Yahia", - "full_name": "Boda", - "date_of_birth": "2006-04-17", - "nationality": "EG", - "profile_image_url": "/player-photos/1779867725141_Boda.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7330adb1", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Silva2", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Silva2", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-74c9710e", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Goliah", - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 68, - "macro_play": 67, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Goliah", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7e05eabb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Moe", - "attributes": { - "laning": 68, - "mechanics": 65, - "discipline": 67, - "macro_play": 66, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Mo'en Hussein", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "PS", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-910c2516", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "QLASH MENA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Handm", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 67, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Hashem Baroum", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": "/player-photos/1779867749429_Handm.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-c648abc2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9186da05", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NXT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Aeru", - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 64, - "macro_play": 65, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 60, - "champion_pool": 64, - "mental_resilience": 64 - }, - "match_name": "Oussema Ben Amara", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867742940_Aeru.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-99d2b68f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Armoured Brothers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E9Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Sahara Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dean", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 65, - "macro_play": 67, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Haithem Attia", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": "/player-photos/1779867915857_Dean__Haithem_Attia_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9a0ec9e1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Simplicity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Hannibal Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E9Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hannibal Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Olympus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Olympus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Skream", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Youssef Abdellatif", - "date_of_birth": "2004-04-15", - "nationality": "TN", - "profile_image_url": "/player-photos/1779867924738_Skream.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "The Black Lotus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Carthage Legionnaires", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-9ff63586", - "match_name": "Taieb Kraiem", - "full_name": "Insane", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779867938625_Insane__Taieb_Kraiem_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9ffe676d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Soufiane", - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 68, - "macro_play": 68, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Soufiane Ounis", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a4f1fae3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "KnockOut Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MYIDOL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E9Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KnockOut Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Majesty Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "VSlash GnG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lokmays", - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 67, - "macro_play": 65, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Aymen Jadallah", - "date_of_birth": "1997-11-15", - "nationality": "TN", - "profile_image_url": "/player-photos/1779867931204_Lokmays.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b1d82fe9", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Raider", - "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 66, - "macro_play": 67, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Raider", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b7050a20", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Improver", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 64, - "mental_resilience": 66 - }, - "match_name": "Imad Assafi", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-c648abc2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b842dce1", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lorenz", - "attributes": { - "laning": 57, - "mechanics": 64, - "discipline": 67, - "macro_play": 63, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 61, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Lorenz", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b89cfc71", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Jasten", - "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 66 - }, - "match_name": "Anas Abdelsalam", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c92c9815", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Galions Sharks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Galions Sharks", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Shibi", - "attributes": { - "laning": 62, - "mechanics": 67, - "discipline": 60, - "macro_play": 65, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 64, - "mental_resilience": 62 - }, - "match_name": "Jakub Przybylski", - "date_of_birth": "2002-09-14", - "nationality": "PL", - "profile_image_url": "/player-photos/1779867753659_Shibi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-c648abc2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ccd8c8d1", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Syzyfek", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Syzyfek", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da98c898", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DKB XPERION NXT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Aymen", - "attributes": { - "laning": 65, - "mechanics": 67, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 66 - }, - "match_name": "Aymen Zeghina", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e2c26cc3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Split Raiders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Enoch", - "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 66, - "macro_play": 66, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Dilan Krnjak", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779867858486_Enoch.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ea82edeb", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Degla", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 59, - "macro_play": 66, - "consistency": 59, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Degla", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eaa40d91", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "El Dafayat Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "B Butcher", - "attributes": { - "laning": 62, - "mechanics": 67, - "discipline": 59, - "macro_play": 68, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 63 - }, - "match_name": "Abdulkader Halwani", - "date_of_birth": "2000-01-18", - "nationality": "SY", - "profile_image_url": "/player-photos/1779867747355_B_Butcher.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-90b5943e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f24f0d23", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hurricane of Feathers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hurricane of Feathers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MHSC Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "For The Win", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Shourdy", - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 68, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Lucas Santos", - "date_of_birth": "2005-11-29", - "nationality": "PT", - "profile_image_url": "/player-photos/1779867847568_Shourdy.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-1f166743", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f4c6c98b", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Nawaf", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 66, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Nawaf", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-12ea162a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f4e49f51", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Însane", - "attributes": { - "laning": 64, - "mechanics": 68, - "discipline": 60, - "macro_play": 65, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Însane", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-47ce6033", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/cd_players.json b/data/erls/players/cd_players.json deleted file mode 100644 index 4dac91cff..000000000 --- a/data/erls/players/cd_players.json +++ /dev/null @@ -1,6914 +0,0 @@ -{ - "name": "CD Players", - "description": "CD - 2026 Season", - "players": [ - { - "id": "player-6abde533", - "wage": 86000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MiC E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "position": "ADC", - "condition": 100, - "full_name": "Rabelo", - "attributes": { - "laning": 79, - "mechanics": 72, - "discipline": 73, - "macro_play": 70, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 74 - }, - "match_name": "Guilherme Rabelo Muniz", - "loan_listed": false, - "morale_core": {}, - "nationality": "Brazil", - "contract_end": "2026-11-16", - "market_value": 1290000, - "birth_country": null, - "date_of_birth": "2004-08-21", - "potential_base": 81, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1779823982454_Rabelo.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-0a91411d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo W7M", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Guigs", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 70, - "macro_play": 71, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Guilherme Soares da Silva", - "contract_end": "2027-11-15", - "date_of_birth": "1999-07-05", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824314758_Guigs.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-53c6789c", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1ee7a224", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo W7M", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Fluxo W7M", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "Marvin", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Vinicius Marvin de Souza", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-16", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824296821_Marvin.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2616e76a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Prodigy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ProGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cruzeiro Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Havan Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cruzeiro Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cruzeiro eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "E-Flix eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "condition": 100, - "full_name": "Pilot", - "attributes": { - "laning": 63, - "mechanics": 69, - "discipline": 65, - "macro_play": 64, - "consistency": 65, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 70, - "mental_resilience": 67 - }, - "match_name": "Elvis Vergara", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-10", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-08-20", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824202014_Pilot__Elvis_Vergara_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-28adff2c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Solid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Bipi", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 68, - "mental_resilience": 72 - }, - "match_name": "Filipe Souza Lima Viscardi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-08", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-12", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824293218_Bipi.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-39978a99", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bodin White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hyper Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "Levizin", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 72, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "Levi Adoniram Moura Pedutti", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-30", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824280875_Levizin.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3da17857", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Reload Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Trainee", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "condition": 100, - "full_name": "Sinatra", - "attributes": { - "laning": 67, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Enzo Candido Ferreira", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-05-06", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823995751_Sinatra.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-410c7710", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FURIA Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Prodigy Invokers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "Namiru", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Daniel Lisboa Tonelli", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-02-06", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824289638_Namiru.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-435d5f9e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FLA Los Grandes Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "condition": 100, - "full_name": "SuperCleber", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 66, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Cleber Nantes", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-12-06", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823983336_SuperCleber.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-44362bb1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Operation Kino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rensga Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Alpha7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RATZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "condition": 100, - "full_name": "Kiari", - "attributes": { - "laning": 69, - "mechanics": 71, - "discipline": 69, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Thiago Luiz Campos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2029-11-19", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-11-30", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823981344_Kiari.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-44698a83", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FURIA Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Izanagi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "condition": 100, - "full_name": "Hakari", - "attributes": { - "laning": 63, - "mechanics": 67, - "discipline": 65, - "macro_play": 66, - "consistency": 64, - "shotcalling": 70, - "teamfighting": 64, - "champion_pool": 66, - "mental_resilience": 67 - }, - "match_name": "Eron Rodrigues", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-05", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-03-11", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823707495_Hakari.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-46934cda", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "condition": 100, - "full_name": "Qats", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Qats", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4872ca17", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FURIA Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Izanagi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dopamina E-Sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Izanagi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "condition": 100, - "full_name": "Kojima", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 67, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Caio Yuiti Kojima", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-06-02", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824312192_Kojima.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4b6b08c6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rensga Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Rise", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Stellae Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "condition": 100, - "full_name": "ZekaS", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "César Berteli França", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-11-20", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-06-11", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823889127_ZekaS.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4d968f24", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Miners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Stellae Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "condition": 100, - "full_name": "Celo", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 69, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Marcelo Leite", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-07-30", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824295808_Celo.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4dadcf3b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "UQ Union", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ORDER", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "condition": 100, - "full_name": "Kisee", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 71, - "macro_play": 69, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Ronald Van Bao Vo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-07", - "nationality": "AU", - "profile_image_url": "/player-photos/1779824001306_Kisee.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4e28934b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "condition": 100, - "full_name": "Leleko", - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 69, - "macro_play": 67, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 65, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Leandro Hideki Aihara", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-31", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-12-26", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823990461_Leleko.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5484cc9b", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "scamber", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "scamber", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-369e4620", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-56a0b4cf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dopamina E-Sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Stellae Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "XV eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Solid", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Forlin", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 73, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Leonardo Pereira", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-10-15", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824277326_Forlin.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6016bae6", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "condition": 100, - "full_name": "Disamis", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 69, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 68, - "mental_resilience": 71 - }, - "match_name": "Disamis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-63cb1341", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "condition": 100, - "full_name": "zynts", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, - "macro_play": 71, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 68, - "mental_resilience": 71 - }, - "match_name": "zynts", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6ca9f424", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FLA Los Grandes Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hyper Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "condition": 100, - "full_name": "Blacky", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 72, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Matheus Lessa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-04-22", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824291997_Blacky.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6fff6949", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "EBRO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EBRO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "Zoen", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Enzo Ganino", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-10-01", - "nationality": "AR", - "profile_image_url": "/player-photos/1779824276404_Zoen__Enzo_Ganino_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-705ea0c9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "condition": 100, - "full_name": "SCARY", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 67, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Artur Queiroz Scalabrini", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": "/player-photos/1779824307337_SCARY__Artur_Queiroz_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-70c82ac0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "condition": 100, - "full_name": "Nero", - "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 63, - "macro_play": 65, - "consistency": 65, - "shotcalling": 70, - "teamfighting": 62, - "champion_pool": 68, - "mental_resilience": 65 - }, - "match_name": "Octavio Augusto Moura Ribeiro", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-05", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-07-25", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823712890_Nero__Ot_vio_Augusto_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-75946705", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CNB Infinity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vorax Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vorax Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "condition": 100, - "full_name": "Yupps", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 67, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Yuri Gabriel Petermann", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-12-23", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824304788_Yupps.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-76f194bb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FURIA Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Prodigy Invokers", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Gatovisck", - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 67, - "macro_play": 67, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 67 - }, - "match_name": "Vitor Leopoldo de Souza", - "loan_listed": false, - "contract_end": "2027-11-15", - "transfer_listed": false, - "date_of_birth": "2006-11-22", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824302478_Gatovisck.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-408c21b2", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-79d3f261", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LOUD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "condition": 100, - "full_name": "Brance", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 64, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Diego Amaral", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-02-25", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824006433_Brance.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7e026f2b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "condition": 100, - "full_name": "Curse", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 67, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Curse", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7e6099ca", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "uZent", - "attributes": { - "laning": 84, - "mechanics": 82, - "discipline": 84, - "macro_play": 84, - "consistency": 84, - "shotcalling": 83, - "teamfighting": 82, - "champion_pool": 79, - "mental_resilience": 84 - }, - "match_name": "uZent", - "potential_base": 91, - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-467d253d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7ef4d09d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bodin White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hyper Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "condition": 100, - "full_name": "Jmz", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 68, - "mental_resilience": 72 - }, - "match_name": "João Loureiro", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-07-06", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-01-19", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823971232_Jmz__Jo_o_Loureiro_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7f15b292", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Konseki", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 69, - "macro_play": 69, - "consistency": 68, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Ighor Treiss", - "contract_end": "2029-11-19", - "date_of_birth": "2004-09-25", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824001324_Konseki.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-31ca2c75", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7f6f8e4d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dopamina E-Sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "condition": 100, - "full_name": "Dizin", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 69, - "macro_play": 61, - "consistency": 63, - "shotcalling": 70, - "teamfighting": 64, - "champion_pool": 68, - "mental_resilience": 67 - }, - "match_name": "Ronald Silva de Paula", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-27", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-13", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824196220_Dizin.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-80d12f93", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Havan Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Havan Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Raizen E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Tropa Raizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RATZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "condition": 100, - "full_name": "Beenie", - "attributes": { - "laning": 65, - "mechanics": 69, - "discipline": 65, - "macro_play": 67, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Pedro Lucas Rodrigues", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-05", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-12-28", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823723838_Beenie.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82d2724d", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Aithusa", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 73, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 72 - }, - "match_name": "Aithusa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-862dabc1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dopamina E-Sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bulas", - "attributes": { - "laning": 71, - "mechanics": 67, - "discipline": 69, - "macro_play": 65, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 66, - "mental_resilience": 67 - }, - "match_name": "Lucas Adriel", - "contract_end": "2026-11-05", - "date_of_birth": "2003-10-02", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823729206_Bulas.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-603562ef", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-869b5840", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "condition": 100, - "full_name": "Netuno", - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 65, - "macro_play": 65, - "consistency": 65, - "shotcalling": 70, - "teamfighting": 65, - "champion_pool": 68, - "mental_resilience": 67 - }, - "match_name": "Lucas Flores Fensterseifer", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-10", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-02-12", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824207635_Netuno.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-89230297", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Solid", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Dioge", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 68, - "mental_resilience": 72 - }, - "match_name": "Diogenes Barbosa Bispo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-08", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-18", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824288921_Dioge__Diogenes_Barbosa_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8e637bba", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Redemption POA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Alpha7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "condition": 100, - "full_name": "Scuro", - "attributes": { - "laning": 65, - "mechanics": 71, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 69 - }, - "match_name": "Gabriel Scuro", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2029-11-19", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-02-24", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823996007_Scuro.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-992fac47", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "condition": 100, - "full_name": "StineR", - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 70, - "teamfighting": 65, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Vinicius Dias", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-03-09", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823985745_StineR.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9971732a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Flamengo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team oNe eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Intergalaxy Tigers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Intergalaxy Tigers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Miners Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "INTZ Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eWolves Brazil", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "condition": 100, - "full_name": "Eradan", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 67, - "macro_play": 64, - "consistency": 63, - "shotcalling": 70, - "teamfighting": 63, - "champion_pool": 66, - "mental_resilience": 65 - }, - "match_name": "André Aparecido dos Santos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-06-30", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-06-28", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824008627_Eradan.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - } - ], - "contract_end": "2026-06-15", - "id": "player-9c516f6f", - "match_name": "Guilherme Bergamaschi", - "full_name": "Guizzy", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779823974406_Guizzy.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9f7081b4", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vorax Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vorax Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Stellae Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Solid", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Cavalo", - "attributes": { - "laning": 70, - "mechanics": 69, - "discipline": 71, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Alexandre Fernandes", - "contract_end": "2026-11-10", - "date_of_birth": "2001-03-10", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824298135_Cavalo.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-a49fd9c6", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 62, - "stats": {}, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 74, - "mechanics": 78, - "discipline": 70, - "macro_play": 74, - "consistency": 71, - "shotcalling": 74, - "teamfighting": 77, - "champion_pool": 74, - "mental_resilience": 74 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "market_value": 930, - "potential_base": 82, - "transfer_listed": false, - "id": "player-a98bf259", - "match_name": "Pedro Arthur Gonçalves", - "full_name": "Disamis", - "date_of_birth": "2003-08-03", - "nationality": "BR", - "profile_image_url": "/player-photos/1778537153375_xiwqisfucpd.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-369e4620", - "traits": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "IDM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team oNe eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "IDM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Uppercut esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Uppercut esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INTZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "contract_end": "2026-10-27", - "id": "player-abac4e86", - "match_name": "Yan Sales Neves", - "full_name": "Damage", - "date_of_birth": "1997-06-20", - "nationality": "", - "profile_image_url": "/player-photos/1779824218576_Damage.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eWolves Brazil", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ORIGINwp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Clã NKZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Reload Ragnarok", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - } - ], - "contract_end": "2026-06-02", - "id": "player-ad1f94b3", - "match_name": "Regis de Abreu Soares", - "full_name": "Houndin", - "date_of_birth": "2005-07-10", - "nationality": "", - "profile_image_url": "/player-photos/1779823986571_Houndin.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-add0c86a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Los Grandes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Los Grandes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Zay", - "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 69, - "macro_play": 64, - "consistency": 65, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 66, - "mental_resilience": 67 - }, - "match_name": "Vinicius Argolo Viana", - "contract_end": "2026-06-27", - "date_of_birth": "2004-09-06", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824212629_Zay.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-4fec330a", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b753c79c", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "condition": 100, - "full_name": "Rabelo", - "attributes": { - "laning": 73, - "mechanics": 70, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Rabelo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c1447ae7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fluxo W7M", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "condition": 100, - "full_name": "Fuuu", - "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 67, - "macro_play": 70, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Gabriel Toshio Furuuti", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-07-31", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823978347_Fuuu.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c3c7fd31", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Solid", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Aegis ", - "attributes": { - "laning": 67, - "mechanics": 69, - "discipline": 70, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Gabirel Vinicius Saes de Lemos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-09-09", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824279938_Aegis__Gabriel_Lemos_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d2a32e35", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Manel", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "match_name": "Manel", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-0dcb5849", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d417bba3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fluxo Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MiC E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "condition": 100, - "full_name": "Randal", - "attributes": { - "laning": 67, - "mechanics": 69, - "discipline": 71, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Lucas Mateus Gondim", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-01-02", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824287789_Randal.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-db1578e8", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "condition": 100, - "full_name": "Buero", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "Buero", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e340e76a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "Samkz", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Samkz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e76aecc6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LOUD Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Liberty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Flamengo MDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ei Nerd Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "condition": 100, - "full_name": "Makes", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 69, - "macro_play": 65, - "consistency": 64, - "shotcalling": 70, - "teamfighting": 63, - "champion_pool": 68, - "mental_resilience": 67 - }, - "match_name": "Gabriel Nemeth Ramos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-10-10", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-11-05", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824190395_Makes.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7ebf5fa", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "condition": 100, - "full_name": "sarolu", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 71, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "sarolu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ecfc91ea", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "condition": 100, - "full_name": "CarioK", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 70, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 68, - "mental_resilience": 71 - }, - "match_name": "CarioK", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f041a4f2", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LØS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Raizen E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "VKS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Alpha7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Corinthians Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Telas", - "attributes": { - "laning": 69, - "mechanics": 71, - "discipline": 69, - "macro_play": 70, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Luis Gustavo de Lima Drumond", - "contract_end": "2026-11-16", - "date_of_birth": "2004-07-05", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824010653_Telas.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-2ec1b6c9", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f12e7160", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Izanagi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "7REX", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "condition": 100, - "full_name": "Lolo", - "attributes": { - "laning": 67, - "mechanics": 64, - "discipline": 72, - "macro_play": 68, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Lorenzo Mariano Almeida Cortes Felix", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-05", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-22", - "nationality": "BR", - "profile_image_url": "/player-photos/1779823717819_Lolo.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f71b94d0", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "condition": 100, - "full_name": "Gru", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 70, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Gru", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f9ec8b51", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FURIA Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RMD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "condition": 100, - "full_name": "CRa", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 70, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Cauã Rios Abreu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-10", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-06-30", - "nationality": "BR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ff994c1c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "paiN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "paiN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RED Canids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! IDL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "condition": 100, - "full_name": "Grevthar", - "attributes": { - "laning": 69, - "mechanics": 73, - "discipline": 65, - "macro_play": 70, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "match_name": "Daniel Xavier Ferreira", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-08-24", - "nationality": "BR", - "profile_image_url": "/player-photos/1779824309778_Grevthar.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/ebl_players.json b/data/erls/players/ebl_players.json deleted file mode 100644 index 77db99f32..000000000 --- a/data/erls/players/ebl_players.json +++ /dev/null @@ -1,6375 +0,0 @@ -{ - "name": "EBL Players", - "description": "EBL - 2026 Season", - "players": [ - { - "id": "player-07206a0d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Afreeca Freecs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team BattleComics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Afreeca Freecs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "VSG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "VSG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BOOM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TSM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "condition": 100, - "full_name": "Ruby", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Lee Sol-min", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-08-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779860708374_Ruby__Lee_Sol-min_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "5 Hydra Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Hillerød eSport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Infernal Void", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Split Raiders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GTZ Bulls", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Infernal Void", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nordavind Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Black Lion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lucent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Nexus KTRL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ankora Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Klanik Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-08d1b7b0", - "match_name": "Damir Galovac", - "full_name": "Sintax", - "date_of_birth": "1998-06-26", - "nationality": "HR", - "profile_image_url": "/player-photos/1779861090983_Sintax.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-0b38b027", - "match_name": "Kristian Hoang", - "full_name": "Krisimaru", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861305523_Krisimaru.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0cb1fcb0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Nexus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MAD Lions Madrid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "neXtPlease! Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nexus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Resolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Z10 ESHARK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ECORP", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Stormbringers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "White Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "condition": 100, - "full_name": "Kaylem", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Melik Erdogan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-03-29", - "nationality": "RO", - "profile_image_url": "/player-photos/1779860923695_Kaylem.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0da4dd16", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "FloreNNNz", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Asen Popov", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861312149_FloreNNNz.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3359999b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-10d0fa24", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "condition": 100, - "full_name": "Dzoni", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Dzoni", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779861780746_lv4q12i7nae.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1274ebc8", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Illés Akadémia Spirit", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Passzi", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Vencel Urbin", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779861087944_Passzi.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-b09886df", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-14618541", - "match_name": "Dimitar Atanasov", - "full_name": "YoPoopU", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861315098_YoPoopU.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-184b4bb4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DELTALAND", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Yutoru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "condition": 100, - "full_name": "Crem", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Ozan Tunalı", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": "/player-photos/1779860655518_Crem.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-23a8eb1a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "condition": 100, - "full_name": "Death (Lyuboslav Nedelev)", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Lyuboslav Nedelev", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861302207_Death__Lyuboslav_Nedelev_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-26720a69", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Illés Akadémia Spirit", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "condition": 100, - "full_name": "Bala", - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 64, - "macro_play": 61, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Áron Balogh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779860079448_Bala___ron_Balogh_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-29ad6a1d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Chasing Haze 07", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Yutoru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Chasing Haze 07", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Justcan", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 61, - "macro_play": 63, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Samet Can Akıllı", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": "/player-photos/1779860659130_Justcan.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-aa50d684", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c37e982", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Demise Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "condition": 100, - "full_name": "Blankk", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 59, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 59 - }, - "match_name": "Fran Mumelas", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859574073_Blankk.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-30f598ac", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Du Sud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Parakeet Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Project Conquerors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zephyr Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Emerald Prisoners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "condition": 100, - "full_name": "Metroflox", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Florent Broucke", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779860648718_Metroflox.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-389f8828", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Szata Maga", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Esports Perf Center", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gentle Mates", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gentle Mates", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Erdote", - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Robert Nowak", - "date_of_birth": "1999-07-19", - "nationality": "PL", - "profile_image_url": "/player-photos/1779860716907_Erdote.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-dc2f50f2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-391a94d0", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Mood", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 58, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "Máté Pintér", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779860091658_Mood__M_t__Pint_r_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d233408", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "condition": 100, - "full_name": "VeRu", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Veljko Rutešić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-06-19", - "nationality": "RS", - "profile_image_url": "/player-photos/1779860930034_VeRu.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-41572139", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Garden Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Spawn Peek", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "condition": 100, - "full_name": "Krasito", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 62, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Krasimir Staykov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2009-02-10", - "nationality": "BG", - "profile_image_url": "/player-photos/1779860996914_Krasito.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-429357ce", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Seoul Neon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "condition": 100, - "full_name": "Chan", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Jang Chan-ho", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-12-19", - "nationality": "KR", - "profile_image_url": "/player-photos/1779860700467_Chan__Jang_Chan-ho_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Afterglow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Horizon Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Horizon Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RIFT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "WiLD MultiGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RIFT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "WiLD MultiGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - } - ], - "id": "player-4e77d11d", - "match_name": "Bálint Paksai", - "full_name": "Paresz", - "date_of_birth": "2000-09-30", - "nationality": "", - "profile_image_url": "/player-photos/1779860082375_Paresz.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-59b340bf", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Epic Avalanche", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Razor's Edge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "G2 Vodafone", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Greek Regenesis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "G2 Vodafone", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Greek Regenesis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RIFT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ASUS ROG ELITE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ASUS ROG ELITE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ŠAIM SE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SuppUp eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tasteless", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Igor Radusinović", - "date_of_birth": "1997-11-02", - "nationality": "RS", - "profile_image_url": "/player-photos/1779860577513_Tasteless.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-db2b783a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5bd073ec", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "condition": 100, - "full_name": "Pivolj", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Pivolj", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779861801768_ktiwd0cwj4.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5fd405de", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "condition": 100, - "full_name": "Baki", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Baki", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779862027360_ap5zp3jyyx.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-61b2b1ba", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "PENTA Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "FALKN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Level Up esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PENTA Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Nerotec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nordavind", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SLO REJECTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Upper Echelon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Queso", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Webidoo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "condition": 100, - "full_name": "Lotuss", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 58, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 58 - }, - "match_name": "Dušan Nedeljković", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-12-23", - "nationality": "RS", - "profile_image_url": "/player-photos/1779860566396_Lotuss.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-64abdffe", - "match_name": "Ivan Velchev", - "full_name": "Velchev", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861308753_Velchev.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-68c63be5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Illés Akadémia Spirit", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "condition": 100, - "full_name": "Endless", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Bence Tóth-Szeles", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779860089538_Endless__Bence_T_th-Szeles_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6f5cd930", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "beGenius ESC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "mYinsanity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Klanik Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Falke Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MT1 Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "condition": 100, - "full_name": "Pesho", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Nikola Peshevski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": "/player-photos/1779860571273_Pesho.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-71491fba", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "x25 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "x25 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "inFerno eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "x25 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "HG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Level Up esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team oNe eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SuppUp eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team oNe eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Aegis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Aegis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "condition": 100, - "full_name": "Ryuzaki", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Dušan Petković", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-06-05", - "nationality": "PR", - "profile_image_url": "/player-photos/1779861074661_Ryuzaki.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-763d6923", - "match_name": "Lovre Bilić", - "full_name": "Igloodan", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859828972_Igloodan.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-793b651d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "New Era", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "condition": 100, - "full_name": "Exile1", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Andrei Popa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-10-30", - "nationality": "RO", - "profile_image_url": "/player-photos/1779860926342_Exile1.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-79eb4eac", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Level Up esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Nerotec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "x25 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fact Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SLO REJECTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Queso", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ici Japon Corp.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ici Japon Corp.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "condition": 100, - "full_name": "PatkicaA", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Aleksandar Stefanović", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779860558790_PatkicaA.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7dbbe959", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Grow uP eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Spawn Peek", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "condition": 100, - "full_name": "Partyfosil", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Borjan Nikolovski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": "/player-photos/1779861000289_Partyfosil.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7eb7b384", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GamerLegion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GamerLegion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GIANTX PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GIANTX PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "condition": 100, - "full_name": "Ferret", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Hakan Mert Çakmak", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-11-24", - "nationality": "TR", - "profile_image_url": "/player-photos/1779860704389_Ferret.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-80e82644", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Emperor Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zerolag Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Diamant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Diamant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "condition": 100, - "full_name": "Shy Carry", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Đorđe Stišović", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-04-21", - "nationality": "PR", - "profile_image_url": "/player-photos/1779860710651_Shy_Carry.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8508fc02", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPAXFAMILY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Spawn Peek", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "condition": 100, - "full_name": "Ludas Matyi", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "Mário Molnár", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": "/player-photos/1779861005038_Ludas_Matyi.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-89d836d2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "condition": 100, - "full_name": "Yuki", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 58, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Lovro Jukić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859577720_Yuki__Lovro_Juki__.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8ba0cead", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fantastic Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "condition": 100, - "full_name": "Danilo", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 59, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 58 - }, - "match_name": "Deni Prtenjača", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859564210_Danilo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8e44aeb5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GTZ Bulls", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Austrian Force", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Warthox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "beGenius ESC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MHSC Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Emerald Prisoners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tan'i eSports CZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "condition": 100, - "full_name": "FSZ", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Simar Nashidov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-10-29", - "nationality": "BG", - "profile_image_url": "/player-photos/1779860651679_FSZ.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-903ddddc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bitfix Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Method2Madness", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TDC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Nexus KTRL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lazy In Life", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lazy In Life", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "condition": 100, - "full_name": "Falleo", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Karlo Kovačić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-03-10", - "nationality": "HR", - "profile_image_url": "/player-photos/1779861069950_Falleo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-95719ea9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "condition": 100, - "full_name": "Vladichich", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Matej Vladić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-06-16", - "nationality": "HR", - "profile_image_url": "/player-photos/1779860933677_Vladichich.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-97c9ae0a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "HEET", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inaequalis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Corax Gaming Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Sampi", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "condition": 100, - "full_name": "STANIK", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Stanislav Hynk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779861081748_STANIK.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TQ DURPA KASHLQ", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-9ebaddac", - "match_name": "Denis Borisov", - "full_name": "Draxo5", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861301011_Draxo5.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a7cb44fc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fantastic Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "condition": 100, - "full_name": "Sikterr", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 61, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 57 - }, - "match_name": "Roko Karamatić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859567991_Sikterr.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b1125bfa", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "neXtPlease! Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "neXtPlease! Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Sprout", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Sangal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "condition": 100, - "full_name": "Mihai", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Alexandru Mihai Zamfirache", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-07-03", - "nationality": "RO", - "profile_image_url": "/player-photos/1779861086099_Mihai.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b18cd1f9", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "condition": 100, - "full_name": "KURBAX", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "KURBAX", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779862010000_ak4g2s3aic.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bf910d1d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "PAM eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Giants Only The Brave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MAD Lions Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MAD Lions Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Queso", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "BCN Squad", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Movistar Riders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Queso", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Movistar Riders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Queso", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Case Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "condition": 100, - "full_name": "Rayito", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 63, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Michael Curtet Jaimes", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": "/player-photos/1779860572773_Rayito.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bfbaf7d3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Senshi Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Spicy Gorillas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Senshi Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Spawn Peek", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Luknom", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Lukáš Soukup", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779861011425_Luknom.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8b9502f1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bff5d3d6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Spawn Peek", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "condition": 100, - "full_name": "Neczo", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 64, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Anargyros Papaioannou", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779861001556_Neczo.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c66563ef", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diamant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Illés Akadémia Spirit", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Hannover Esports e.V.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "condition": 100, - "full_name": "Blueboar", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 63, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Tibor Jobban", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779860080897_Blueboar.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ca46bcf7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Method2Madness", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "condition": 100, - "full_name": "Lagolinas", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Márton Petrucz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": "/player-photos/1779860086001_Lagolinas.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e0fdf973", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Undertaker", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Undertaker", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779862043552_x35d7yvnrzh.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-500fa635", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7622951", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Candy", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Nenad Jovanovic", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": "/player-photos/1779860935825_Candy__Nenad_Jovanovic_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-cd386f74", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f3b7db20", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dogs of War", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "UniQ Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Reveal Multigaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "condition": 100, - "full_name": "Archfiend", - "attributes": { - "laning": 54, - "mechanics": 60, - "discipline": 60, - "macro_play": 61, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 58, - "mental_resilience": 59 - }, - "match_name": "Anthony Petkov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779860644103_Archfiend.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f8a5c3f7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Oxygen Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Croatian Flair", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "condition": 100, - "full_name": "CROmpir", - "attributes": { - "laning": 61, - "mechanics": 56, - "discipline": 64, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Nikola Jagustin", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": "/player-photos/1779859571591_CROmpir.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/hll_players.json b/data/erls/players/hll_players.json deleted file mode 100644 index 927b271b3..000000000 --- a/data/erls/players/hll_players.json +++ /dev/null @@ -1,5735 +0,0 @@ -{ - "name": "HLL Players", - "description": "HLL - 2026 Season", - "players": [ - { - "id": "player-022f6244", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "APM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "condition": 100, - "full_name": "Prosty", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Dimitris Aggelos Chiotelis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-09-18", - "nationality": "GR", - "profile_image_url": "/player-photos/1779873997221_Prosty.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0c105108", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Ionikos Nikaias", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SINS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "REAVER (Giannis Dimitrelis)", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 64, - "macro_play": 66, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Giannis Dimitrelis", - "date_of_birth": "2002-08-30", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874032263_REAVER__Giannis_Dimitrelis_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-292851e3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "K1ckbait", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Dimitris Mixopoulos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-08-18", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874053264_K1ckbait.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2b8f258b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "Raizy", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 65, - "macro_play": 62, - "consistency": 60, - "shotcalling": 65, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Raizy", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2ba313af", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "condition": 100, - "full_name": "Ace", - "attributes": { - "laning": 64, - "mechanics": 60, - "discipline": 68, - "macro_play": 62, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 64 - }, - "match_name": "Ace", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3f11bfa5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "Cripple", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 66, - "macro_play": 62, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Viktor Milanović", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-25", - "nationality": "RS", - "profile_image_url": "/player-photos/1779874049117_Cripple.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4def1a81", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "VIRUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "LUL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Optimization Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Outlawz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Reformed Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "VIRUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CBS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Convict of Shadows", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LUL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nordavind Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Pyrsos Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rejects Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LUL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SLR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "VG Phenomenon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SLR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Legion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Mythic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "condition": 100, - "full_name": "Jimsnop", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Dimitris Dimitropoulos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-11-06", - "nationality": "GR", - "profile_image_url": "/player-photos/1779873993267_Jimsnop.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-53bcdbcf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NLD eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Pyrsos Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NLD eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "VG Phenomenon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ionikos Nikaias", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SINS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SINS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "condition": 100, - "full_name": "Druxy", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Apostolis Kabosos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779874054588_Druxy.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TT willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "XAL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MS Company", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - } - ], - "attributes": { - "laning": 73, - "mechanics": 68, - "discipline": 75, - "macro_play": 71, - "consistency": 70, - "shotcalling": 68, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 74 - }, - "id": "player-58912b88", - "match_name": "Gia Huy Khuat", - "full_name": "Addusto", - "date_of_birth": "2005-12-16", - "nationality": "DE", - "profile_image_url": "/player-photos/1779874104656_Addusto.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Movistar Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Stormbringers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Movistar Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Origen SB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Astralis SB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AYM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Atletec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "attributes": { - "laning": 69, - "mechanics": 72, - "discipline": 70, - "macro_play": 75, - "consistency": 71, - "shotcalling": 72, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 70 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-6d2ca6cd", - "match_name": "Sergi Señé Molist", - "full_name": "CRoNiiK", - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779874027647_CRoNiiK.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-70b58dd0", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Team Empire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team Empire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team Just", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Team Just", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Just.ICE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Just", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dragon Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "M19", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Just", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dragon Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gambit Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gambit Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Unicorns of Love", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Unicorns of Love", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BIG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IziDream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lekcyc", - "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 64, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Alexander Leksikov", - "date_of_birth": "1996-07-24", - "nationality": "RU", - "profile_image_url": "/player-photos/1779874120925_Lekcyc.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7190040f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Flama Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flama Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RNL ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Villarreal QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Project Conquerors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Abagnale", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 66, - "macro_play": 66, - "consistency": 65, - "shotcalling": 59, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 65 - }, - "match_name": "Yusuf Semih Bilir", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": "/player-photos/1779874057766_Abagnale.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-92da5b60", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-72d33bdb", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "GaraXy", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 61, - "mental_resilience": 65 - }, - "match_name": "GaraXy", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-73e94a07", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamers404", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "condition": 100, - "full_name": "Elix1r", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 64, - "mental_resilience": 65 - }, - "match_name": "Aggelos Kosterias", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-10-04", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874048249_Elix1r.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81bb6359", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Akademia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Akademia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "BloodRain", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "QLASH Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "x25 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7 Pompa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7 White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "FALKN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Pompa Team Acad.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "7more7 Pompa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "G2 Arctic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PDW", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "G2 Arctic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Color", - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 68, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Sebastian Czyżyk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-12-06", - "nationality": "PL", - "profile_image_url": "/player-photos/1779874026057_Color.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81e016be", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BERZLOY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "REDPack Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "REDPack Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "Azu (Robert Jarcu)", - "attributes": { - "laning": 60, - "mechanics": 64, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 62 - }, - "match_name": "Robert Jarcu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-05-23", - "nationality": "RO", - "profile_image_url": "/player-photos/1779874056984_Azu__Robert_Jarcu_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8717e0db", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "4Elements Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "4Elements Scuttle Squad", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSV Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSports Cologne", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Reveal Multigaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SixSeven", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Mahonix", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 65, - "macro_play": 67, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Anthonie van Bemmelen", - "date_of_birth": "2002-03-20", - "nationality": "NL", - "profile_image_url": "/player-photos/1779874007799_Mahonix.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-86bb25d6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8959e40e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ambys Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SINS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Drofan", - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 64, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Avraam Tsakiridis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-06-03", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874108087_Drofan.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-89b58605", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "condition": 100, - "full_name": "Alex", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Alex", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-912c10cc", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Convict of Shadows", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Convict of Shadows", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "New Era", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Speedy1", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Loukas Prekas", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779874026553_Speedy1.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-2e0c08a9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-939bf4aa", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "condition": 100, - "full_name": "SM", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "SM", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-97f6c89d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Abyssal E.C.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Phlox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dream Makers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Erfolg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "PDK Sideral", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Erfolg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Guinea Pink", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Tan'i eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "EscoX", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 65, - "macro_play": 64, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 64, - "mental_resilience": 63 - }, - "match_name": "Javier Escobedo Sevilla", - "date_of_birth": "1999-06-23", - "nationality": "ES", - "profile_image_url": "/player-photos/1779874043067_EscoX.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-ca24ae43", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9996ddf4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Gaming Hive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CBS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Genji", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Vaynedeta", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Stavros Giannoulakis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-09-27", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874030814_Vaynedeta.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9da643ae", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-608ecbe2", - "condition": 100, - "full_name": "Matixx", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 65, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Matixx", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a435f989", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "condition": 100, - "full_name": "Septico1", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 65, - "macro_play": 62, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Septico1", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a45f1314", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Aris Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dawn of Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Rocket", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Game Changers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NLD eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Peppe", - "attributes": { - "laning": 68, - "mechanics": 66, - "discipline": 66, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Petros Berdebes", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-19", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874029345_Peppe.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-aa415602", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cidade Curiosa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GeekCase eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "condition": 100, - "full_name": "D4rtaine", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "David Pires", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-05-18", - "nationality": "PT", - "profile_image_url": "/player-photos/1779873984525_D4rtaine.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ad8acba1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "5 Ronin Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Chasing Haze 07", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Alix", - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 67, - "macro_play": 67, - "consistency": 68, - "shotcalling": 59, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Alihan Özdemir", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-08-14", - "nationality": "TR", - "profile_image_url": "/player-photos/1779874112015_Alix.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b4598e15", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "condition": 100, - "full_name": "Leon (Leonidas Vogiatzis)", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Leonidas Vogiatzis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779873987947_Leon__Leonidas_Vogiatzis_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-be301281", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Zhonyas Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FoxFire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "condition": 100, - "full_name": "Nikiyas", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Nikitas Stefanakis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-05-09", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874113326_Nikiyas.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c217cfa2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pentagon Maze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Ionikos Nikaias", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Pentagon Maze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "condition": 100, - "full_name": "Pallet", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Angelos Visvikis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-06-21", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874015489_Pallet.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c7f9cd49", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "EGN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EGN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "QLASH Spain", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vantex Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tochas", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 65, - "macro_play": 64, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 63 - }, - "match_name": "Duarte Martins Vieira", - "date_of_birth": "2004-06-02", - "nationality": "PT", - "profile_image_url": "/player-photos/1779874058356_Tochas.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-b2dec67c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cba3d205", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NVision Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TP Community", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Project Sinners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ankora Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "condition": 100, - "full_name": "Faded (Anastasios Koutsouras)", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 68, - "macro_play": 62, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 66 - }, - "match_name": "Anastasios Koutsouras", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-07-21", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874040382_Faded__Anastasios_Koutsouras_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Giants Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Abyssal E.C.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Kawaii Kiwis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Abyssal E.C.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BCN Squad", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zeta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Case Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Case Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Heracles Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Melilla Fortune", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Falke Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vantex Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 64, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 60, - "mental_resilience": 62 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 77, - "transfer_listed": false, - "id": "player-cea7803b", - "match_name": "Ignacio David Piaggio", - "full_name": "Ace (Ignacio David Piaggio)", - "date_of_birth": "2007-04-18", - "nationality": "CU", - "profile_image_url": "/player-photos/1779874041876_Ace__Ignacio_David_Piaggio_.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-ca24ae43", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cf100a02", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "condition": 100, - "full_name": "Nikolex", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 - }, - "match_name": "Nikolex", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d7451d6f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Zhonyas Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Comanchero Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "condition": 100, - "full_name": "Loading", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 60, - "shotcalling": 59, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 60 - }, - "match_name": "Berkay Çelebi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-10-16", - "nationality": "TR", - "profile_image_url": "/player-photos/1779874037798_Loading.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da31c731", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TP Community", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EYA X Prestige", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eintracht Frankfurt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "condition": 100, - "full_name": "Unkn0wn5", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Paraskevas Fragkos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779874024190_Unkn0wn5.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da5ed41c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Gaming Hive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Genji", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Olympus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wizards", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Wizards", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Stormbringers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "condition": 100, - "full_name": "Tsiperakos", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Vasilis Lalas", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-09-27", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874019850_Tsiperakos.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dc41310e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ALMO Players", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "condition": 100, - "full_name": "Ambush", - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 61, - "macro_play": 60, - "consistency": 59, - "shotcalling": 65, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "Panagiotis Thymio", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-08", - "nationality": "GR", - "profile_image_url": "/player-photos/1779874052017_Ambush.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e4a6342d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dragon Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "condition": 100, - "full_name": "KPr", - "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 60, - "macro_play": 66, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Maxim Grebonos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-04-19", - "nationality": "MD", - "profile_image_url": "/player-photos/1779874044432_KPr.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e66132bd", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Intrepid Fox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "condition": 100, - "full_name": "Fame", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 67, - "macro_play": 60, - "consistency": 60, - "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Vasilis Amiridis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": "/player-photos/1779874038990_Fame.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82f8e30c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nordavind Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "00 Nation", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Nordavind Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "condition": 100, - "full_name": "Smurfe", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Felix Rivedal Hylleseth", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-27", - "nationality": "NO", - "profile_image_url": "/player-photos/1779874014042_Smurfe.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eab83b8b", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lagas", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Lagas", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8aeeec01", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fb63ac1b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MS Company", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Project Conquerors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "condition": 100, - "full_name": "Kuroneel", - "attributes": { - "laning": 62, - "mechanics": 67, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Romain Poilane", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779874050223_Kuroneel.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/hm_players.json b/data/erls/players/hm_players.json deleted file mode 100644 index 30b17e9f3..000000000 --- a/data/erls/players/hm_players.json +++ /dev/null @@ -1,6954 +0,0 @@ -{ - "name": "HM Players", - "description": "HM - 2026 Season", - "players": [ - { - "id": "player-005e1b70", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RAMS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRUTE Talents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRUTE Talents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SINNERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SINNERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Strode", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Šimon Povýšil", - "date_of_birth": "2005-10-31", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873234405_Strode.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-08074e26", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ECLOT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Universe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Qmistry", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dunzi", - "attributes": { - "laning": 56, - "mechanics": 55, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 57 - }, - "match_name": "Samuel Koráb", - "date_of_birth": "2002-12-13", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873263589_Dunzi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-09a1d121", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Domocles", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Domocles", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - } - ], - "id": "player-0ca2e82d", - "match_name": "Filip Šafarčík", - "full_name": "Safo", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873263143_Safo.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Gaming Hive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gaming Hive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ionikos Nikaias", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - } - ], - "id": "player-13c1e39d", - "match_name": "Ahilleas Natsis", - "full_name": "SneakyLemon", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873282871_SneakyLemon.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-15755080", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Robi", - "attributes": { - "laning": 58, - "mechanics": 56, - "discipline": 57, - "macro_play": 61, - "consistency": 58, - "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 56, - "mental_resilience": 58 - }, - "match_name": "Robi", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-188a7b8d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Away from Normal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Away from Normal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Vasco", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Paweł Machnik", - "date_of_birth": "2004-09-23", - "nationality": "PL", - "profile_image_url": "/player-photos/1779873229588_Vasco.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1976edad", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MVE ANO Master Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "SiroN1", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Maciej Kowal", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779873227968_SiroN1.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "id": "player-1de7d051", - "match_name": "David Roudaut", - "full_name": "Dadou", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873276192_Dadou.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2170ed2a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Esport Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Jlingz Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OGC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "BlackSwan", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "René Souček", - "date_of_birth": "2000-04-17", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873224266_BlackSwan.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - } - ], - "id": "player-22c50a94", - "match_name": "Tomáš Velička", - "full_name": "Xavis", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873258206_Xavis.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-22cdf4c9", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Baro", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 60, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Bartłomiej Bukowski", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779873212305_Baro.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-249e69f5", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Ion Squad Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "DVLK", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Marek Netrval", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873235469_DVLK.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2585f5fa", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dark Tigers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dark Tigers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FlameHard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Raining", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Matúš Mazur", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2002-12-12", - "nationality": "SK", - "profile_image_url": "/player-photos/1779873655706_Raining__Mat___Mazur_.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c5adadb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rulers Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rulers Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "IMPERISHABLE CLAN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Divernex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "JJirkos", - "attributes": { - "laning": 60, - "mechanics": 54, - "discipline": 59, - "macro_play": 57, - "consistency": 57, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Jiří Sýkora", - "date_of_birth": "2005-09-16", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873278565_JJirkos.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2cca45b8", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lefterakiss", - "attributes": { - "laning": 56, - "mechanics": 53, - "discipline": 61, - "macro_play": 54, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Lefterakiss", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2eddc7c7", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gifted Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rulers Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Sampi", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Parakeet Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Parakeet Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Adyyy", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Adam Kop", - "date_of_birth": "2006-08-25", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873650702_Adyyy.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2f69c706", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ESPORT ARENA DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EMP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Drzemik", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Konrad Stanoch", - "date_of_birth": "2005-09-16", - "nationality": "PL", - "profile_image_url": "/player-photos/1779873283784_Drzemik.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-326e2caa", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "behave", - "attributes": { - "laning": 56, - "mechanics": 61, - "discipline": 54, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 57 - }, - "match_name": "behave", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-33774016", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRUTE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BRUTE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Munet", - "attributes": { - "laning": 55, - "mechanics": 53, - "discipline": 56, - "macro_play": 54, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 52, - "champion_pool": 61, - "mental_resilience": 54 - }, - "match_name": "Alex Míka", - "date_of_birth": "1999-05-19", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873276055_Munet.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-33c5b28c", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Piwek", - "attributes": { - "laning": 61, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 57, - "mental_resilience": 62 - }, - "match_name": "Piwek", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-37e12b7d", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dadou", - "attributes": { - "laning": 64, - "mechanics": 61, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Dadou", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-39c88777", - "match_name": "Mostafa Ahmed", - "full_name": "Zeal", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3fd8c5fe", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Koresh", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Grisha Mareev", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": "/player-photos/1779873285267_Koresh.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WeSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropy x Teufel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fantastic Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Entropy x Teufel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "id": "player-432d39e2", - "match_name": "Mustafa Yilmaz", - "full_name": "MrJackson", - "date_of_birth": "2002-09-03", - "nationality": "", - "profile_image_url": "/player-photos/1779873246904_MrJackson.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-50f22dc7", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Qualzy", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Miķelis Dzelve", - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": "/player-photos/1779873646283_Qualzy.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-55580c8c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RNL ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Interor", - "attributes": { - "laning": 58, - "mechanics": 55, - "discipline": 58, - "macro_play": 54, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 56 - }, - "match_name": "Viktor Liptai", - "date_of_birth": "2001-10-04", - "nationality": "K", - "profile_image_url": "/player-photos/1779873259748_Interor.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-57559cf2", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPAXFAMILY", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dyego", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Adrián Talán", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": "/player-photos/1779873220266_Dyego.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5c24770f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inaequalis Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "STOPWATCH eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY5 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OGC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Andromeda Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Andromeda Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Didie", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Marek Ferneza", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": "/player-photos/1779873274845_Didie.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "id": "player-5fc13a3d", - "match_name": "Nhat Hong Phamová", - "full_name": "Hanii", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873279599_Hanii.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6ae71ad2", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Oplon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "TrainHard eSport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GameWard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BIG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Du Sud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Du Sud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "SLT", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Enzo Gonzalez", - "date_of_birth": "2000-11-17", - "nationality": "FR", - "profile_image_url": "/player-photos/1779873221868_SLT.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "id": "player-6e2081ea", - "match_name": "Bartek Piasecki", - "full_name": "Barti", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873295224_Barti.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "id": "player-702a0b68", - "match_name": "Daniel Žabenský", - "full_name": "Vyni", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873291701_Vyni.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7543d642", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Chilli Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maverix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bobsik", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Matyáš Dobeš", - "date_of_birth": "2006-06-15", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873644163_Bobsik.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-759066ae", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Krosak", - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 64, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Krosak", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "REViTAL Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rulers Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rulers Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "IMPERISHABLE CLAN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - } - ], - "id": "player-7cc302b4", - "match_name": "Josef Kovář", - "full_name": "Chimer", - "date_of_birth": "1995-06-06", - "nationality": "", - "profile_image_url": "/player-photos/1779873286591_Chimer.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Phlox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "X7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wizards", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Twisted Minds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Twisted Minds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FlameHard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - } - ], - "id": "player-839a50ce", - "match_name": "Konstantin Kain", - "full_name": "Anonymouss", - "date_of_birth": "2001-07-19", - "nationality": "", - "profile_image_url": "/player-photos/1779873250745_Anonymouss.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-84345e75", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Skyp", - "attributes": { - "laning": 59, - "mechanics": 56, - "discipline": 56, - "macro_play": 57, - "consistency": 57, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 61, - "mental_resilience": 56 - }, - "match_name": "Skyp", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8cb6dc40", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Zhonyas Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Mita", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Mattia Masopust", - "date_of_birth": "2004-06-14", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873660117_Mita.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8d42d200", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ECLOT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gunrunners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inaequalis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Munster Rugby Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ethereal Enigmas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Inspire", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Jiří Zoufalý", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873280070_Inspire.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-90192578", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVE ANO Master Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Albi¡", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Albert Bera", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779873216344_Albi__Albert_Bera_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-904177c9", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Hunter", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Hunter", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVE ANO Master Academy", - "appearances": 0 - } - ], - "id": "player-96bc3a10", - "match_name": "Przemysław Janowski", - "full_name": "Klopsik", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873235709_Klopsik.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FLY5 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "REViTAL BLACKTRAiNS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "id": "player-977ce5d4", - "match_name": "Jiří Zeman", - "full_name": "Fishireal", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873231668_Fishireal.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-99d3171a", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Elitex", - "attributes": { - "laning": 56, - "mechanics": 52, - "discipline": 64, - "macro_play": 53, - "consistency": 52, - "shotcalling": 56, - "teamfighting": 52, - "champion_pool": 55, - "mental_resilience": 60 - }, - "match_name": "Elitex", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a4743820", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "REViTAL Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rift Rats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "cowana Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Munster Rugby", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "cowana Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Munster Rugby", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "IKISEQ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "CHECKFIDER", - "attributes": { - "laning": 58, - "mechanics": 56, - "discipline": 63, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 55, - "mental_resilience": 58 - }, - "match_name": "Lukáš Nevyjel", - "date_of_birth": "2003-08-12", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873272086_CHECKFIDER.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a90880fa", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Black Panthers eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Sampi", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Parakeet Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Parakeet Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Marco", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Marco Isoletta", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": "/player-photos/1779873247071_Marco__Marco_Isoletta_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-aa6d26bd", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "h0pe", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "h0pe", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b13b00e9", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "One Piece eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Revenge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Szaty Bobra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Savero", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 56, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Jiří Odehnal", - "date_of_birth": "2004-05-26", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873227992_Savero.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bf060354", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dzeffry", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 63, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Tadeáš Kaše", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873230687_Dzeffry.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ERN ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Caldya Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - } - ], - "id": "player-bf502604", - "match_name": "Gurjot Singh", - "full_name": "Nan0", - "date_of_birth": "2004-01-25", - "nationality": "", - "profile_image_url": "/player-photos/1779873254627_Nan0.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ERKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tan'i eSports CZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - } - ], - "id": "player-c97ba69f", - "match_name": "Adam Landauf", - "full_name": "LANDY", - "date_of_birth": "2005-03-19", - "nationality": "", - "profile_image_url": "/player-photos/1779873251450_LANDY.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cc02ccfc", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "eKoVy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Downed", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 54, - "macro_play": 56, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 59, - "mental_resilience": 56 - }, - "match_name": "Patrik Kaluža", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": "/player-photos/1779873267375_Downed.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d007a835", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "eXtatus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "eXtatus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "eXtatus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Fraternitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Fraternitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Penguins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "x6tence", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "LanCraft", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Millenium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Penguins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Srdce nehasnou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BT Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Denyk", - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Petr Haramach", - "date_of_birth": "1995-04-30", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873242525_Denyk.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-193151e6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d0e5cafb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "ECLOT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "REViTAL Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PENTA 1860", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "S2V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SixSeven", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Robocop", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 55, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Ondřej Sklenička", - "date_of_birth": "2000-06-08", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873246249_Robocop.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d1aac738", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Espergærde eSport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot Talents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Skyp", - "attributes": { - "laning": 58, - "mechanics": 55, - "discipline": 56, - "macro_play": 57, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 55, - "mental_resilience": 55 - }, - "match_name": "Filip Trefný", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873273593_Skyp.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-da129d80", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d46be96c", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Hades2", - "attributes": { - "laning": 55, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Hades2", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e1cc13b1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Deepe", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 64, - "macro_play": 60, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Peter Gramata", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": "/player-photos/1779873237344_Deepe.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e8381fbf", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FLY5 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inaequalis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BlueWhites", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Espergærde eSport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "REViTAL BLACKTRAiNS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Delta Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "MyCash", - "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 58, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 56 - }, - "match_name": "Ondřej Mikeš", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873269569_MyCash.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e9867b5a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inaequalis Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "eKoVy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "IKISEQ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "IKISEQ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "KNEZA", - "attributes": { - "laning": 56, - "mechanics": 60, - "discipline": 63, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Vojtěch Kněžíček", - "date_of_birth": "2004-02-25", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873242186_KNEZA.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "REDPack Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-ee44393b", - "match_name": "Ken Le", - "full_name": "Ray", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "id": "player-ef3c9acb", - "match_name": "Mateusz Adamczyk", - "full_name": "Nvidek", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779873288107_Nvidek.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Monta Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bohemian Guardians", - "appearances": 0 - } - ], - "id": "player-f1b77df8", - "match_name": "Enric Ferrer Herraiz", - "full_name": "Enricfh", - "date_of_birth": "2000-01-15", - "nationality": "", - "profile_image_url": "/player-photos/1779873271989_Enricfh.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f1d13d2a", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Afriibi", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 56, - "mental_resilience": 58 - }, - "match_name": "Afriibi", - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fcd4b0fb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Galions Sharks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Galions Sharks", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "J3rkie", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 58, - "macro_play": 63, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Erik Polák", - "date_of_birth": "2003-09-25", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779873259488_J3rkie.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-19466153", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lckcl_players.json b/data/erls/players/lckcl_players.json deleted file mode 100644 index 5e185f821..000000000 --- a/data/erls/players/lckcl_players.json +++ /dev/null @@ -1,5457 +0,0 @@ -{ - "name": "LCKCL Players", - "description": "LCKCL - 2026 Season", - "players": [ - { - "id": "player-fd1221fe", - "wage": 83000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "KT Rolster Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "position": "Support", - "condition": 100, - "full_name": "Peter", - "attributes": { - "laning": 66, - "mechanics": 76, - "discipline": 82, - "macro_play": 79, - "consistency": 78, - "shotcalling": 81, - "teamfighting": 81, - "champion_pool": 70, - "mental_resilience": 79 - }, - "match_name": "Jeong Yoon-su", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 1245000, - "birth_country": null, - "date_of_birth": "2003-04-28", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-0676970a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Spear Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "condition": 100, - "full_name": "Tempester", - "attributes": { - "laning": 74, - "mechanics": 75, - "discipline": 73, - "macro_play": 75, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 72, - "mental_resilience": 71 - }, - "match_name": "Oh Yeong-woong", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-06", - "nationality": "KR", - "profile_image_url": "/player-photos/1779785420635_nzoh17zd25h.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1867a3bb", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Peter", - "attributes": { - "laning": 85, - "mechanics": 84, - "discipline": 88, - "macro_play": 86, - "consistency": 82, - "shotcalling": 87, - "teamfighting": 84, - "champion_pool": 83, - "mental_resilience": 85 - }, - "match_name": "Peter", - "loan_listed": false, - "potential_base": 89, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779559335802_bmw0mymm25b.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-79717137", - "wage": 125000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "position": "Top", - "condition": 100, - "full_name": "Frog", - "attributes": { - "laning": 66, - "mechanics": 69, - "discipline": 73, - "macro_play": 65, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 72, - "mental_resilience": 69 - }, - "match_name": "Lee Min-hoi", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 1875000, - "birth_country": null, - "date_of_birth": "2005-06-30", - "potential_base": 88, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-217fd253", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Griffin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "Nongshim RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "Nongshim RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TT Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "condition": 100, - "full_name": "Wayne ", - "attributes": { - "laning": 73, - "mechanics": 75, - "discipline": 68, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 72, - "mental_resilience": 72 - }, - "match_name": "Hwang Seo-hyeon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779775159934_dd3g713rrrm.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f9ead664", - "wage": 26000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "position": "ADC", - "condition": 100, - "full_name": "Jiwoo", - "attributes": { - "laning": 77, - "mechanics": 75, - "discipline": 78, - "macro_play": 70, - "consistency": 70, - "shotcalling": 68, - "teamfighting": 68, - "champion_pool": 79, - "mental_resilience": 74 - }, - "match_name": "Jung Ji-woo", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2028-11-16", - "market_value": 390000, - "birth_country": null, - "date_of_birth": "2004-03-20", - "potential_base": 84, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/0123667e.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-722557b3", - "wage": 125000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "position": "Support", - "condition": 100, - "full_name": "Bluffing", - "attributes": { - "laning": 64, - "mechanics": 59, - "discipline": 66, - "macro_play": 66, - "consistency": 64, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 61, - "mental_resilience": 70 - }, - "match_name": "Park Gyu-yong", - "loan_listed": false, - "morale_core": {}, - "nationality": "South korea", - "contract_end": "2028-11-17", - "market_value": 1875000, - "birth_country": null, - "date_of_birth": "2008-12-07", - "potential_base": 84, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": "/player-photos/09ed512e.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-29be9689", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRO Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OK BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "OK BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Rolster", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Pollu", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 76, - "macro_play": 74, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 75 - }, - "match_name": "Oh Dong-gyu", - "contract_end": "2026-11-16", - "date_of_birth": "2006-01-07", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826541850_Pollu.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2e567bef", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "Nongshim Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "condition": 100, - "full_name": "DDahyuk", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 72, - "mental_resilience": 72 - }, - "match_name": "An Min-hyuk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-04", - "nationality": "KR", - "profile_image_url": "/player-photos/1779784133517_u4acpgrcosc.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2f023229", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "condition": 100, - "full_name": "Jaehyuk", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Kwon Jae-hyuk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-09-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779710600254_aegxlzhxhq5.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3c60962d", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "condition": 100, - "full_name": "Cracker", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Cracker", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3ea37d37", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dynamics Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nongshim Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Nongshim Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NS Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NS Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "condition": 100, - "full_name": "Sylvie", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 74, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Lee Seung-bok", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-12-04", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826527428_Sylvie.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KDF Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KDF Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Shadow ELG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Scholars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "id": "player-44d6cbd6", - "match_name": "Seong Tae-hyo", - "full_name": "Guardian", - "date_of_birth": "2004-07-16", - "nationality": "", - "profile_image_url": "/player-photos/1779826672081_Guardian__Seong_Tae-hyo_.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f28913fb", - "wage": 50000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-ns-esports-academy", - "position": "Mid", - "condition": 100, - "full_name": "SeTab", - "attributes": { - "laning": 80, - "mechanics": 75, - "discipline": 79, - "macro_play": 80, - "consistency": 82, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 78, - "mental_resilience": 75 - }, - "match_name": "Song Kyeong-jin", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 750000, - "birth_country": null, - "date_of_birth": "2004-10-13", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/035c5fe5.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-e9962c33", - "wage": 113000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-ns-esports-academy", - "position": "Support", - "condition": 100, - "full_name": "Pleata", - "attributes": { - "laning": 72, - "mechanics": 77, - "discipline": 76, - "macro_play": 81, - "consistency": 75, - "shotcalling": 77, - "teamfighting": 78, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Son Min-woo", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 1695000, - "birth_country": null, - "date_of_birth": "2003-03-28", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-524d7dae", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Spear Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-kiwoon-drx-challengers", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Scholars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "SIRIUSS", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 75, - "macro_play": 74, - "consistency": 68, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Go Gun", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2006-06-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783659848_26ebbmwt18a.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-gen-g-global-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b78c5ed2", - "wage": 47000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-ns-esports-academy", - "position": "Jungle", - "condition": 100, - "full_name": "Mihawk", - "attributes": { - "laning": 75, - "mechanics": 73, - "discipline": 70, - "macro_play": 70, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 64, - "mental_resilience": 64 - }, - "match_name": "Kim Joon-hyeong", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2027-11-15", - "market_value": 705000, - "birth_country": null, - "date_of_birth": "2009-12-11", - "potential_base": 90, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-57129936", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-gen-g-global-academy", - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shadow Anyche", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shadow Dawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shadow Dawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "condition": 100, - "full_name": "Dinai", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 75, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Hwang Chi-hyeon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-09-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779785309359_25yiywapak2.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-61aae261", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Loopy", - "attributes": { - "laning": 70, - "mechanics": 76, - "discipline": 67, - "macro_play": 70, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 72, - "mental_resilience": 70 - }, - "match_name": "Kim Dong-hyeon", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2004-06-09", - "nationality": "KR", - "profile_image_url": "/player-photos/1779775620398_ltnwajh0kve.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-dplus-kia-challengers", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-62fd57d5", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Luon", - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 68, - "macro_play": 67, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 67, - "champion_pool": 73, - "mental_resilience": 70 - }, - "match_name": "Lee Hyun-ho", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2003-01-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779708900368_jcafyua2g9m.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-bnk-fearx-youth", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5171726f", - "wage": 50000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "position": "Support", - "condition": 100, - "full_name": "Quantum", - "attributes": { - "laning": 67, - "mechanics": 74, - "discipline": 72, - "macro_play": 78, - "consistency": 79, - "shotcalling": 78, - "teamfighting": 81, - "champion_pool": 72, - "mental_resilience": 74 - }, - "match_name": "Son Jeong-hwan", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 750000, - "birth_country": null, - "date_of_birth": "2004-08-20", - "potential_base": 84, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-6571f5ba", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "condition": 100, - "full_name": "Sero", - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 76, - "macro_play": 75, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 75 - }, - "match_name": "An Hyo-chan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-11-21", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826523048_Sero.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6e134f47", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nongshim Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nongshim Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "condition": 100, - "full_name": "Hwichan", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 74, - "macro_play": 75, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Jeong Hwi-chan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-01-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826531441_Hwichan.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7255573d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KDF Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "condition": 100, - "full_name": "Haetae", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Sim Su-hyeon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-02-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826652606_Haetae.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ad3d0214", - "wage": 50000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "position": "Mid", - "condition": 100, - "full_name": "AkaJe", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 75, - "macro_play": 77, - "consistency": 70, - "shotcalling": 67, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Choi Soo-hyuk", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2028-11-18", - "market_value": 750000, - "birth_country": null, - "date_of_birth": "2008-05-30", - "potential_base": 88, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1583c3ce.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-7687488c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "condition": 100, - "full_name": "Garden", - "attributes": { - "laning": 74, - "mechanics": 75, - "discipline": 74, - "macro_play": 76, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Seol Jeong-won", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-11-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779774915850_Garden__Seol_Jeong-won_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-78eff27e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "condition": 100, - "full_name": "Enosh", - "attributes": { - "laning": 78, - "mechanics": 78, - "discipline": 85, - "macro_play": 78, - "consistency": 78, - "shotcalling": 83, - "teamfighting": 80, - "champion_pool": 79, - "mental_resilience": 82 - }, - "match_name": "Kwak Kyu-jun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-10-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779710401264_nqc3ekmr1wk.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7ff93278", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "PlanB", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 74, - "macro_play": 71, - "consistency": 68, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 72, - "mental_resilience": 72 - }, - "match_name": "Hong Jun-seok", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2006-01-19", - "nationality": "KR", - "profile_image_url": "/player-photos/1779786028361_9541hxnr4ab.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-hanjin-brion-challengers", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82330e76", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "condition": 100, - "full_name": "Zephyr", - "attributes": { - "laning": 68, - "mechanics": 71, - "discipline": 75, - "macro_play": 70, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Hwang Hyeok-su", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-12-08", - "nationality": "KR", - "profile_image_url": "/player-photos/1779707396462_uznw9q881e.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8631f0de", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "condition": 100, - "full_name": "Sharvel", - "attributes": { - "laning": 76, - "mechanics": 75, - "discipline": 70, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 72 - }, - "match_name": "Kim Dan-woo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-08-26", - "nationality": "KR", - "profile_image_url": "/player-photos/1779774706403_Sharvel.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8c91032f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LSB Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OK BRION Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "condition": 100, - "full_name": "Guti", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Moon Jeong-hwan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-04-09", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826660175_Guti__Moon_Jeong-hwan_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8e298458", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "condition": 100, - "full_name": "Pyeonsik", - "attributes": { - "laning": 75, - "mechanics": 76, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 72 - }, - "match_name": "Pyeonsik", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9010ea3a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "condition": 100, - "full_name": "FIESTA", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 74, - "macro_play": 73, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "An Hyeon-seo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-04", - "nationality": "KR", - "profile_image_url": "/player-photos/1779707480149_6adnri0bwwi.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-90cbabea", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "condition": 100, - "full_name": "Lancer", - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 74, - "macro_play": 73, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Han Jeong-heum", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-08-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779709036334_qur8oznb88.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9276105b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "condition": 100, - "full_name": "Frog", - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 73 - }, - "match_name": "Frog", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779560478991_n7jjhe6cb1n.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-65ab088f", - "wage": 119000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-ns-esports-academy", - "position": "Top", - "condition": 100, - "full_name": "Janus", - "attributes": { - "laning": 65, - "mechanics": 72, - "discipline": 73, - "macro_play": 69, - "consistency": 70, - "shotcalling": 69, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 75 - }, - "match_name": "Eom Ye-jun", - "loan_listed": false, - "morale_core": {}, - "nationality": "Korea", - "contract_end": "2026-11-16", - "market_value": 1785000, - "birth_country": null, - "date_of_birth": "2007-01-02", - "potential_base": 88, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-c46f4677", - "wage": 77000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "position": "Jungle", - "condition": 100, - "full_name": "Winner ", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 57, - "macro_play": 60, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 54, - "champion_pool": 64, - "mental_resilience": 56 - }, - "match_name": "Kang Hyeon-wook", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 1155000, - "birth_country": null, - "date_of_birth": "2006-07-29", - "potential_base": 75, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-9a95ae46", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Quantum", - "attributes": { - "laning": 78, - "mechanics": 78, - "discipline": 84, - "macro_play": 78, - "consistency": 78, - "shotcalling": 83, - "teamfighting": 81, - "champion_pool": 79, - "mental_resilience": 81 - }, - "match_name": "Quantum", - "loan_listed": false, - "potential_base": 86, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779559311494_vteaaz2qrjh.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7f2c02a", - "wage": 119000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-ns-esports-academy", - "position": "ADC", - "condition": 100, - "full_name": "Lucy", - "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 67, - "macro_play": 70, - "consistency": 62, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 74, - "mental_resilience": 66 - }, - "match_name": "Hyun Soo-hoon", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 1785000, - "birth_country": null, - "date_of_birth": "2006-06-20", - "potential_base": 84, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-9f9cbe53", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-kiwoon-drx-challengers", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-kiwoon-drx-challengers", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Scholars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lumos", - "attributes": { - "laning": 73, - "mechanics": 68, - "discipline": 76, - "macro_play": 70, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Kim Jae-min", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2007-04-06", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783517089_Lumos.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-gen-g-global-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a0f1de3f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "condition": 100, - "full_name": "Flip", - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Kim Sang-wook", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-05-11", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-05-24", - "nationality": "KR", - "profile_image_url": "/player-photos/1779709268381_wy61b0tuht.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a2d61244", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "condition": 100, - "full_name": "AKaJe", - "attributes": { - "laning": 74, - "mechanics": 75, - "discipline": 74, - "macro_play": 75, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 73 - }, - "match_name": "AKaJe", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779560484145_u1jh10w5hlo.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a947fb1e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "condition": 100, - "full_name": "Jiwoo", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "match_name": "Jiwoo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779560486218_h42pl7krrf.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-acd86dd5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "condition": 100, - "full_name": "Jackal", - "attributes": { - "laning": 76, - "mechanics": 74, - "discipline": 76, - "macro_play": 75, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 72, - "mental_resilience": 74 - }, - "match_name": "Lee Su-min", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-02-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779786283516_a0t04i57pr.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ae1a2b6d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-kiwoon-drx-challengers", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-bnk-fearx-youth", - "team_name": "BNK FEARX Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-bnk-fearx-youth", - "team_name": "BNK FEARX Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Scholars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Memo", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "condition": 100, - "full_name": "MUDAI", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 75, - "macro_play": 68, - "consistency": 68, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 72, - "mental_resilience": 72 - }, - "match_name": "Lee Seon-gyu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-05-21", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783412617_MUDAI.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6f4ad3dc", - "wage": 32000, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SGA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shadow ELG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shadow fOu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shadow IBJ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shadow Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shadow IBJ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "condition": 100, - "full_name": "Kemish", - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 71 - }, - "match_name": "Kim Si-hun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 480000, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-04-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783823721_56cvnpo4r9s.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b398a5ac", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HLE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HLE Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "condition": 100, - "full_name": "Panther", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 76, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Park Ji-ho", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-02-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779786121841_Panther__Park_Ji-ho_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b7172b29", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-kiwoon-drx-challengers", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-kt-rolster-challengers", - "team_name": "KT Rolster Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "condition": 100, - "full_name": "Ripple", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 72 - }, - "match_name": "Byeon Jong-min", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-10-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783001086_Ripple.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b942cab5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lck-cl-dplus-kia-challengers", - "team_name": "Dplus KIA Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ROX COOL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-ns-esports-academy", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-ns-esports-academy", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-ns-esports-academy", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lck-cl-hanjin-brion-challengers", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "condition": 100, - "full_name": "OddEye", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 70, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 71 - }, - "match_name": "Cho Hyung-jin", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-01-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779785867128_2zx6aplm3b1.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c24b484e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DRX Shinhan Bank", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DRX Shinhan Bank", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "condition": 100, - "full_name": "Painter", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Kim Eun-hoo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-09-16", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826656241_Painter.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fe7218c5", - "wage": 20000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "position": "Support", - "condition": 100, - "full_name": "Minous", - "attributes": { - "laning": 45, - "mechanics": 48, - "discipline": 51, - "macro_play": 54, - "consistency": 53, - "shotcalling": 47, - "teamfighting": 52, - "champion_pool": 49, - "mental_resilience": 52 - }, - "match_name": "Kang Min-woo", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-11-16", - "market_value": 300000, - "birth_country": null, - "date_of_birth": "2004-05-03", - "potential_base": 61, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": "/player-photos/01bf1a1e.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-ca0e5ce6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-dn-soopers-challengers", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lck-cl-dn-soopers-challengers", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lck-cl-dn-soopers-challengers", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lck-cl-dn-soopers-challengers", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SoftBank HAWKS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SoftBank HAWKS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Global Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "condition": 100, - "full_name": "Courage", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 73, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 72 - }, - "match_name": "Jeon Hyun-min", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-03-09", - "nationality": "KR", - "profile_image_url": "/player-photos/1779783345562_kyj3xx4iqh.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d3e92fc3", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "condition": 100, - "full_name": "DDoiV", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 73, - "mental_resilience": 73 - }, - "match_name": "Bang Moon-yeong", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2023-10-21", - "nationality": "KR", - "profile_image_url": "/player-photos/1779709125947_6lbchq4s92.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dd29cf26", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "T1 Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Cloud", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Moon Hyeon-ho", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2007-04-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826668212_Cloud__Moon_Hyeon-ho_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e254c8aa", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "condition": 100, - "full_name": "Kangin", - "attributes": { - "laning": 76, - "mechanics": 70, - "discipline": 76, - "macro_play": 72, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Choi Gang-in", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779707289176_qwji1n7jv3.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e55f8ef5", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "condition": 100, - "full_name": "Slayer", - "attributes": { - "laning": 70, - "mechanics": 66, - "discipline": 73, - "macro_play": 67, - "consistency": 67, - "shotcalling": 73, - "teamfighting": 67, - "champion_pool": 73, - "mental_resilience": 71 - }, - "match_name": "Kim Jin-young", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-04-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779708740484_c7vvg1y37c6.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eddde7b7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "condition": 100, - "full_name": "Winner", - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 74, - "macro_play": 75, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 73 - }, - "match_name": "Winner", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779560481998_4jcqstgr5lo.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7b51fd6f", - "wage": 107000, - "stats": { - "appearances": 0 - }, - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "position": "Top", - "condition": 100, - "full_name": "Panther", - "attributes": { - "laning": 55, - "mechanics": 63, - "discipline": 68, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Park-Ji-ho", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2028-11-17", - "market_value": 1605000, - "birth_country": null, - "date_of_birth": "2008-02-05", - "potential_base": 68, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-f396d407", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "CJ Entus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "ESC Ever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "bbq Olivers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "ESC Ever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "bbq Olivers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "SANDBOX Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team BattleComics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "SANDBOX Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "DWG KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DWG KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dplus Kia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dplus Kia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Rolster", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ghost", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 76 - }, - "match_name": "Jang Yong-jun", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "1999-03-18", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826540406_Ghost__Jang_Yong-jun_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f64e6d86", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Challengers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "condition": 100, - "full_name": "FenRir", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 76, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Park Kang-jun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 81, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-06-24", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826535309_FenRir__Park_Kang-jun_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fd58ecc3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DK Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DK Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DK Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "condition": 100, - "full_name": "Jinbeom", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Cheon Jin-beom", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-07-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826675851_Jinbeom.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fdec4f38", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 E.A. Rookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "T1 Esports Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "condition": 100, - "full_name": "Cypher", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Kim Yu-jun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-01-20", - "nationality": "KR", - "profile_image_url": "/player-photos/1779826663961_Cypher.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/ldl_players.json b/data/erls/players/ldl_players.json deleted file mode 100644 index 70a69d7b8..000000000 --- a/data/erls/players/ldl_players.json +++ /dev/null @@ -1,2142 +0,0 @@ -{ - "name": "LDL Players", - "description": "LDL - 2026 Season", - "players": [ - { - "match_name": "Ding Xin-Sheng", - "id": "player-075cdc01", - "full_name": "xinsheng", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-xinsheng.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94b3267f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhang Ke", - "loan_listed": false, - "transfer_listed": false, - "id": "player-0a48f6ed", - "full_name": "Ke", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630296815_uk28x8b9is.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c6cb03ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Deng Guo Ce", - "id": "player-11a98d0e", - "full_name": "Miyi", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-miyi.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhuang Yu-Kai", - "id": "player-132c37de", - "full_name": "Relaxing", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-relaxing.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a73f2996", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87550215", - "wage": 128000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a73f2996", - "position": "ADC", - "condition": 100, - "full_name": "Stay", - "attributes": { - "laning": 78, - "mechanics": 80, - "discipline": 81, - "macro_play": 74, - "consistency": 72, - "shotcalling": 69, - "teamfighting": 73, - "champion_pool": 81, - "mental_resilience": 73 - }, - "match_name": "Guo Yi-Hang", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1920000, - "birth_country": null, - "date_of_birth": "2003-01-19", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "match_name": "Or Wing Chit", - "loan_listed": false, - "transfer_listed": false, - "id": "player-1ad3c256", - "full_name": "SYWJJ", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630304970_yh9n3hcdar.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-edb9580a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhou Lin", - "loan_listed": false, - "transfer_listed": false, - "id": "player-1e68af4f", - "full_name": "Juice", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630152121_cofbh26gy1l.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0c76150c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Shi Jia-Jun", - "id": "player-31b53d20", - "full_name": "luoyiyu", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-luoyiyu.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yu Yi", - "id": "player-3d7ae2a4", - "full_name": "fishone", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-fishone.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-37ced0d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Chu Xiao-Teng", - "id": "player-4174cafe", - "full_name": "TENG", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-teng.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a73f2996", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Ka De-Rong", - "id": "player-43534499", - "full_name": "Jungoat", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-jungoat.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-179ed265", - "wage": 35000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "position": "Mid", - "condition": 100, - "full_name": "Linfeng", - "attributes": { - "laning": 79, - "mechanics": 76, - "discipline": 78, - "macro_play": 81, - "consistency": 82, - "shotcalling": 77, - "teamfighting": 74, - "champion_pool": 78, - "mental_resilience": 73 - }, - "match_name": "Qin Jia-Hao", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 525000, - "birth_country": null, - "date_of_birth": "2005-02-09", - "potential_base": 94, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "match_name": "Dai Hang", - "id": "player-4a8ec0a1", - "full_name": "Flying", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-flying.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Chen Qi-Hong", - "loan_listed": false, - "transfer_listed": false, - "id": "player-580d74c6", - "full_name": "Ryan3", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630276626_oqqn8u0jk9i.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c6cb03ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Li Jai-Hao", - "id": "player-601d2b80", - "full_name": "JiaHao", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-jiahao.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f97df98e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Lin Yi-Bo", - "id": "player-64c76975", - "full_name": "pjo", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-pjo.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-37ced0d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yang Wen-Bo", - "id": "player-67a8e7d1", - "full_name": "Wenbo", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-wenbo.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Qi Zhi-Hong", - "id": "player-67e3036c", - "full_name": "mxx", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-mxx.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a73f2996", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Fu Yi-Liu", - "id": "player-6e802a7a", - "full_name": "Starfire", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-starfire.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Qiu Jia-Quan", - "id": "player-73ea4805", - "full_name": "Luxury", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-luxury.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f97df98e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Ma Han-Chen", - "id": "player-7a2950e1", - "full_name": "putaogou", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-putaogou.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c6cb03ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhang Jia-Hao", - "id": "player-85fbce5e", - "full_name": "OvO", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-ovo-test.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94b3267f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Chen Jin-Ku", - "loan_listed": false, - "transfer_listed": false, - "id": "player-947b7e74", - "full_name": "Cyku", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630313384_of87redbaka.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94b3267f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhang Liang-Chen", - "id": "player-993cb5c3", - "full_name": "Liangchen", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-liangchen.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Wang Shao-Hua", - "id": "player-aa98b82d", - "full_name": "Beluga", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-beluga.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Huang Yu-Hang", - "id": "player-b4ab6c76", - "full_name": "hanghang", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-hanghang.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-edb9580a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zeng Jun (曾骏)", - "id": "player-c1794c0b", - "full_name": "5t5", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-5t5.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94b3267f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Wu Xun", - "id": "player-c179da47", - "full_name": "sjj", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-sjj.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhang Wen-Jian", - "id": "player-c35f299f", - "full_name": "Later", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-later.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yu Yan-Xiang", - "loan_listed": false, - "transfer_listed": false, - "id": "player-ca24f005", - "full_name": "Yanxiang", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630207740_7c5y8gfv23r.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yu Hao-Ran", - "id": "player-cb568d13", - "full_name": "Hran", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-hran.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f97df98e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Xiong Cheng-Gang", - "id": "player-ce515dc2", - "full_name": "heiYue", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-heiyue.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhang Yi-Hang", - "id": "player-cebefa78", - "full_name": "ZiYe", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-ziye.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Chen Hong-Jun", - "id": "player-d475bfda", - "full_name": "banye", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-banye.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Li Hao", - "loan_listed": false, - "transfer_listed": false, - "id": "player-da041064", - "full_name": "GLFS", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630119964_a17b080zf99.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f97df98e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Shi Jia-Lun", - "id": "player-da3ce20b", - "full_name": "xlun", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-xlun.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c6cb03ca", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Wei Guan-Zhen", - "id": "player-da456182", - "full_name": "Mentality", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-mentality.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0c76150c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Zhu Shu-Wei", - "id": "player-df326714", - "full_name": "Coward", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-coward.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f97df98e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yeung Kwan Ho0", - "id": "player-e1f92f35", - "full_name": "chesterbb", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-chesterbb.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-64957c79", - "wage": 26000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a73f2996", - "position": "ADC", - "condition": 100, - "full_name": "Kepler", - "attributes": { - "laning": 85, - "mechanics": 80, - "discipline": 76, - "macro_play": 77, - "consistency": 77, - "shotcalling": 69, - "teamfighting": 74, - "champion_pool": 79, - "mental_resilience": 81 - }, - "match_name": "Zou Jia-Le", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 390000, - "birth_country": null, - "date_of_birth": "2002-09-28", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "match_name": "Chi Zhi-Hong", - "loan_listed": false, - "transfer_listed": false, - "id": "player-e4d493fa", - "full_name": "909", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779630199928_uo0rdehcy98.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d56ae81", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Yao Ying-Cheng", - "id": "player-e8b74930", - "full_name": "Yomiya", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-yomiya.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0c76150c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Liao Zheng-Rong", - "id": "player-ef0914a8", - "full_name": "Stangling", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bf6805f5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Xue Le-Hui", - "id": "player-f82dd204", - "full_name": "charlotte", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-charlotte.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Huang Jun-Wei", - "id": "player-f9f3c124", - "full_name": "Elysia13", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-elysia13.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-13997011", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/les_players.json b/data/erls/players/les_players.json deleted file mode 100644 index 4b17a3a50..000000000 --- a/data/erls/players/les_players.json +++ /dev/null @@ -1,1936 +0,0 @@ -{ - "name": "LES Players", - "description": "LES - 2026 Season", - "players": [ - { - "id": "player-0009236e", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Myrtus", - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 71, - "macro_play": 71, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Mohamed Rahli", - "loan_listed": false, - "contract_end": "2006-10-01", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779639623510_crxqwrw8gcu.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8baee3fd", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-01097f36", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "iLevi", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Besmir Jakupi", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "AL", - "profile_image_url": "/player-photos/1779641893762_gydx7iwctj5.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-129835c5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0356e082", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Batuuu", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Batu Kaygusuz", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2006-10-01", - "nationality": "TR", - "profile_image_url": "/player-photos/1779639699733_wytaylfgb1.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f10b156f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-05bf3172", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "condition": 100, - "full_name": "Marcv1", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 72, - "macro_play": 66, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Marc Villalba de la Arada", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779630485943_7grx3g0b39b.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-067b9a1f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "condition": 100, - "full_name": "Jorge Saiz Hoyos", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Kaii", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779637411003_xvjq3tkbva.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0db426ec", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "TIMR", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 69, - "macro_play": 70, - "consistency": 70, - "shotcalling": 66, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Tomáš Buštík", - "loan_listed": false, - "contract_end": "2004-01-01", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779637422266_dhudnnjlb0k.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-d0d82673", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0ffbaa57", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "condition": 100, - "full_name": "Clicker", - "attributes": { - "laning": 64, - "mechanics": 66, - "discipline": 69, - "macro_play": 66, - "consistency": 65, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 67, - "mental_resilience": 69 - }, - "match_name": "Alejandro Botella Santos", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779630638831_110esi3y823.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-13ab177c", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "condition": 100, - "full_name": "Ivama", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Iván Torn Cubero", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779640944397_gvb9ifdr0hi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c6a23ab", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "condition": 100, - "full_name": "Hydra", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Raúl Moreno Valero", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779637413645_59iexfkcq4c.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8130e9c4", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-06974122", - "position": "Mid", - "condition": 100, - "full_name": "Macaquinho", - "attributes": { - "laning": 67, - "mechanics": 70, - "discipline": 68, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 67, - "champion_pool": 66, - "mental_resilience": 68 - }, - "match_name": "Sergio Bouzende Rodrigues", - "loan_listed": false, - "morale_core": {}, - "nationality": "Portugal", - "contract_end": "2026-02-20", - "market_value": 0, - "date_of_birth": "2003-07-30", - "potential_base": 70, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778852951546_fg90wy66ejc.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Mid", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3f82c25b", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Attila", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 66, - "macro_play": 68, - "consistency": 68, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 68 - }, - "match_name": "Amadeu Dias de Carvalho", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1996-02-26", - "nationality": "PT", - "profile_image_url": "/player-photos/1779634177034_f4dc6x82rn.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-854f6893", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4a2757e8", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Deleted", - "attributes": { - "laning": 68, - "mechanics": 66, - "discipline": 69, - "macro_play": 68, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 71, - "mental_resilience": 69 - }, - "match_name": "Unai San Juan Fajardo", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-5d7b3ec4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4a5d7fe9", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "condition": 100, - "full_name": "Time", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Tiago Almeida", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-12-06", - "nationality": "PT", - "profile_image_url": "/player-photos/1779639596533_i914uxefnfs.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4bc8debd", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "condition": 100, - "full_name": "Daglas", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Kacper Karol Dagiel", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-10-23", - "nationality": "PL", - "profile_image_url": "/player-photos/1779639713266_nziuc4l88tc.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5a324e7c", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "condition": 100, - "full_name": "ESCIK", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Tomasz Skwarczynski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-04-11", - "nationality": "PL", - "profile_image_url": "/player-photos/1779641844321_jzk51v7fdph.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6285401f", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Joel Rodríguez Pérez", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Kellie", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779641691754_y0npujc10bd.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-ac846213", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-62c86d6e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "condition": 100, - "full_name": "Mercy9", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 73, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Cengizhan Teker", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-06-05", - "nationality": "TR", - "profile_image_url": "/player-photos/1779639794500_bw1vauzpdef.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-64040f64", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "condition": 100, - "full_name": "Lure", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Shin Jae-yoon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-16", - "nationality": "KR", - "profile_image_url": "/player-photos/1779639798840_qn0kioi4jor.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-668b7148", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "condition": 100, - "full_name": "Kozi", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Jarosław Marchewka", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-04-06", - "nationality": "PL", - "profile_image_url": "/player-photos/1779641861020_yt5ercu4d3.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7f89d2c9", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-06974122", - "position": "ADC", - "condition": 100, - "full_name": "Legolas", - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 66, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 68 - }, - "match_name": "Sergio Vicente Gisbert", - "loan_listed": false, - "morale_core": {}, - "nationality": "Spain", - "contract_end": "2027-12-31", - "market_value": 0, - "date_of_birth": "2000-11-16", - "potential_base": 53, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778852958296_aq07o93rkh5.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "ADC", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-74525cde", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "condition": 100, - "full_name": "Th3Antonio", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Antonio Espinosa Bejarano", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-04-12", - "nationality": "ES", - "profile_image_url": "/player-photos/1779632846569_4hva78nunuh.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-04bfa395", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-06974122", - "position": "Top", - "condition": 100, - "full_name": "selenex", - "attributes": { - "laning": 66, - "mechanics": 70, - "discipline": 66, - "macro_play": 72, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 63, - "champion_pool": 67, - "mental_resilience": 68 - }, - "match_name": "Eric Lozano Gutiérrez", - "loan_listed": false, - "morale_core": {}, - "nationality": "Spain", - "contract_end": "2026-11-16", - "market_value": 0, - "date_of_birth": "2004-01-01", - "potential_base": 81, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778852938974_065r5roai17.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Top", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-35e757a5", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "condition": 100, - "full_name": "Pau Vintró Nogué", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Pauporter", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "September 22, 2004", - "nationality": "ES", - "profile_image_url": "/player-photos/1778845985567_k07emroqby.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7e57a5f1", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "condition": 100, - "full_name": "adrianlaneitor", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Adrián Tejero Gomez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779641644007_w41xbz45j7a.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-800ae09b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "condition": 100, - "full_name": "Fresskowy", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Bartłomiej Tomasz Przewoźnik", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-11-26", - "nationality": "PL", - "profile_image_url": "/player-photos/1779639562913_k77r6jwiahe.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-84b65132", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "condition": 100, - "full_name": "Ethe", - "attributes": { - "laning": 72, - "mechanics": 66, - "discipline": 73, - "macro_play": 67, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Raúl Campos Vico", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779630645700_2u9ojjbllbi.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87e53592", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "condition": 100, - "full_name": "13", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Zayan Taeau", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-06-20", - "nationality": "FR", - "profile_image_url": "/player-photos/1779639585610_jb97z4qifdh.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-99cc0f13", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "condition": 100, - "full_name": "Pasameelcelo", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Jordi Franco Carreras", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-01-01", - "nationality": "AD", - "profile_image_url": "/player-photos/1779641675797_mxeucz1bn4.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-130f6999", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "condition": 100, - "full_name": "Dani", - "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 74, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Daniel Gómez Martínez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779637419242_xfg5j4hz4y8.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a1e8bb06", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "condition": 100, - "full_name": "Midnight", - "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 72, - "macro_play": 67, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Víctor Caro Rodríguez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779630419206_yjwtma7n0a.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a3298211", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "condition": 100, - "full_name": "Antero Trindade Baldaia", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 72, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Papiteero", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-01-01", - "nationality": "PT", - "profile_image_url": "/player-photos/1779639702646_0ajym2qn56sh.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ae7ddfdc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f10b156f", - "team_name": "Team Heretics Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "condition": 100, - "full_name": "Lukas Thoma", - "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 73, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Lurox", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2000-01-01", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779639770528_unc82ogqag.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d421b0b0", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "condition": 100, - "full_name": "ManoloGap", - "attributes": { - "laning": 66, - "mechanics": 71, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Manuel García Azcúnaga", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-09", - "nationality": "ES", - "profile_image_url": "/player-photos/1779632776480_ga5o7gkx7dd.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da0e2d68", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "condition": 100, - "full_name": "ANDARIEL", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Mert Kılıç", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-11-14", - "nationality": "TR", - "profile_image_url": "/player-photos/1779641836283_cce5d61tjsd.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dd59bec5", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "condition": 100, - "full_name": "Pegaso", - "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 73, - "macro_play": 66, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Edison Giovanny Rivera Menéndez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-01-01", - "nationality": "ES", - "profile_image_url": "/player-photos/1779637416461_judnb5qn28f.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-de7b9a68", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "condition": 100, - "full_name": "Flakked", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 68, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Víctor Lirola", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-04-25", - "nationality": "ES", - "profile_image_url": "/player-photos/1779633470098_icbf439yyfq.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dfd47326", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "condition": 100, - "full_name": "Miniduke", - "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 72, - "macro_play": 69, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Ismael Martínez Cortés", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1997-11-03", - "nationality": "ES", - "profile_image_url": "/player-photos/1779633190939_g4szb8x3v4o.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e0564ecf", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "condition": 100, - "full_name": "NightSlayer", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 72, - "macro_play": 72, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Ivan Oleksandrovich Bilous", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-01-18", - "nationality": "UA", - "profile_image_url": "/player-photos/1779639610477_ttj80awnxf.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e301a123", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "condition": 100, - "full_name": "bluerzor", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Dániel Subicz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-05-04", - "nationality": "HU", - "profile_image_url": "/player-photos/1779641853622_3il4l825o79.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b7bba21b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-06974122", - "position": "Jungle", - "condition": 100, - "full_name": "Koldo", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 65, - "macro_play": 68, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 68 - }, - "match_name": "Luis Pérez García", - "loan_listed": false, - "morale_core": {}, - "nationality": "Spain", - "contract_end": "2000-01-16", - "market_value": 0, - "date_of_birth": "2000-11-07", - "potential_base": 61, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778852945092_ueo69gr5qy.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Jungle", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2970f50f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-06974122", - "position": "Support", - "condition": 100, - "full_name": "Oscure", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 71, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Victor Guzmán Fernández", - "loan_listed": false, - "morale_core": {}, - "nationality": "Spain", - "contract_end": "2026-11-16", - "market_value": 0, - "date_of_birth": "2000-04-30", - "potential_base": 65, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778852929874_17r7gdy44o5.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Support", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lfl_players.json b/data/erls/players/lfl_players.json deleted file mode 100644 index 83a7f9ea7..000000000 --- a/data/erls/players/lfl_players.json +++ /dev/null @@ -1,2588 +0,0 @@ -{ - "name": "LFL Players", - "description": "LFL - 2026 Season", - "players": [ - { - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 70, - "macro_play": 69, - "consistency": 69, - "shotcalling": 72, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 67 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-33fa1d36", - "match_name": "Costin Pestrițu", - "full_name": "Hazel", - "date_of_birth": "2007-05-24", - "nationality": "RO", - "profile_image_url": "/player-photos/1778855952090_bm6lswehujj.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-af25d742", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 69, - "macro_play": 71, - "consistency": 71, - "shotcalling": 73, - "teamfighting": 69, - "champion_pool": 71, - "mental_resilience": 72 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-1239a9d4", - "match_name": "Thomas Thierry Haudecoeur", - "full_name": "Soldier", - "date_of_birth": "2002-11-06", - "nationality": "FR", - "profile_image_url": "/player-photos/1778855669809_abluwptv5xv.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c12fef91", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 68, - "macro_play": 71, - "consistency": 70, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 67 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b3ed08a3", - "match_name": "Oliver Ryppa", - "full_name": "Dajor", - "date_of_birth": "2003-04-18", - "nationality": "DE", - "profile_image_url": "/player-photos/1778855664285_ocgjyjq3lbp.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c12fef91", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "contract_end": "2002-01-21", - "transfer_listed": false, - "id": "player-c1aeab8c", - "match_name": "Stéphane Dimier", - "full_name": "Manaty", - "date_of_birth": "January 21, 2002", - "nationality": "FR", - "profile_image_url": "/player-photos/1778855094077_r46g8y9srg.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 72, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-c3e1f0ed", - "match_name": "Yasin Dinçe", - "full_name": "Nisqy", - "date_of_birth": "1998-07-28", - "nationality": "BE", - "profile_image_url": "/player-photos/1778855100392_eddk7pl4rrp.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-18134b3e", - "match_name": "Eric Xie", - "full_name": "Sleyer", - "date_of_birth": "2006-02-25", - "nationality": "FR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 75, - "macro_play": 75, - "consistency": 74, - "shotcalling": 68, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-51d38a65", - "match_name": "Andrija Kovačević", - "full_name": "Nafkelah", - "date_of_birth": "2002-11-13", - "nationality": "ME", - "profile_image_url": "/player-photos/1778855777949_qje2j3ti71.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92b46fef", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 76, - "discipline": 75, - "macro_play": 76, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 72, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-34370c14", - "match_name": "Kang Dong-su", - "full_name": "Jool", - "date_of_birth": "2001-12-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1778856290636_sqrdbmv5lx.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-012b64d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-84bc0f06", - "match_name": "Mateusz Czajka", - "full_name": "Czajek", - "date_of_birth": "2003-08-24", - "nationality": "PL", - "profile_image_url": "/player-photos/1778856544475_t3da0jgqilp.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8f3d532a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-41469f7f", - "match_name": "Wao Dai", - "full_name": "Wao", - "date_of_birth": "2003-05-30", - "nationality": "FR", - "profile_image_url": "/player-photos/1778855085913_vu4m4a6l3h.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 70, - "macro_play": 66, - "consistency": 71, - "shotcalling": 73, - "teamfighting": 67, - "champion_pool": 69, - "mental_resilience": 71 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-21f20aaa", - "match_name": "Théo Le Scornec", - "full_name": "Zoelys", - "date_of_birth": "2003-05-26", - "nationality": "France", - "profile_image_url": "/player-photos/1778855479879_nk3vpo7ppn.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da97809e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 74, - "macro_play": 74, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 73, - "champion_pool": 72, - "mental_resilience": 73 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-921486a9", - "match_name": "Szymon Wójcicki", - "full_name": "Yeti", - "date_of_birth": "2007-04-13", - "nationality": "PL", - "profile_image_url": "/player-photos/1778855772614_6f31hogz017.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92b46fef", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 75, - "macro_play": 68, - "consistency": 68, - "shotcalling": 68, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 74 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-eec70e60", - "match_name": "Paweł Szczepanik", - "full_name": "Czekolad", - "date_of_birth": "2000-02-15", - "nationality": "PL", - "profile_image_url": "/player-photos/1778856077606_tdmain3m9mf.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a0f2c2a3", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-c12fef91", - "position": "Support", - "condition": 100, - "full_name": "Whiteinn", - "attributes": { - "laning": 70, - "mechanics": 64, - "discipline": 75, - "macro_play": 74, - "consistency": 68, - "shotcalling": 72, - "teamfighting": 67, - "champion_pool": 72, - "mental_resilience": 73 - }, - "match_name": "Alexandru Kolozsvari", - "loan_listed": false, - "morale_core": {}, - "nationality": "Romania", - "contract_end": "2027-12-31", - "market_value": 0, - "date_of_birth": "2000-10-03", - "potential_base": 71, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778855643530_t1v0fz9fcxr.png", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Support", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 80, - "mechanics": 82, - "discipline": 77, - "macro_play": 82, - "consistency": 80, - "shotcalling": 73, - "teamfighting": 81, - "champion_pool": 78, - "mental_resilience": 79 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-55f73cae", - "match_name": "Pierre Medjald", - "full_name": "Steeelback", - "date_of_birth": "1996-08-16", - "nationality": "France", - "profile_image_url": "/player-photos/1778855770285_qk3bt9gcgeq.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92b46fef", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 75, - "mechanics": 74, - "discipline": 69, - "macro_play": 71, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 71, - "champion_pool": 73, - "mental_resilience": 70 - }, - "loan_listed": false, - "contract_end": "2003-02-27", - "transfer_listed": false, - "id": "player-cf9d39e8", - "match_name": "Maximilian Rassi", - "full_name": "Vertigo", - "date_of_birth": "February 27, 2003", - "nationality": "AT", - "profile_image_url": "/player-photos/1778856071868_pw6937iusm.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 71, - "discipline": 73, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 71, - "champion_pool": 72, - "mental_resilience": 73 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-46016bc5", - "match_name": "Markos Stamkopoulo", - "full_name": "Comp", - "date_of_birth": "2001-12-20", - "nationality": "GR", - "profile_image_url": "/player-photos/1778856104169_ns4x2hs3ff.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 70, - "mechanics": 67, - "discipline": 76, - "macro_play": 70, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 64, - "champion_pool": 67, - "mental_resilience": 73 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-e58e15b0", - "match_name": "Jean Massol", - "full_name": "Jezu", - "date_of_birth": "2000-07-27", - "nationality": "FR", - "profile_image_url": "/player-photos/1778855133941_fr0gxz7f2hf.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 66, - "mechanics": 70, - "discipline": 70, - "macro_play": 67, - "consistency": 67, - "shotcalling": 68, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-37d0587c", - "match_name": "Serkan Atılgan", - "full_name": "xKenzuke", - "date_of_birth": "1999-06-17", - "nationality": "DE", - "profile_image_url": "/player-photos/1779643769215_7p9d29zc3jv.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 66, - "macro_play": 75, - "consistency": 73, - "shotcalling": 72, - "teamfighting": 72, - "champion_pool": 73, - "mental_resilience": 70 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-3caf8e7f", - "match_name": "Francisco Mazo Sánchez", - "full_name": "Thayger", - "date_of_birth": "2002-01-27", - "nationality": "ES", - "profile_image_url": "/player-photos/1778855500512_73pvlv6o8yb.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da97809e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 73, - "mechanics": 69, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b518f01f", - "match_name": "Olivier Pierre Julien Payet", - "full_name": "Prime", - "date_of_birth": "2007-02-24", - "nationality": "France", - "profile_image_url": "/player-photos/1778855940015_huzrgxyrptr.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-af25d742", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 76, - "discipline": 64, - "macro_play": 71, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 70, - "champion_pool": 67, - "mental_resilience": 70 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-a6650037", - "match_name": "Mertai Sari", - "full_name": "Mersa", - "date_of_birth": "2002-08-22", - "nationality": "Greece", - "profile_image_url": "/player-photos/1778856069717_r5qydbosy3.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 70, - "mechanics": 74, - "discipline": 75, - "macro_play": 74, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 72, - "champion_pool": 78, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-5832d129", - "match_name": "Tomislav Nanjara", - "full_name": "Thomas", - "date_of_birth": "2003-06-20", - "nationality": "HR", - "profile_image_url": "/player-photos/1778856408020_9gogx01qtat.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f9010b5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 77, - "mechanics": 78, - "discipline": 75, - "macro_play": 76, - "consistency": 78, - "shotcalling": 73, - "teamfighting": 80, - "champion_pool": 79, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b6ba9cef", - "match_name": "Kim Jung-hun", - "full_name": "Piero", - "date_of_birth": "2002-07-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1778856305316_1ra5vb60wb6.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-012b64d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 75, - "mechanics": 76, - "discipline": 68, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-3cbf1cc7", - "match_name": "Johnny Hoang Dang", - "full_name": "Yukino", - "date_of_birth": "2006-02-14", - "nationality": "US", - "profile_image_url": "/player-photos/1778855946238_91h4hntz0ni.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-af25d742", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 71, - "mechanics": 76, - "discipline": 76, - "macro_play": 70, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 70, - "mental_resilience": 76 - }, - "loan_listed": false, - "potential_base": 80, - "transfer_listed": false, - "id": "player-a13f38f9", - "match_name": "Arnaud Mesmin", - "full_name": "Riippp", - "date_of_birth": "1995-10-13", - "nationality": "France", - "profile_image_url": "/player-photos/1778855112397_txujr4voy1.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 69, - "mechanics": 68, - "discipline": 69, - "macro_play": 64, - "consistency": 67, - "shotcalling": 68, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 69 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-5b1f0d31", - "match_name": "Nikos Nikolaidis", - "full_name": "Hungry Panda", - "date_of_birth": "1999-01-31", - "nationality": "GR", - "profile_image_url": "/player-photos/1779680450473_fuhglpjgavq.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 75, - "discipline": 75, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-ac8226c5", - "match_name": "Mehdi Ahmed Bouchaffra", - "full_name": "Potent", - "date_of_birth": "2002-07-14", - "nationality": "FR", - "profile_image_url": "/player-photos/1778856539368_mtu3m2frxx.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8f3d532a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 66, - "macro_play": 69, - "consistency": 69, - "shotcalling": 68, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 67 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-80f3388d", - "match_name": "Nikola Petrusev", - "full_name": "Axelent", - "date_of_birth": "2004-05-14", - "nationality": "MK", - "profile_image_url": "/player-photos/1778856427849_m4f8bnbwp1p.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f9010b5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 71, - "mechanics": 68, - "discipline": 76, - "macro_play": 67, - "consistency": 67, - "shotcalling": 67, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-d10a8c0b", - "match_name": "Osman Onur Korkmaz", - "full_name": "Kaboom", - "date_of_birth": "2006-03-24", - "nationality": "TR", - "profile_image_url": "/player-photos/1778855658745_8fdovacs8kh.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c12fef91", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7ccb1e71", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f8f7f78d", - "condition": 100, - "full_name": "Hiro", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 74, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Alexandre El Hodebey", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 82, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-06-23", - "nationality": "FR", - "profile_image_url": "/player-photos/1779680801344_g9us1n3ja5e.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 75, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-1878f1ea", - "match_name": "Stefan Nikolić", - "full_name": "Stefan", - "date_of_birth": "2002-10-15", - "nationality": "RS", - "profile_image_url": "/player-photos/1778856414181_jbqv30fdgu.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f9010b5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 64, - "mechanics": 68, - "discipline": 73, - "macro_play": 68, - "consistency": 68, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 68, - "mental_resilience": 69 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-907d3b20", - "match_name": "Berkant Ilhan", - "full_name": "Avra", - "date_of_birth": "2003-06-04", - "nationality": "DE", - "profile_image_url": "/player-photos/1779643766209_b8399sws6a.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 74, - "macro_play": 70, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 73 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-9ff9e905", - "match_name": "Marcel Bąk", - "full_name": "Shift", - "date_of_birth": "2005-01-20", - "nationality": "PL", - "profile_image_url": "/player-photos/1778856074934_umpp5ado4dj.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 68, - "mechanics": 72, - "discipline": 75, - "macro_play": 71, - "consistency": 71, - "shotcalling": 68, - "teamfighting": 70, - "champion_pool": 73, - "mental_resilience": 74 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-96954747", - "match_name": "Šimon Řiháček", - "full_name": "OMON", - "date_of_birth": "2003-07-02", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779644410321_xr4svj0zlk.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da97809e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-756b6429", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-92b46fef", - "position": "Jungle", - "condition": 100, - "full_name": "Spooky", - "attributes": { - "laning": 76, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "match_name": "Miroslav Gochev", - "loan_listed": false, - "morale_core": {}, - "nationality": "BG", - "contract_end": "2027-12-31", - "market_value": 0, - "date_of_birth": "1996-08-12", - "potential_base": 68, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778855774777_6cvstoh5mkl.png", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Jungle", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 75, - "discipline": 74, - "macro_play": 75, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-51df346f", - "match_name": "Kamil Bruno Mehdi Wahid Haudegond", - "full_name": "Kamiloo", - "date_of_birth": "2005-07-20", - "nationality": "", - "profile_image_url": "/player-photos/1778855949024_n5nrn9xua8.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-af25d742", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 73, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 70 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-ab9a4ff2", - "match_name": "Théo Mouchiroud", - "full_name": "Booshi", - "date_of_birth": "2006-01-01", - "nationality": "FR", - "profile_image_url": "/player-photos/1779643816727_ak9t4zn6ql.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 65, - "mechanics": 71, - "discipline": 71, - "macro_play": 65, - "consistency": 65, - "shotcalling": 67, - "teamfighting": 69, - "champion_pool": 72, - "mental_resilience": 70 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b0ccaf5c", - "match_name": "Aziz Görkem Altınpınar", - "full_name": "Mxe", - "date_of_birth": "2003-01-13", - "nationality": "TR", - "profile_image_url": "/player-photos/1779643763071_lpjb2sr95nn.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 75, - "mechanics": 74, - "discipline": 68, - "macro_play": 70, - "consistency": 74, - "shotcalling": 68, - "teamfighting": 69, - "champion_pool": 73, - "mental_resilience": 69 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-f7c9d948", - "match_name": "Carl Ulsted Carlsen", - "full_name": "Carlsen", - "date_of_birth": "2005-12-15", - "nationality": "DK", - "profile_image_url": "/player-photos/1778855496292_fbykufcfqca.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da97809e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a6317295", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-da97809e", - "position": "Mid", - "condition": 100, - "full_name": "Omon", - "attributes": { - "laning": 68, - "mechanics": 72, - "discipline": 75, - "macro_play": 71, - "consistency": 71, - "shotcalling": 68, - "teamfighting": 70, - "champion_pool": 73, - "mental_resilience": 74 - }, - "match_name": "Omon", - "loan_listed": false, - "morale_core": {}, - "nationality": "Czech Republic", - "contract_end": "2027-12-31", - "market_value": 0, - "date_of_birth": "July 2, 2003", - "potential_base": 56, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778855504022_lepw26pvt1d.png", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Mid", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 67, - "macro_play": 68, - "consistency": 68, - "shotcalling": 67, - "teamfighting": 67, - "champion_pool": 70, - "mental_resilience": 65 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-f5fa5a71", - "match_name": "Berat Tıknazoğlu", - "full_name": "Aetinoth", - "date_of_birth": "2005-10-10", - "nationality": "TR", - "profile_image_url": "/player-photos/1778856293528_lsfogvg2vna.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-012b64d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b5cee998", - "match_name": "Dawid Drzyzga", - "full_name": "Dawciu", - "date_of_birth": "2008-03-21", - "nationality": "PL", - "profile_image_url": "/player-photos/1778856541747_k29x5f16fgg.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8f3d532a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 72, - "macro_play": 64, - "consistency": 64, - "shotcalling": 73, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 72 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-bdfcb9da", - "match_name": "Rayan Mahiddine", - "full_name": "Kobs", - "date_of_birth": "2003-10-10", - "nationality": "DZ", - "profile_image_url": "/player-photos/1779643772470_v04d4s9bvuo.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 73, - "macro_play": 75, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 75, - "champion_pool": 72, - "mental_resilience": 74 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-649fea90", - "match_name": "Felix Hellström", - "full_name": "Kryze", - "date_of_birth": "1999-07-01", - "nationality": "SE", - "profile_image_url": "/player-photos/1778856285099_h4zwgnqe5jn.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-012b64d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 73, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 73, - "champion_pool": 72, - "mental_resilience": 73 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-b4eeb986", - "match_name": "Franciszek Gryszkiewicz", - "full_name": "Harpoon", - "date_of_birth": "2005-04-18", - "nationality": "PL", - "profile_image_url": "/player-photos/1778855507289_nzs110d6xe9.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da97809e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 74, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-215c6224", - "match_name": "Lanzo Ciajolo", - "full_name": "Zicssi", - "date_of_birth": "2002-05-16", - "nationality": "FR", - "profile_image_url": "/player-photos/1778856288156_wydjixx3ucl.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-012b64d1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 72, - "mechanics": 67, - "discipline": 70, - "macro_play": 66, - "consistency": 71, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 69, - "mental_resilience": 68 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-d678e843", - "match_name": "Leny Albertini", - "full_name": "Leny", - "date_of_birth": "2002-12-09", - "nationality": "FR", - "profile_image_url": "/player-photos/1779643782093_4ybb1zjgktj.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 72, - "macro_play": 75, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 71, - "champion_pool": 73, - "mental_resilience": 72 - }, - "loan_listed": false, - "contract_end": "2005-10-17", - "transfer_listed": false, - "id": "player-d78ea8eb", - "match_name": "Villas Burkal Stadager", - "full_name": "Vizzpers", - "date_of_birth": "2005-10-17", - "nationality": "DK", - "profile_image_url": "/player-photos/1779680750912_qkau59nbpx.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8f3d532a", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 80, - "macro_play": 77, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 77 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-ac3d6ef5", - "match_name": "Waleed Mohammed Ismail", - "full_name": "Dekap", - "date_of_birth": "0200-12-11", - "nationality": "Jordan", - "profile_image_url": "/player-photos/1778856551061_inyevbmjw1.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8f3d532a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87c2dd42", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-0f9010b5", - "position": "Mid", - "condition": 100, - "full_name": "Toffe", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Tautvydas Gegeckas", - "loan_listed": false, - "morale_core": {}, - "nationality": "LT", - "contract_end": "2027-12-31", - "market_value": 0, - "date_of_birth": "2005-05-02", - "potential_base": 80, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778856417325_r9nrl6aih5k.png", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Mid", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 76, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-e9941b6c", - "match_name": "Miroslav Gochev", - "full_name": "SPOOKY", - "date_of_birth": "1999-08-12", - "nationality": "BG", - "profile_image_url": "/player-photos/1779680579794_9daeftenmj.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92b46fef", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 70, - "discipline": 68, - "macro_play": 68, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 67 - }, - "loan_listed": false, - "contract_end": "", - "transfer_listed": false, - "id": "player-66c732be", - "match_name": "Lucas Piochaud", - "full_name": "Badlulu", - "date_of_birth": "2002-10-13", - "nationality": "FR", - "profile_image_url": "/player-photos/1778855650648_nbcj32r21xk.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c12fef91", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 74 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-944ccd91", - "match_name": "Muhanad Maitham Sharad", - "full_name": "Spooder", - "date_of_birth": "2002-09-05", - "nationality": "SE", - "profile_image_url": "/player-photos/1778856410435_8jxywbeti68.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f9010b5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 73, - "mechanics": 76, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 72, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "loan_listed": false, - "transfer_listed": false, - "id": "player-be7cd48a", - "match_name": "Xu Hongtao Alessandro", - "full_name": "Tao", - "date_of_birth": "2008-01-01", - "nationality": "IT", - "profile_image_url": "/player-photos/1778855943847_f0d0jb843gj.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-af25d742", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1df87a66", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-92b46fef", - "condition": 100, - "full_name": "Deadly", - "attributes": { - "laning": 68, - "mechanics": 71, - "discipline": 75, - "macro_play": 72, - "consistency": 72, - "shotcalling": 69, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Matthew Luke Smith", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1996-08-18", - "nationality": "GB", - "profile_image_url": "/player-photos/1778855782103_fykqqwpdym4.png", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lit_players.json b/data/erls/players/lit_players.json deleted file mode 100644 index 4b3e80bb8..000000000 --- a/data/erls/players/lit_players.json +++ /dev/null @@ -1,6047 +0,0 @@ -{ - "name": "LIT Players", - "description": "LIT - 2026 Season", - "players": [ - { - "id": "player-067976ac", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "Groudon", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 73, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 67, - "champion_pool": 66, - "mental_resilience": 69 - }, - "match_name": "Groudon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-06a9166c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TITANS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "condition": 100, - "full_name": "Lerax", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 73, - "macro_play": 72, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Leonardo Scozzafava", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-073090b1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dropz Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Outplayed Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CP Sparks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dropz Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "OffLimits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RULE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Warthox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DSYRE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Outplayed Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "exeed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HMBLE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "condition": 100, - "full_name": "Vigil", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, - "macro_play": 71, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Matteo Scarcelli", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-12-21", - "nationality": "IT", - "profile_image_url": "/player-photos/1779870883748_Vigil.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0acb8a1c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Earth Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Mkers Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "aNc Legends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "aNc Legends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "condition": 100, - "full_name": "PiskHeLLo", - "attributes": { - "laning": 71, - "mechanics": 67, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Mattia Scandroglio", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0dfb662e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "REDPack Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "condition": 100, - "full_name": "Alessio", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "match_name": "Dario Alessio Bandrabur Bohm", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-08-09", - "nationality": "RO", - "profile_image_url": "/player-photos/1779870914857_Alessio.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-15e5688a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lobstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "OrthoZero", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Andrea Orefice", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": "/player-photos/1779870926115_OrthoZero.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-266381ca", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Underworld Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HMBLE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "condition": 100, - "full_name": "Tyrone", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Achille Matrone", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-07-29", - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c4ae948", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Atlando Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fortress", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hybrid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Echo Zulu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Munster Rugby", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KAOS e-sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "StoneHenge Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "condition": 100, - "full_name": "Sjakal", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 71, - "macro_play": 70, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Arman Akrawi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-05-09", - "nationality": "DK", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c967921", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Team Extreme Supremacy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NAT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NAT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Yutoru Berserkers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "aNc Legends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "aNc Legends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "QLASH", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "condition": 100, - "full_name": "Fragola", - "attributes": { - "laning": 65, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 65, - "champion_pool": 66, - "mental_resilience": 70 - }, - "match_name": "Alessandro Zappalà", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-337fb4a3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HMBLE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "condition": 100, - "full_name": "APP", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Nemanja Mirčić", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-11-27", - "nationality": "RS", - "profile_image_url": "/player-photos/1779870873051_APP.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4a6df48c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ESC Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Yutoru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Apocalypse e-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "condition": 100, - "full_name": "The Mountain", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 70, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Marco Benvenuto", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4f110393", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TITANS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "condition": 100, - "full_name": "RaptoSauros", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 71, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Lorenzo Silvestri", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": "/player-photos/1779870930578_RaptoSauros.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4f3ce207", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atlas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Outplayed Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "condition": 100, - "full_name": "Lobellan", - "attributes": { - "laning": 68, - "mechanics": 69, - "discipline": 70, - "macro_play": 67, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Emanuele Bevione", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-20", - "nationality": "IT", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-527ce39b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "condition": 100, - "full_name": "MeMo1", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Matteo Memè", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-54f90112", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deacoy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "condition": 100, - "full_name": "Sharon", - "attributes": { - "laning": 72, - "mechanics": 69, - "discipline": 65, - "macro_play": 68, - "consistency": 71, - "shotcalling": 64, - "teamfighting": 69, - "champion_pool": 66, - "mental_resilience": 68 - }, - "match_name": "Muhammed Mirza Esen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - } - ], - "id": "player-55ef3ff2", - "match_name": "Matteo Violi", - "full_name": "BeWhite", - "date_of_birth": "2003-10-21", - "nationality": "", - "profile_image_url": "/player-photos/1779870925842_BeWhite.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-563cbcb2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team EasyFix Co-Hop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Level One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team EasyFix Co-Hop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Adriatic Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Level One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Mythos Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Amelia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Adriatic Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "DayDreamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Manguste eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "QLASH Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "WNKR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mkers Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Project11", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Esport Empire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dea Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "condition": 100, - "full_name": "SkaR", - "attributes": { - "laning": 70, - "mechanics": 69, - "discipline": 70, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Alessandro Torresi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": "/player-photos/1779870908827_SkaR.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5ec4849e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PCIFIC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TITANS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "condition": 100, - "full_name": "Lesranct", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 64, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Alper Yaşar", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-03-24", - "nationality": "TR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-601e5b71", - "match_name": "Alessandro Torcoli", - "full_name": "Loeloal", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-61529687", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lobstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Mind Blue eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "Pericolo", - "attributes": { - "laning": 65, - "mechanics": 67, - "discipline": 72, - "macro_play": 67, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "match_name": "Andrea Dilluvio", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-01-08", - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-67a886c5", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "TheSerius", - "attributes": { - "laning": 69, - "mechanics": 67, - "discipline": 71, - "macro_play": 70, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 66, - "mental_resilience": 69 - }, - "match_name": "TheSerius", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6f6bd458", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7 Pompa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "7more7 Pompa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pompa Team Acad.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TT willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AliorBank Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AliorBank Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HMBLE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "condition": 100, - "full_name": "Adi1", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Adrian Jackowski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-02-07", - "nationality": "PL", - "profile_image_url": "/player-photos/1779870877603_Adi1.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-710e5daf", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TITANS", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bubba", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Roberto Di Bella", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3ee8399a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-723b52e9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "VfB Stuttgart eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "condition": 100, - "full_name": "Luke", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Luca Migliore", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-788aebad", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "condition": 100, - "full_name": "Raffy", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Raffaele Livigni", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": "/player-photos/1779870914816_Raffy.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7bbc503e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Underworld Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "StoneHenge Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "condition": 100, - "full_name": "Divine", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 73, - "macro_play": 70, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Alex Corona", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81ee1914", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "iDomina eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "iDomina eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "iDomina eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "condition": 100, - "full_name": "Rharesh", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Riccardo Tata", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1995-07-27", - "nationality": "IT", - "profile_image_url": "/player-photos/1779870917395_Rharesh.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82d152cd", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "CLN Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "5 Hydra Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "CLN Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Adriatic Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Outplayed Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Racoon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "StoneHenge Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "S1D", - "attributes": { - "laning": 70, - "mechanics": 69, - "discipline": 70, - "macro_play": 71, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Pietro Biffi", - "date_of_birth": "1997-10-30", - "nationality": "IT", - "profile_image_url": "/player-photos/1779870947726_S1D.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-a272304b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Cyberground Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Cyberground Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eNsure", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Godsent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-843fa280", - "match_name": "Luca Mancinelli", - "full_name": "MT", - "date_of_birth": "2001-10-09", - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-84e571f0", - "match_name": "Hailiang Ye", - "full_name": "Downfall", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-876931b4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AVE Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "condition": 100, - "full_name": "Mario", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 71, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Mario D'Agostino", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-88057298", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ECORP", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Barça eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ECORP", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Barça eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nocturne Gale", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Falke Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "Naau", - "attributes": { - "laning": 67, - "mechanics": 72, - "discipline": 65, - "macro_play": 71, - "consistency": 70, - "shotcalling": 69, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 68 - }, - "match_name": "Arnau Fores Garcia", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": "/player-photos/1779871005884_Naau.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8e38444c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bay State College", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Away from Normal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Bay State College", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HVFC Bakeca Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Yutoru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "condition": 100, - "full_name": "Jekko", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Jemal Revazishvili", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GE", - "profile_image_url": "/player-photos/1779870918772_Jekko__Jemal_Revazishvili_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9096cebf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Convict of Shadows", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "Alvanai", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 67, - "macro_play": 68, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 67 - }, - "match_name": "Giannis Hasanaj", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "AL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a35f01d8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Forsaken Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DELTALAND", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MFSK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Meliora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MVE ANO Master Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "condition": 100, - "full_name": "Izo", - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 73, - "macro_play": 71, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Igor Lapot", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ad8464c8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Axolotl Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "condition": 100, - "full_name": "Strava", - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 58, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 57, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Davide Bravetti", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-ada017e3", - "match_name": "Andrea Morabito", - "full_name": "Xen0gan", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b0fd7f8b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NOX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NOX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "condition": 100, - "full_name": "Ilyy", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Ilia Iakobashvili", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b30df4f0", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dropz Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "DayDreamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Axolotl Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Kenty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MCES Italia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GGEsports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Gulls Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Shredder", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 69, - "macro_play": 72, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Gabriele Iannarelli", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2001-09-10", - "nationality": "IT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b7ad2e29", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Forge Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "QLASH Forge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "QLASH Forge Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dusty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "MOBA ROG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mkers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LUA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "HMBLE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Click", - "attributes": { - "laning": 70, - "mechanics": 73, - "discipline": 70, - "macro_play": 71, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Vittorio Massolo", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1997-11-22", - "nationality": "IT", - "profile_image_url": "/player-photos/1779870892103_Click__Vittorio_Massolo_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-b8795a9a", - "match_name": "Jiabao Liu", - "full_name": "Sveglia", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c23c330a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "StoneHenge Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "condition": 100, - "full_name": "XHikama", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 72, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Mattia Narciso", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-07-01", - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d0582781", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Away from Normal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DELTALAND", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ruzeh Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "regnum4games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Underworld Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Aeterna Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Banino", - "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 70, - "macro_play": 72, - "consistency": 72, - "shotcalling": 65, - "teamfighting": 65, - "champion_pool": 66, - "mental_resilience": 69 - }, - "match_name": "Giuseppe Capogrosso", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-763ea26a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d55c0238", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Carpe Diem", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Magistra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Natus Vincere.CIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "nDurance Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Vega Squadron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Virtus.pro", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Virtus.pro", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Gameplay DNA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GG Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Sølvkikkert", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Operation Kino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Vega Squadron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Ventus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gambit Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mkers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team MCES", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "UCAM Tokiers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fnatic TQ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "UCAM Tokiers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "StoneHenge Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "condition": 100, - "full_name": "Doxy", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Rafael Adl Zarabi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-03-18", - "nationality": "DK", - "profile_image_url": "/player-photos/1779870932976_Doxy.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dd41a2c5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dropz Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "HG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DREN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MCES Italia Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "condition": 100, - "full_name": "DejaVu", - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 69, - "macro_play": 72, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Andrea Declara", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e2cb121a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Cyberground Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Manguste eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CGG Black Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "GGE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Yutoru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DELTALAND", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "P11 Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Corriragazzo", - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 67, - "macro_play": 67, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 68, - "mental_resilience": 69 - }, - "match_name": "Vincenzo Biganini", - "date_of_birth": "2002-05-25", - "nationality": "IT", - "profile_image_url": "/player-photos/1779870921861_Corriragazzo.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-d4e0b415", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ecf0b1a1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Nordavind", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NVision Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DSYRE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Nash", - "attributes": { - "laning": 68, - "mechanics": 69, - "discipline": 70, - "macro_play": 72, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 70 - }, - "match_name": "Alf-Kristian Haaland Sund", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "NO", - "profile_image_url": "/player-photos/1779870903319_Nash__Alf-Kristian_Sund_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-78e0cf99", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f19770c3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Zhonyas Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PCIFIC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Emerald Prisoners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TITANS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "condition": 100, - "full_name": "Dashkai", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 72, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Efe Bostanci", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-11-19", - "nationality": "Tk", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/ljl_players.json b/data/erls/players/ljl_players.json deleted file mode 100644 index ec623c7a7..000000000 --- a/data/erls/players/ljl_players.json +++ /dev/null @@ -1,1739 +0,0 @@ -{ - "name": "LJL Players", - "description": "LJL - 2026 Season", - "players": [ - { - "id": "player-153eb47e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "condition": 100, - "full_name": "Ravvy", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 74, - "macro_play": 65, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 64, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Kotarou Yoshida", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 74, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-01-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561980083_7b4ouh6ossv.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2363745a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "condition": 100, - "full_name": "Ellim", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 68, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Choi El-lim", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-05-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779715323374_t736gt6z59c.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2afb7943", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "condition": 100, - "full_name": "Karaage", - "attributes": { - "laning": 74, - "mechanics": 70, - "discipline": 72, - "macro_play": 68, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 71 - }, - "match_name": "Koga Kanno", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-09-25", - "nationality": "JP", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-36d9e8f1", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kurahuto", - "attributes": { - "laning": 72, - "mechanics": 66, - "discipline": 69, - "macro_play": 68, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 69 - }, - "match_name": "Masamune Hosokawa", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-01-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779607225929_6ykoi3lp4rm.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-15282d93", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-439b3373", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "condition": 100, - "full_name": "kkkkkkkkk", - "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 68, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Kouki Ohno", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-02-14", - "nationality": "JP", - "profile_image_url": "/player-photos/1779715302358_4luzoa5cosm.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4c9945ee", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "condition": 100, - "full_name": "rre", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Kodai Tamura", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-23", - "nationality": "JP", - "profile_image_url": "/player-photos/1779715676919_pe3l1wa8igq.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-53a3ce82", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "condition": 100, - "full_name": "Elative", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "An Chi-wan ", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2001-04-12", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779731483297_f9yadfxvxp.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-563ef4e7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "condition": 100, - "full_name": "Jericho", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Takefumi Kosaka", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-02-13", - "nationality": "JP", - "profile_image_url": "/player-photos/1779731397974_6i8fkzvt5u.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5cd0da40", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Saver", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 72, - "macro_play": 70, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Lee Yong-min", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2004-02-16", - "nationality": "KR", - "profile_image_url": "/player-photos/1779715692764_p5herkq0gt.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-208c3750", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5ebe8018", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "condition": 100, - "full_name": "Chico", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Hibiki Yamane", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-01-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779714784752_2uahcatx92r.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6b674954", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "condition": 100, - "full_name": "Grit", - "attributes": { - "laning": 70, - "mechanics": 66, - "discipline": 74, - "macro_play": 66, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Kazuki Aoshima", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-01-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561984156_60ikmt3139y.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-78e792c2", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "condition": 100, - "full_name": "Razer", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 74, - "macro_play": 72, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Koji Kuwajima", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-01-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779714701473_407cypcbxgy.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7f025de3", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "condition": 100, - "full_name": "Gimi", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Kim Min-gyu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779731422354_9pwgbwhfp0w.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-83f85b6e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "condition": 100, - "full_name": "SnowRabbit\t", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Yukito Yasuda", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2008-11-27", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-11-07", - "nationality": "JP", - "profile_image_url": "/player-photos/1779715690170_666uall85wf.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8760a44b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c1e9468d", - "condition": 100, - "full_name": "ankochan", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Masaki Kawashima", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-04-27", - "nationality": "JP", - "profile_image_url": "/player-photos/1779717264463_k4ro34liw1i.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8af60465", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bruce", - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 68, - "macro_play": 71, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Bruce Scott Torres Nano", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2004-04-26", - "nationality": "PE", - "profile_image_url": "/player-photos/1779715359248_y85ijmy3z8.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-b6b8bfae", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-97a276cb", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "condition": 100, - "full_name": "MayR", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 68, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Shunsuke Kumagai", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-10-01", - "nationality": "JP", - "profile_image_url": "/player-photos/1779715463719_wpa6ntsxuvo.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9d2d1fef", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "condition": 100, - "full_name": "p1ng", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Kazuhira Arihara", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2007-01-01", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779715680290_v7qq5qa73s.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9dcea337", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c1e9468d", - "condition": 100, - "full_name": "YellowYoshi\t", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Yoshiki Fujimoto", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2002-04-03", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779717181589_ar8di1l25hn.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b9563853", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "condition": 100, - "full_name": "Alps", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Alps", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bc5636c3", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Patch", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Han Seung-mi", - "loan_listed": false, - "contract_end": "2001-09-22", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779717140303_kybwffytx39.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-c1e9468d", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bcb852e4", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "condition": 100, - "full_name": "suyahime", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "suyahime", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c7fd6212", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "condition": 100, - "full_name": "HyunSim", - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 71, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Sim Eun-ho ", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2003-04-29", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779715686797_7zyadh9qqlr.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cfeacc2b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "condition": 100, - "full_name": "Kangkuk", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Kim Kang-ku", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-11-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779714679100_mv9tupauxr.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d0aeefae", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "UKyo", - "attributes": { - "laning": 73, - "mechanics": 70, - "discipline": 74, - "macro_play": 72, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "UKyo", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e82d1866", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d3466c39", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c1e9468d", - "condition": 100, - "full_name": "Archer", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Lee Keun-hee", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-12-17", - "nationality": "KR", - "profile_image_url": "/player-photos/1779717081173_ng1tmbrxcpl.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d638f08f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c1e9468d", - "condition": 100, - "full_name": "Ramune", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Osamu Ozawa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1997-11-02", - "nationality": "JP", - "profile_image_url": "/player-photos/1779717274616_afr718ylsd9.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d80790ca", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "f4ke", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "An Chi-wanf", - "loan_listed": false, - "contract_end": "2001-04-12", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779731295691_06r1e46x2dy4.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e977febc", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da956576", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "condition": 100, - "full_name": "advance", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "advance", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-db55752a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "condition": 100, - "full_name": "Fluid", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 72, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Yutaka Inoue", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2004-01-01", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779714740359_2o3yule9608.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dd92bd81", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "condition": 100, - "full_name": "Potential", - "attributes": { - "laning": 72, - "mechanics": 69, - "discipline": 72, - "macro_play": 71, - "consistency": 72, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Lee Si-hyung", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-01-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561965593_u1yo2r88oha.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e3c72023", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "condition": 100, - "full_name": "Damocles", - "attributes": { - "laning": 71, - "mechanics": 66, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Park Jae-hyun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561975307_b98gca43wa4.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e6aa5e38", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "condition": 100, - "full_name": "Gecko", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 74, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Jeon Sang-il", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-04-16", - "nationality": "KR", - "profile_image_url": "/player-photos/1779714618274_qn0r4qidqzc.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7e8db44", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "condition": 100, - "full_name": "HRK", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 74, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "HRK", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-efe50e62", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "condition": 100, - "full_name": "tol2", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Haruki Shibata", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-10-17", - "nationality": "JP", - "profile_image_url": "/player-photos/1779731461656_q2ihws5kae.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f5e239e2", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "condition": 100, - "full_name": "DICE", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 66, - "macro_play": 72, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Hong Do-hyeon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2003-12-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779715406257_asdiom1yyd.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f7b42ea9", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "condition": 100, - "full_name": "Eria", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 73, - "macro_play": 71, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Eria", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lplol_players.json b/data/erls/players/lplol_players.json deleted file mode 100644 index c6eb70c33..000000000 --- a/data/erls/players/lplol_players.json +++ /dev/null @@ -1,3415 +0,0 @@ -{ - "name": "LPLOL Players", - "description": "LPLOL - 2026 Season", - "players": [ - { - "id": "player-022778cb", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "condition": 100, - "full_name": "NOMA", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 64, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "NOMA", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-03618db6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AURORA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-81f175c5", - "condition": 100, - "full_name": "Cimpo", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Okan Öztopaç", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-06-08", - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-05ad55a7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "condition": 100, - "full_name": "Dreampull", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Dreampull", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-068b70d0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hurricane of Feathers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "condition": 100, - "full_name": "Zezin", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 61, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "José Dinis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1234b5b5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "condition": 100, - "full_name": "Salgueir0", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Vítor Salgueiro", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-08-19", - "nationality": "PT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-12711e0f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "GeekCase eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GeekCase eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lostboy", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 58, - "macro_play": 61, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 59 - }, - "match_name": "André Tavares", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": "/player-photos/1779870094827_Lostboy.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-cd7def0c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1ab50307", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "condition": 100, - "full_name": "costy", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "costy", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1b9e60c1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "condition": 100, - "full_name": "Bakisa", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Branko Simeonovski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-05-03", - "nationality": "RS", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c7cd5e7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "condition": 100, - "full_name": "Nomanz", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Nomanz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1d93099a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "condition": 100, - "full_name": "FallenBandit", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "FallenBandit", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1e7ca668", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Aurora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WeSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "condition": 100, - "full_name": "Lumity", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Filip Peřina", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-10-10", - "nationality": "CZ", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1f4b581d", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "condition": 100, - "full_name": "D4SH", - "attributes": { - "laning": 53, - "mechanics": 58, - "discipline": 62, - "macro_play": 56, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 56, - "mental_resilience": 61 - }, - "match_name": "D4SH", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1fa751e4", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "CrabLord", - "attributes": { - "laning": 58, - "mechanics": 62, - "discipline": 54, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 58 - }, - "match_name": "CrabLord", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8baac22a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-20d7dc63", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "condition": 100, - "full_name": "BBK Sankaizer", - "attributes": { - "laning": 55, - "mechanics": 63, - "discipline": 60, - "macro_play": 56, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Sankaizer", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d98d8d2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "AURORA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SUP Blaze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Chasing Haze 07", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Forbidden Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-81f175c5", - "condition": 100, - "full_name": "Camana", - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Burak Erdem Uçar", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-10-02", - "nationality": "TR", - "profile_image_url": "/player-photos/1779870079907_Camana.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4b249844", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "AeQ E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Penguins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "PENTA Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Enclave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Östersunds FK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PENTA Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "mCon LG UltraGear", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ERN ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "condition": 100, - "full_name": "Noodle", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 58, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Kim Kroon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-08-13", - "nationality": "SE", - "profile_image_url": "/player-photos/1779870083235_Noodle__Kim_Kroon_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Senshi Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-4b5f7a96", - "match_name": "Diogo Pacheco", - "full_name": "DIGA", - "date_of_birth": "2001-08-06", - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5791e779", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "condition": 100, - "full_name": "Aspect", - "attributes": { - "laning": 63, - "mechanics": 58, - "discipline": 63, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Aspect", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-6073045c", - "match_name": "Erwin Daubenfeldt", - "full_name": "LONVEY", - "date_of_birth": "2005-08-05", - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6749a972", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ukrainian Glory Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kkero", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Kaan Soyuner", - "date_of_birth": "2004-09-30", - "nationality": "TR", - "profile_image_url": "/player-photos/1779870086070_Kkero.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-81f175c5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6900078a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "condition": 100, - "full_name": "LVS", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "LVS", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6955c32b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Hexagone Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "x6tence Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ERN ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-81f175c5", - "condition": 100, - "full_name": "Lulas", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Luís Miguel da Silva Azevedo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": "/player-photos/1779870076156_Lulas.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6d0f2553", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EFIVE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BWE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BWE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "condition": 100, - "full_name": "Semide", - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 62, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Tiago Semide", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-02-07", - "nationality": "PT", - "profile_image_url": "/player-photos/1779870087332_Semide.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Black Panthers eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BWE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BWE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Senshi Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Grow uP eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Grow uP eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-6f192835", - "match_name": "João Martins", - "full_name": "Oceann", - "date_of_birth": "2002-03-09", - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-81f175c5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Grow uP eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-7605d8aa", - "match_name": "Leonardo Guerreiro", - "full_name": "Ffernandes", - "date_of_birth": "2004-02-12", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-804c96b8", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "condition": 100, - "full_name": "Favorito", - "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 60, - "macro_play": 64, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Favorito", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-93f5785f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "condition": 100, - "full_name": "Hamsi", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 59, - "macro_play": 61, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Hamsi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a5a39ae4", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "condition": 100, - "full_name": "Shiganari", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Shiganari", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ab5e9b00", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Varin", - "attributes": { - "laning": 63, - "mechanics": 60, - "discipline": 56, - "macro_play": 62, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Varin", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-527a1974", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-aec44ba6", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "RDT raisu", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "RDT raisu", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-af19f0b8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Senshi Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Grow uP eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "condition": 100, - "full_name": "Skypper", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 61, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Diogo Reis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-afd789e2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "condition": 100, - "full_name": "RealR", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Rafael Vilas Boas", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hurricane of Feathers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vantex Esports", - "appearances": 0 - } - ], - "id": "player-c38f09d6", - "match_name": "Alexandre Brito Freitas", - "full_name": "TheGreatGary", - "date_of_birth": "2007-11-11", - "nationality": "", - "profile_image_url": "/player-photos/1779870074620_TheGreatGary.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-81f175c5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c4b75309", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "condition": 100, - "full_name": "Demonadc", - "attributes": { - "laning": 55, - "mechanics": 62, - "discipline": 53, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 57 - }, - "match_name": "Demonadc", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb1a794d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team GMask", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BeFive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Coli", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "David Starovlas", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2003-08-14", - "nationality": "RS", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-273eca26", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cefcf9f2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "condition": 100, - "full_name": "Sahira", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Enes Apelqvist", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": "/player-photos/1779870087469_Sahira.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d1bc624f", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ze Luis", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 60, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Ze Luis", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-258078d0", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e2d6caa5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZeroZone Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "condition": 100, - "full_name": "JoKozz", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Joël Sequeira", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-01-04", - "nationality": "CH", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eb1d6305", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "condition": 100, - "full_name": "ardaffler", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 60, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "ardaffler", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eb3e4855", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "E-nsane Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MFSK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVE ANO Master Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "condition": 100, - "full_name": "Kaplica", - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 60, - "macro_play": 64, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Filip Lefik", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-08-23", - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-eee8c630", - "match_name": "Rafael Amaral", - "full_name": "Chambel", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f3c601c4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "condition": 100, - "full_name": "Glimpse", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 59, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 59 - }, - "match_name": "José Gonçalves", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fe44cee1", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "condition": 100, - "full_name": "Flashpowa", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Flashpowa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lrn_players.json b/data/erls/players/lrn_players.json deleted file mode 100644 index 3cd735947..000000000 --- a/data/erls/players/lrn_players.json +++ /dev/null @@ -1,7875 +0,0 @@ -{ - "name": "LRN Players", - "description": "LRN - 2026 Season", - "players": [ - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-sdm-tigres", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Neon Vibes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-sdm-tigres", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Atheris Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Aurelius Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Atomic México", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-the-kings", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-xten-esports", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Zwan Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "XTEN Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Authority E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Space eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 68, - "macro_play": 64, - "consistency": 68, - "shotcalling": 67, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 70 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 75, - "transfer_listed": false, - "id": "player-007bb619", - "match_name": "Héctor Manuel Delgado Jaramillo", - "full_name": "Ichikawa", - "date_of_birth": "2000-04-05", - "nationality": "MX", - "profile_image_url": "/player-photos/1779887014571_hpqt2wiiqng.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 55, - "mechanics": 57, - "discipline": 58, - "macro_play": 56, - "consistency": 57, - "shotcalling": 63, - "teamfighting": 56, - "champion_pool": 61, - "mental_resilience": 59 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 62, - "transfer_listed": false, - "id": "player-18c8d682", - "match_name": "BetaTwinz", - "full_name": "Dario Betancourt", - "date_of_birth": "1997-06-05", - "nationality": "MX", - "profile_image_url": "/player-photos/1779531459339_l1wl42t2bwl.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-icon-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SaiHun", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Red\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Aguilas Doradas", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 67, - "mechanics": 68, - "discipline": 62, - "macro_play": 65, - "consistency": 63, - "shotcalling": 68, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 65 - }, - "loan_listed": false, - "potential_base": 75, - "transfer_listed": false, - "id": "player-1947b668", - "match_name": "Juan Fernando Bernal Garzón", - "full_name": "Keis", - "date_of_birth": "2003-08-20", - "nationality": "CO", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrn-lyon-academy", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Tsunami Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Braves Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Arctic Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Arctic Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "ESTORM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "ESTORM", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 68, - "macro_play": 64, - "consistency": 65, - "shotcalling": 66, - "teamfighting": 64, - "champion_pool": 68, - "mental_resilience": 68 - }, - "loan_listed": false, - "potential_base": 73, - "transfer_listed": false, - "id": "player-1c3e6b84", - "match_name": "Francisco Antonio Taba Hueramo", - "full_name": "Steellar", - "date_of_birth": "2003-01-18", - "nationality": "MX", - "profile_image_url": "/player-photos/1778527027261_tq65sg9ssrd.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Algo Bien", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-ncg-esports", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Rosso Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 62, - "consistency": 60, - "shotcalling": 69, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 66 - }, - "loan_listed": false, - "potential_base": 74, - "transfer_listed": false, - "id": "player-21ccae8f", - "match_name": "Moises Alessandro Rodriguez Cardona", - "full_name": "Intensitive", - "date_of_birth": "2003-10-19", - "nationality": "SV", - "profile_image_url": "/player-photos/1779036315895_khkafs7w38l.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-icon-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-809934cf", - "wage": 80000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Los Mapaches", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Los Mapaches", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Rise Gaming Chile", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Antares Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-polar-squad-esport", - "position": "Support", - "condition": 100, - "full_name": "Relax", - "attributes": { - "laning": 62, - "mechanics": 59, - "discipline": 60, - "macro_play": 59, - "consistency": 58, - "shotcalling": 63, - "teamfighting": 57, - "champion_pool": 58, - "mental_resilience": 61 - }, - "match_name": "Sebastián Farid Huapaya Espinoza", - "loan_listed": false, - "morale_core": {}, - "nationality": "Peru", - "contract_end": "2026-12-20", - "market_value": 1200000, - "birth_country": null, - "date_of_birth": "2002-11-19", - "potential_base": 71, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": "/player-photos/1778523601234_mp5smgnos1r.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-a29758b7", - "wage": 77000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Cute Kittens Inc.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zenshi Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zenshi Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Cupid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "CCG Glorp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "grompcord", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "U4RIA Nerium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Gentle Hearts", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Gentle Hearts", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "The Cheese Chasers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Miracle", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mirage Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "UC Irvine", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "UC Irvine", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Mercenaries", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "CCG Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "CCG Emerald", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-icon-esports", - "position": "Top", - "condition": 100, - "full_name": "Berik", - "attributes": { - "laning": 63, - "mechanics": 70, - "discipline": 72, - "macro_play": 70, - "consistency": 65, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Erik Kim", - "loan_listed": false, - "morale_core": {}, - "nationality": "United States", - "contract_end": "2026-12-20", - "market_value": 1155000, - "birth_country": null, - "date_of_birth": "2003-10-09", - "potential_base": 74, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/1778684941943_2aqv8z6itta.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-06e1af72", - "wage": 116000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Xibalbá", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "STMN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LDU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-polar-squad-esport", - "position": "Jungle", - "condition": 100, - "full_name": "Saens", - "attributes": { - "laning": 67, - "mechanics": 72, - "discipline": 67, - "macro_play": 71, - "consistency": 64, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 68, - "mental_resilience": 65 - }, - "match_name": "Ángel Santiago Saens Aguilar", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1740000, - "birth_country": null, - "date_of_birth": "2003-06-17", - "potential_base": 82, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778584873578_u5teeyi053e.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-5b9e7047", - "wage": 107000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Braves Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Predators Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "⁠6Sense", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "⁠6Sense", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-fuego", - "position": "Mid", - "condition": 100, - "full_name": "Zelt", - "attributes": { - "laning": 82, - "mechanics": 75, - "discipline": 75, - "macro_play": 78, - "consistency": 79, - "shotcalling": 68, - "teamfighting": 77, - "champion_pool": 75, - "mental_resilience": 77 - }, - "match_name": "Jairo Camilo Urbina Orozco", - "loan_listed": false, - "morale_core": {}, - "nationality": "Colombia", - "contract_end": "2026-12-20", - "market_value": 1605000, - "birth_country": null, - "date_of_birth": "2000-04-20", - "potential_base": 79, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1778494510036_47k0kpauqgn.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Lightning", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Kai Cenat", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 72, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 69, - "champion_pool": 72, - "mental_resilience": 73 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "id": "player-37cecd91", - "match_name": "Carlo Andre Carrion Zapata", - "full_name": "Shiku", - "date_of_birth": "2004-04-28", - "nationality": "PE", - "profile_image_url": "/player-photos/1779622181590_c8yhmtnt2u.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-fuego", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87f2a811", - "wage": 53000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Potros ITSON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Reven Esports\t", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-zeu5-esport", - "position": "Top", - "condition": 100, - "full_name": "Zhayend", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 71, - "macro_play": 68, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 60, - "champion_pool": 66, - "mental_resilience": 64 - }, - "match_name": "Julio César Roldán Andrade", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 795000, - "birth_country": null, - "date_of_birth": "2005-01-21", - "potential_base": 69, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/6a5b4e3f.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-f8e923cc", - "wage": 74000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Bandits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Cream Real Betis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Cream Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Cream Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "6Sense", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Predators Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Predators Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Exceltec Predators", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-sdm-tigres", - "position": "Mid", - "condition": 100, - "full_name": "Icy", - "attributes": { - "laning": 74, - "mechanics": 76, - "discipline": 76, - "macro_play": 70, - "consistency": 76, - "shotcalling": 71, - "teamfighting": 76, - "champion_pool": 72, - "mental_resilience": 74 - }, - "match_name": "Andrés Marcelo Barba Rodriguez", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1110000, - "birth_country": null, - "date_of_birth": "1999-04-25", - "potential_base": 82, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1779886927599_63syymvqqbf.png", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Tsunami Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Bandits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Cream Real Betis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Cream Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Anáhuac Esports\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "MADL Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Ordo Equitum", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Nawal Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 71, - "macro_play": 72, - "consistency": 74, - "shotcalling": 77, - "teamfighting": 73, - "champion_pool": 68, - "mental_resilience": 73 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 79, - "transfer_listed": false, - "id": "player-3ec4c1ec", - "match_name": "Julián Cárdenas Sanchez", - "full_name": "Mataz", - "date_of_birth": "2001-01-19", - "nationality": "MX", - "profile_image_url": "/player-photos/1779886900209_09fmcplnkfu8.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4086f636", - "wage": 122000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARAWAK ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-zeu5-esport", - "position": "Mid", - "condition": 100, - "full_name": "Sweeho", - "attributes": { - "laning": 61, - "mechanics": 70, - "discipline": 63, - "macro_play": 66, - "consistency": 61, - "shotcalling": 69, - "teamfighting": 73, - "champion_pool": 67, - "mental_resilience": 65 - }, - "match_name": "Jose Urrieche", - "loan_listed": false, - "morale_core": {}, - "nationality": "Venezuela", - "contract_end": "2026-12-20", - "market_value": 1830000, - "birth_country": null, - "date_of_birth": "2000-01-01", - "potential_base": 78, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/3e9483f4.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "AG Esports Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠AG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Everlove Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports Red", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 60, - "mechanics": 54, - "discipline": 55, - "macro_play": 59, - "consistency": 56, - "shotcalling": 63, - "teamfighting": 55, - "champion_pool": 62, - "mental_resilience": 57 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 69, - "transfer_listed": false, - "id": "player-4158d2ef", - "match_name": "Alberto Luis Pérez Ramos", - "full_name": "BetoEZ", - "date_of_birth": "2001-06-17", - "nationality": "VE", - "profile_image_url": "/player-photos/1778522465915_fuzkf5r8uyb.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-ncg-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 65, - "macro_play": 65, - "consistency": 64, - "shotcalling": 63, - "teamfighting": 68, - "champion_pool": 63, - "mental_resilience": 63 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 81, - "transfer_listed": false, - "id": "player-452d85f6", - "match_name": "Besler Ayala", - "full_name": "Ratth", - "date_of_birth": null, - "nationality": "HN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-lyon-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cd1f25da", - "wage": 98000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Kai Cenat", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "McDonals Workers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Rosso Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ramo Awake Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Skull Cracker", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-icon-esports", - "position": "ADC", - "condition": 100, - "full_name": "Intio", - "attributes": { - "laning": 57, - "mechanics": 58, - "discipline": 63, - "macro_play": 60, - "consistency": 59, - "shotcalling": 61, - "teamfighting": 63, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Andres Felipe Rodriguez Silva", - "loan_listed": false, - "morale_core": {}, - "nationality": "Colombia", - "contract_end": "2026-12-20", - "market_value": 1470000, - "birth_country": null, - "date_of_birth": "2004-06-17", - "potential_base": 76, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/6b4a9cff.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-803ece2b", - "wage": 68000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Busting Head", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DCT eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "PRO42", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Goat Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-polar-squad-esport", - "position": "ADC", - "condition": 100, - "full_name": "Catan", - "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 65, - "macro_play": 65, - "consistency": 62, - "shotcalling": 66, - "teamfighting": 64, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Dylan Bravo Polo", - "loan_listed": false, - "morale_core": {}, - "nationality": "Colombia", - "contract_end": "2026-12-20", - "market_value": 1020000, - "birth_country": null, - "date_of_birth": "2003-11-14", - "potential_base": 76, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778523736843_awazqs16y2c.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Team Anomaly Breaker", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Anomaly", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dragones Carolina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Dragones Carolina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Dragones Carolina", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 65, - "macro_play": 66, - "consistency": 64, - "shotcalling": 68, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 74, - "transfer_listed": false, - "id": "player-54e3ec42", - "match_name": "Ángel Cota", - "full_name": "Keptt", - "date_of_birth": "2002-10-19", - "nationality": "MX", - "profile_image_url": "/player-photos/1779887038764_pctkm7y06ye.png", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternal Fire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Shadow Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "LSB Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "SANDBOX Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 78, - "mechanics": 77, - "discipline": 73, - "macro_play": 78, - "consistency": 78, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 72, - "mental_resilience": 74 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 87, - "transfer_listed": false, - "id": "player-558e85b3", - "match_name": "Jeong Ye-chan", - "full_name": "Ivory", - "date_of_birth": "2003-10-12", - "nationality": "KR", - "profile_image_url": "/player-photos/1779621611280_hfiqdirg0xo.jpg", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-fuego", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mezexis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Gravity Elite", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Braves Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Quantum Gravity", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 68, - "macro_play": 66, - "consistency": 65, - "shotcalling": 70, - "teamfighting": 65, - "champion_pool": 67, - "mental_resilience": 67 - }, - "loan_listed": false, - "potential_base": 70, - "transfer_listed": false, - "id": "player-56b2e81c", - "match_name": "Luis Alfredo Avendaño Tobal", - "full_name": "Blind Walker", - "date_of_birth": "2002-04-28", - "nationality": "GT", - "profile_image_url": "/player-photos/1778524436774_fttmknjax9u.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrn-zeu5-esport", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "KaBuM! Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "KaBuM! Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Midnight Griffins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Reload Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "We Plash Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "LØS Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 65, - "mechanics": 67, - "discipline": 67, - "macro_play": 66, - "consistency": 63, - "shotcalling": 68, - "teamfighting": 68, - "champion_pool": 69, - "mental_resilience": 65 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 75, - "transfer_listed": false, - "id": "player-65882963", - "match_name": "Luca Henriques Andrade", - "full_name": "Kita", - "date_of_birth": "2003-12-21", - "nationality": "BR", - "profile_image_url": "/player-photos/1778525041467_am7y02et3vu.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-zeu5-esport", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b10e73cf", - "wage": 113000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-fuego", - "position": "Top", - "condition": 100, - "full_name": "Zothve", - "attributes": { - "laning": 73, - "mechanics": 75, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 68, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Cristóbal Arróspide", - "loan_listed": false, - "morale_core": {}, - "nationality": "Chile", - "contract_end": "2026-12-20", - "market_value": 1695000, - "birth_country": null, - "date_of_birth": "2003-02-18", - "potential_base": 79, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/1779622028640_cbhndotuyvo.png", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SaiHun", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 73, - "macro_play": 60, - "consistency": 63, - "shotcalling": 69, - "teamfighting": 66, - "champion_pool": 70, - "mental_resilience": 69 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 81, - "transfer_listed": false, - "id": "player-75112581", - "match_name": "Miguel Angel Cucho Rivera", - "full_name": "Deadly", - "date_of_birth": "2006-08-19", - "nationality": "PE", - "profile_image_url": "/player-photos/1778518245180_prbf5ydn3qj.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-lyon-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "FUSION", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 61, - "mechanics": 63, - "discipline": 62, - "macro_play": 59, - "consistency": 62, - "shotcalling": 58, - "teamfighting": 59, - "champion_pool": 62, - "mental_resilience": 62 - }, - "loan_listed": false, - "potential_base": 70, - "transfer_listed": false, - "id": "player-7626fa65", - "match_name": "Andrid Gomez", - "full_name": "Challenq", - "date_of_birth": null, - "nationality": "VE", - "profile_image_url": "/player-photos/1778508486133_v1qp52ogr3p.png", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "lrn-g3v-e-sports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-64ba6568", - "wage": 68000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Sussy Six", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "ReluminateGG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "The Wigglets", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mirage Alliance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "ShadowZ Fan Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "High Tempo Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-lyon-academy", - "position": "Top", - "condition": 100, - "full_name": "Colin Jones", - "attributes": { - "laning": 64, - "mechanics": 60, - "discipline": 62, - "macro_play": 64, - "consistency": 65, - "shotcalling": 57, - "teamfighting": 62, - "champion_pool": 65, - "mental_resilience": 62 - }, - "match_name": "Gjones", - "loan_listed": false, - "morale_core": {}, - "nationality": "United States", - "contract_end": "2026-12-20", - "market_value": 1020000, - "birth_country": null, - "date_of_birth": "2004-12-13", - "potential_base": 70, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "METANOIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Glitch Quantum Violet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARCANIX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Space Rabbit e-Sports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 57, - "mechanics": 64, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 57, - "teamfighting": 62, - "champion_pool": 65, - "mental_resilience": 60 - }, - "loan_listed": false, - "potential_base": 70, - "transfer_listed": false, - "id": "player-7abd6f2f", - "match_name": "Marcos Daniel Martínez", - "full_name": "Maiquiyo", - "date_of_birth": "2008-12-17", - "nationality": "DO", - "profile_image_url": "/player-photos/1778525284979_ss8k7v1ocsq.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "lrn-zeu5-esport", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b9857454", - "wage": 59000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG SP", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Boots of Haste", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "TFK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "We Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "We Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "VAULT", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-ncg-esports", - "position": "Mid", - "condition": 100, - "full_name": "Vares", - "attributes": { - "laning": 65, - "mechanics": 62, - "discipline": 67, - "macro_play": 69, - "consistency": 66, - "shotcalling": 69, - "teamfighting": 65, - "champion_pool": 69, - "mental_resilience": 63 - }, - "match_name": "Adrián Olivares", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 885000, - "birth_country": null, - "date_of_birth": "2000-01-01", - "potential_base": 74, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1778521948473_rbhinjicjx.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "War Legion Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Red Rooster Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Atomic México", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Kings of the North", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 63, - "macro_play": 65, - "consistency": 62, - "shotcalling": 62, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 67 - }, - "loan_listed": false, - "potential_base": 85, - "transfer_listed": false, - "id": "player-7c8ec728", - "match_name": "Khenmelt Omar Izaguirre Castillo", - "full_name": "Tuercas", - "date_of_birth": null, - "nationality": "MX", - "profile_image_url": "/player-photos/1778519279884_3dnk46xxhu1.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "lrn-ncg-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6f1ee624", - "wage": 101000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Space Rabbit e-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DSC3V", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Janus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Arctic Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Just Toys Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "DP5 Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-icon-esports", - "position": "Jungle", - "condition": 100, - "full_name": "Feng", - "attributes": { - "laning": 59, - "mechanics": 63, - "discipline": 68, - "macro_play": 61, - "consistency": 61, - "shotcalling": 72, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 68 - }, - "match_name": "Jose Sergio Ricalday Ramirez", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1515000, - "birth_country": null, - "date_of_birth": "1998-08-21", - "potential_base": 70, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778585326098_46cl4kxhkbz.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-e3e730c2", - "wage": 41000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Bandits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "19esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Janus Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Arctic Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "ESTORM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Just Toys Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "LoL Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "ZAGA Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "ZAGA Talent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Royal Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "OwnsTime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": "", - "team_name": "MaD Gaming MX", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-sdm-tigres", - "position": "ADC", - "condition": 100, - "full_name": "VirusFx", - "attributes": { - "laning": 68, - "mechanics": 69, - "discipline": 70, - "macro_play": 73, - "consistency": 69, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 71 - }, - "match_name": "Guillermo Alfonso Navarrete Uxul", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 615000, - "birth_country": null, - "date_of_birth": "1999-01-01", - "potential_base": 79, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1779886978034_bt09srjb0kv.png", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Galactic Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Gaming Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Dash9 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": "", - "team_name": "Team ANG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": "", - "team_name": "Ducks on Fire", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 78, - "mechanics": 75, - "discipline": 78, - "macro_play": 76, - "consistency": 79, - "shotcalling": 81, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 79 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 85, - "transfer_listed": false, - "id": "player-8cdb4eb9", - "match_name": "Sebastián Alonso Niño Zavaleta", - "full_name": "Oddie", - "date_of_birth": "1997-08-28", - "nationality": "PE", - "profile_image_url": "/player-photos/1779622084964_s6im5psp1pe.png", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrn-fuego", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "McDonals Workers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 60, - "mechanics": 67, - "discipline": 65, - "macro_play": 65, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 68, - "mental_resilience": 64 - }, - "loan_listed": false, - "potential_base": 71, - "transfer_listed": false, - "id": "player-9f258439", - "match_name": "German Loyo Ordaz", - "full_name": "Shavo", - "date_of_birth": "2005-09-29", - "nationality": "MX", - "profile_image_url": "/player-photos/1778522891893_r73wx7l4yq.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "lrn-polar-squad-esport", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 58, - "mechanics": 65, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 61, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 61 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 77, - "transfer_listed": false, - "id": "player-a9bc132e", - "match_name": "Asaf Reyes Contreras", - "full_name": "Rokecs", - "date_of_birth": "2001-01-31", - "nationality": "MX", - "profile_image_url": "/player-photos/1778523471622_lb0j3oy4z5.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-polar-squad-esport", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-ncg-esports", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Glitch Quantum Violet\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fenrir Esports Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 60, - "macro_play": 57, - "consistency": 59, - "shotcalling": 63, - "teamfighting": 57, - "champion_pool": 59, - "mental_resilience": 60 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 72, - "transfer_listed": false, - "id": "player-ae1ff890", - "match_name": "Oswaldo Rojas", - "full_name": "BotAure", - "date_of_birth": null, - "nationality": "MX", - "profile_image_url": "/player-photos/1779532615819_ux1maxzumog.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-ncg-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Trolls Inc Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Red", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Busting Head", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "PRO42", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 59, - "macro_play": 63, - "consistency": 59, - "shotcalling": 68, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 59 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 69, - "transfer_listed": false, - "id": "player-b1b0f26d", - "match_name": "Alex Felipe Yanquen Jaime", - "full_name": "Felkros", - "date_of_birth": "2004-05-25", - "nationality": "CO", - "profile_image_url": "/player-photos/1778518764409_m3dx9mi0bzo.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-lyon-academy", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-aec8b123", - "wage": 119000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Bandits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "OG Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-sdm-tigres", - "position": "Top", - "condition": 100, - "full_name": "Jauny", - "attributes": { - "laning": 66, - "mechanics": 75, - "discipline": 73, - "macro_play": 74, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 68, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Jauny Vargas Altamirano", - "loan_listed": false, - "morale_core": {}, - "nationality": "Costa Rica", - "contract_end": "2026-12-20", - "market_value": 1785000, - "birth_country": null, - "date_of_birth": "2001-04-12", - "potential_base": 75, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/1779886877487_yx3riahbulk.png", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARAWAK ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "STMN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 65, - "macro_play": 62, - "consistency": 68, - "shotcalling": 69, - "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "id": "player-ba167646", - "match_name": "Gael Dabdoub", - "full_name": "Cor", - "date_of_birth": "2005-04-11", - "nationality": "MX", - "profile_image_url": "/player-photos/1778523256984_6w6k99e2red.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-polar-squad-esport", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e0aa9034", - "wage": 131000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Janus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Zeus Kralik", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "PRO42", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Zwan Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Ordo Equitum", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Ordo Equitum", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-zeu5-esport", - "position": "ADC", - "condition": 100, - "full_name": "Foxy", - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 65, - "macro_play": 65, - "consistency": 64, - "shotcalling": 64, - "teamfighting": 71, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Ricardo Manuel Ríos Freitas", - "loan_listed": false, - "morale_core": {}, - "nationality": "Venezuela", - "contract_end": "2026-12-20", - "market_value": 1965000, - "birth_country": null, - "date_of_birth": "1999-02-16", - "potential_base": 81, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778524776294_7xm3vulgsgl.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-7ee99fb8", - "wage": 83000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Gray Hunters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Neon Vibes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Rising Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Destiny", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fenrir Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Genbu Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-ncg-esports", - "position": "Top", - "condition": 100, - "full_name": "Lie", - "attributes": { - "laning": 59, - "mechanics": 58, - "discipline": 60, - "macro_play": 60, - "consistency": 58, - "shotcalling": 57, - "teamfighting": 59, - "champion_pool": 60, - "mental_resilience": 57 - }, - "match_name": "Diego Ivan Garduño Ochoa", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1245000, - "birth_country": null, - "date_of_birth": "2000-01-01", - "potential_base": 68, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/5c0c5a93.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-ncg-esports", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "AG Esports Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Destiny", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fenrir Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Genbu Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 58, - "macro_play": 60, - "consistency": 56, - "shotcalling": 69, - "teamfighting": 58, - "champion_pool": 64, - "mental_resilience": 62 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 71, - "transfer_listed": false, - "id": "player-d0e6570d", - "match_name": "Hugo Uriostegui Mañon", - "full_name": "Migaja", - "date_of_birth": "2003-05-16", - "nationality": "MX", - "profile_image_url": "/player-photos/1779036680390_fuv5hlty1h.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-ncg-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-917ea40e", - "wage": 80000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Bandits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "We Talent", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-polar-squad-esport", - "position": "Jungle", - "condition": 100, - "full_name": "MrLemon", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 67, - "macro_play": 65, - "consistency": 63, - "shotcalling": 70, - "teamfighting": 63, - "champion_pool": 65, - "mental_resilience": 67 - }, - "match_name": "Martin Eduardo Limon Hernandez", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1200000, - "birth_country": null, - "date_of_birth": "1998-08-23", - "potential_base": 70, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/63eb6919.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-efebd062", - "wage": 41000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Belgrano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "19esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Movistar Optix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-g3v-e-sports", - "position": "Mid", - "condition": 100, - "full_name": "Piqueos", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 75 - }, - "match_name": "Antony Gabriel Siapo Perez", - "loan_listed": false, - "morale_core": {}, - "nationality": "Peru", - "contract_end": "2026-12-20", - "market_value": 615000, - "birth_country": null, - "date_of_birth": "2003-10-13", - "potential_base": 83, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1778506612919_ytmnk9ztotl.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-a86ba05a", - "wage": 131000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Killer Whales Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-ncg-esports", - "position": "ADC", - "condition": 100, - "full_name": "Raysito", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 61, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Ramses López", - "loan_listed": false, - "morale_core": {}, - "nationality": "Mexico", - "contract_end": "2026-12-20", - "market_value": 1965000, - "birth_country": null, - "date_of_birth": "2004-01-01", - "potential_base": 79, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARAWAK ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 65, - "macro_play": 64, - "consistency": 66, - "shotcalling": 68, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 63 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 73, - "transfer_listed": false, - "id": "player-d45937f6", - "match_name": "Erick Hidalgo", - "full_name": "Erk", - "date_of_birth": null, - "nationality": "MX", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-ncg-esports", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Glitch Quantum Violet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragon Dynasty", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 59, - "macro_play": 56, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 57, - "champion_pool": 57, - "mental_resilience": 56 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 74, - "transfer_listed": false, - "id": "player-d6898b87", - "match_name": "Samuel Molina", - "full_name": "Naerbedo", - "date_of_birth": null, - "nationality": "CO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-ncg-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Atheris Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Atomic México", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Atomic México", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "ESTORM", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 76, - "mechanics": 75, - "discipline": 75, - "macro_play": 73, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 67, - "champion_pool": 78, - "mental_resilience": 73 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 82, - "transfer_listed": false, - "id": "player-e7bd3d92", - "match_name": "Ivan Garcia Rivera", - "full_name": "Skyy", - "date_of_birth": "2001-04-10", - "nationality": "MX", - "profile_image_url": "/player-photos/1779886953163_syj83zhce8l.png", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SDM Tigres", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "DCT eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "DCT eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARAWAK ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Mezexis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Janus Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Cream Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "OG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "LoL Academia", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 67, - "mechanics": 69, - "discipline": 68, - "macro_play": 69, - "consistency": 69, - "shotcalling": 68, - "teamfighting": 68, - "champion_pool": 67, - "mental_resilience": 68 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 75, - "transfer_listed": false, - "id": "player-e9bffe4a", - "match_name": "Steven Josue Araya Méndez", - "full_name": "Madblade", - "date_of_birth": "1998-05-13", - "nationality": "CR", - "profile_image_url": "/player-photos/1778526667483_2ct1wbyit8.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-sdm-tigres", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Sussy Six", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Whole Milk", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-lyon-academy", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "U4RIA Nerium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "The Wigglets", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Oklahoma Christian", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 62, - "mechanics": 61, - "discipline": 62, - "macro_play": 58, - "consistency": 58, - "shotcalling": 62, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 62 - }, - "loan_listed": false, - "potential_base": 75, - "transfer_listed": false, - "id": "player-ecc76b24", - "match_name": "Alex Jones", - "full_name": "AJOSU", - "date_of_birth": "1999-02-12", - "nationality": "US", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-lyon-academy", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82eedf0a", - "wage": 77000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Belgrano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "19esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Zwan Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-g3v-e-sports", - "position": "Top", - "condition": 100, - "full_name": "Brayaron", - "attributes": { - "laning": 70, - "mechanics": 60, - "discipline": 70, - "macro_play": 65, - "consistency": 69, - "shotcalling": 66, - "teamfighting": 58, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Brayan Erick Pereda Córdova", - "loan_listed": false, - "morale_core": {}, - "nationality": "Peru", - "contract_end": "2026-12-20", - "market_value": 1155000, - "birth_country": null, - "date_of_birth": "2001-09-25", - "potential_base": 72, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": "/player-photos/1778502279543_yc2pgb02sub.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "LDM Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Cream Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 75, - "mechanics": 73, - "discipline": 75, - "macro_play": 71, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 72, - "champion_pool": 77, - "mental_resilience": 76 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 82, - "transfer_listed": false, - "id": "player-ed3493c0", - "match_name": "Omar André Gavotto", - "full_name": "Gavotto", - "date_of_birth": "2026-03-15", - "nationality": "MX", - "profile_image_url": "/player-photos/1779622117222_8qdj9781dk4.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrn-fuego", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "AG Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 63, - "mechanics": 61, - "discipline": 63, - "macro_play": 58, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 62, - "mental_resilience": 56 - }, - "loan_listed": false, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 69, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-f0bf71b6", - "match_name": "Luchiano Henostroza Flores", - "full_name": "Luchiano", - "date_of_birth": "2007-12-13", - "nationality": "PE", - "profile_image_url": "/player-photos/1778686084091_civbcbqc0m.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrn-icon-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e0fa973a", - "wage": 122000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Only Panitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Red Eye Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Hispanos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Polaris Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Furious Argentina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Zwan Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-g3v-e-sports", - "position": "ADC", - "condition": 100, - "full_name": "Scenario", - "attributes": { - "laning": 72, - "mechanics": 69, - "discipline": 72, - "macro_play": 69, - "consistency": 75, - "shotcalling": 67, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 69 - }, - "match_name": "Edwin Tapia Vilca", - "loan_listed": false, - "morale_core": {}, - "nationality": "Peru", - "contract_end": "2026-12-20", - "market_value": 1830000, - "birth_country": null, - "date_of_birth": "2002-01-05", - "potential_base": 85, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778507138302_dk2mwlwa0mq.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-8b1a5028", - "wage": 68000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-icon-esports", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Trolls Inc Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Osaka", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DSC3V", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Janus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Janus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Descuydado Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Skull Cracker", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Skull Cracker", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Wygers Colombia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Ethernum Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "VAULT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Wild Jaguars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "LoL Academia", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-icon-esports", - "position": "Mid", - "condition": 100, - "full_name": "Shieldworm", - "attributes": { - "laning": 60, - "mechanics": 59, - "discipline": 68, - "macro_play": 59, - "consistency": 61, - "shotcalling": 67, - "teamfighting": 60, - "champion_pool": 67, - "mental_resilience": 64 - }, - "match_name": "Daniel Fernando Garcia Vera", - "loan_listed": false, - "morale_core": {}, - "nationality": "Colombia", - "contract_end": "2026-12-20", - "market_value": 1020000, - "birth_country": null, - "date_of_birth": "2000-07-29", - "potential_base": 70, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": "/player-photos/1779037152038_wawcngjdcwh.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-0e4ae1fb", - "wage": 113000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Pirates IDV", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Vandals Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ramo Awake Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zenith Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrn-g3v-e-sports", - "position": "Jungle", - "condition": 100, - "full_name": "Gato", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 67, - "macro_play": 64, - "consistency": 67, - "shotcalling": 72, - "teamfighting": 60, - "champion_pool": 70, - "mental_resilience": 67 - }, - "match_name": "Sergio Steven Bautista Grajales", - "loan_listed": false, - "morale_core": {}, - "nationality": "Colombia", - "contract_end": "2026-12-20", - "market_value": 1695000, - "birth_country": null, - "date_of_birth": "2003-07-10", - "potential_base": 73, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/37420bb8.webp", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Atheris Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Atheris Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Feint Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 61, - "mechanics": 63, - "discipline": 65, - "macro_play": 63, - "consistency": 67, - "shotcalling": 68, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 70, - "transfer_listed": false, - "id": "player-fd18d533", - "match_name": "Gabriel Grimaldi Moreau", - "full_name": "Crecre", - "date_of_birth": "1998-11-25", - "nationality": "PE", - "profile_image_url": "/player-photos/1778507641248_y7dwjrr20kk.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrn-g3v-e-sports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/lrs_players.json b/data/erls/players/lrs_players.json deleted file mode 100644 index 80082df43..000000000 --- a/data/erls/players/lrs_players.json +++ /dev/null @@ -1,8592 +0,0 @@ -{ - "name": "LRS Players", - "description": "LRS - 2026 Season", - "players": [ - { - "id": "player-039330d2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "condition": 100, - "full_name": "Iso", - "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 55, - "macro_play": 56, - "consistency": 57, - "shotcalling": 54, - "teamfighting": 58, - "champion_pool": 53, - "mental_resilience": 55 - }, - "match_name": "Matias Dario Isolani", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-03-15", - "nationality": "AR", - "profile_image_url": "/player-photos/1779873632505_Iso.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-063bc234", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "CHK", - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 57, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 55, - "mental_resilience": 56 - }, - "match_name": "Guillermo Axel Miles", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 67, - "transfer_listed": false, - "date_of_birth": "2004-06-21", - "nationality": "AR", - "profile_image_url": "/player-photos/1779832955464_CHK__Guillermo_Miles_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-maze-gaming", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0aee4cee", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "True Neutral", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "condition": 100, - "full_name": "Chapters", - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 56, - "macro_play": 59, - "consistency": 59, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 56, - "mental_resilience": 56 - }, - "match_name": "Leandro Gabriel Paiano Krenz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-01-17", - "nationality": "AR", - "profile_image_url": "/player-photos/1779832871484_Chapters.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0e47e371", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrs-maze-gaming", - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-xten-esports", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Nocturns Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Andes Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Valorous", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "No Tenemos Nada", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Owl E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Owl E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Novus Tempus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Serena Five", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Gastruks", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 58, - "macro_play": 63, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Gastón Núñez", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 68, - "transfer_listed": false, - "date_of_birth": "1999-11-25", - "nationality": "AR", - "profile_image_url": "/player-photos/1779747165224_livttmm4rn.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-golden-lions", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c8c9a80", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Coliseo Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CASLA Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Cursed Flames", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "condition": 100, - "full_name": "KinGi", - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 66, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 66 - }, - "match_name": "Tomás Ignacio Bordón", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-12-05", - "nationality": "AR", - "profile_image_url": "/player-photos/1779883942700_KinGi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-22ac81b4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Coliseo Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bencheados", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Abstract Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "condition": 100, - "full_name": "Funky", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Aaron Sterzer", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-01-03", - "nationality": "AR", - "profile_image_url": "/player-photos/1779874954488_Funky.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-25aeb8b9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "WAP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "ZenKai Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "condition": 100, - "full_name": "Venhamin", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 65, - "macro_play": 62, - "consistency": 62, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 62, - "mental_resilience": 64 - }, - "match_name": "Benjamin Ignacio Ramirez Vera", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-17", - "nationality": "CL", - "profile_image_url": "/player-photos/1779832563482_Venhamin.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3004a953", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "VESTIGE ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "PRIMATE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Uxie", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 62, - "consistency": 59, - "shotcalling": 63, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Laureano Damian Frias", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 67, - "transfer_listed": false, - "date_of_birth": "2002-02-14", - "nationality": "AR", - "profile_image_url": "/player-photos/1779698878228_hpnx9m3engn.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-9z-globant", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Sekai Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 56, - "macro_play": 54, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 54, - "mental_resilience": 52 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 65, - "transfer_listed": false, - "id": "player-34af4892", - "match_name": "Abel Paucar", - "full_name": "Piwo", - "date_of_birth": null, - "nationality": "PE", - "profile_image_url": "/player-photos/1779885289893_Piwo.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrs-tu-pap-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-364f0667", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Fortu", - "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 53, - "macro_play": 55, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 54 - }, - "match_name": "Franco Agusto Fortunato", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 64, - "transfer_listed": false, - "date_of_birth": "2002-12-17", - "nationality": "AR", - "profile_image_url": "/player-photos/1779832025091_Fortu.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-malvinas-gaming", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-39f7c06f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Intel New Indians", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Savage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KRÜ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Abstract Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "condition": 100, - "full_name": "Lac", - "attributes": { - "laning": 57, - "mechanics": 60, - "discipline": 58, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 55, - "mental_resilience": 59 - }, - "match_name": "Elías Nahuel Gonzáles Castelli", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 59, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-04-21", - "nationality": "AR", - "profile_image_url": "/player-photos/1779831912032_Lac.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3c95214c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Rise Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lla-l-team-aze", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lla-l-team-aze", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-movistar-r7", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lla-l-movistar-r7", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Prodigy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "ProGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Infamous Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Infamous Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Born to Kill", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming Red", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "condition": 100, - "full_name": "Aloned", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 62, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 63 - }, - "match_name": "Tomás Antonio Díaz Valiente", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-11-17", - "nationality": "CL", - "profile_image_url": "/player-photos/1779698421061_dlhj872i16.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Feint Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Wygers Argentina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cienciano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Deliverance Peru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cienciano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Diamond Doves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "WAP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Hawks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Belgrano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Lynx E-Sports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 52, - "mechanics": 53, - "discipline": 56, - "macro_play": 54, - "consistency": 53, - "shotcalling": 55, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 51 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 62, - "transfer_listed": false, - "id": "player-3fb7c577", - "match_name": "Franco José Cañete Silva", - "full_name": "Kurckoo", - "date_of_birth": "2001-03-17", - "nationality": "", - "profile_image_url": "/player-photos/1779884113143_Kurckoo.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrs-the-new-kings", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Seven Dark Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 57, - "macro_play": 56, - "consistency": 57, - "shotcalling": 54, - "teamfighting": 57, - "champion_pool": 57, - "mental_resilience": 53 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 67, - "transfer_listed": false, - "id": "player-448bbe58", - "match_name": "Diego Soto Hidalgo", - "full_name": "Ronin", - "date_of_birth": null, - "nationality": "CL", - "profile_image_url": "/player-photos/1779874007637_Ronin__Diego_Soto_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrs-seven-dark", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-472111f6", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ODIN Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cruzados Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Rise", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "POG Team", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Pyl", - "attributes": { - "laning": 53, - "mechanics": 54, - "discipline": 55, - "macro_play": 55, - "consistency": 55, - "shotcalling": 52, - "teamfighting": 53, - "champion_pool": 52, - "mental_resilience": 55 - }, - "match_name": "Bryan Ignacio Torres Sasso", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2000-09-15", - "nationality": "CL", - "profile_image_url": "/player-photos/1779873820889_Pyl__Bryan_Torres_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-seven-dark", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4bb1af95", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Dash9 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Play Again", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Dash9 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Gaming Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lla-l-movistar-r7", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-movistar-r7", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "EBRO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zylant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "condition": 100, - "full_name": "Nobody", - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 62, - "macro_play": 66, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 63, - "champion_pool": 63, - "mental_resilience": 64 - }, - "match_name": "Nicolás Iván Ale", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-01-23", - "nationality": "AR", - "profile_image_url": "/player-photos/1779831739771_Nobody__Nicol_s_Ale_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-57ce3cc5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Da Dancing Demons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "1 MONO", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "condition": 100, - "full_name": "Galileo", - "attributes": { - "laning": 56, - "mechanics": 54, - "discipline": 56, - "macro_play": 54, - "consistency": 55, - "shotcalling": 52, - "teamfighting": 54, - "champion_pool": 53, - "mental_resilience": 56 - }, - "match_name": "Gael Ronald Torres Huaman", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 62, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-26", - "nationality": "PE", - "profile_image_url": "/player-photos/1779885029454_Galileo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-59e7835d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Hafnet eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Hafnet eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Just Toys Havoks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming Red", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Just Toys Havoks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lla-l-movistar-r7", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "condition": 100, - "full_name": "Warangelus", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 68 - }, - "match_name": "Fabián Esteban Llanos Bernal", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-04-09", - "nationality": "CL", - "profile_image_url": "/player-photos/1779884416535_Warangelus.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Red Eye Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "BGG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "LDM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Polaris Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Liga del Mal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lla-l-xten-esports", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-xten-esports", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Low Pressur3", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 52, - "mechanics": 50, - "discipline": 55, - "macro_play": 59, - "consistency": 54, - "shotcalling": 59, - "teamfighting": 54, - "champion_pool": 53, - "mental_resilience": 53 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 60, - "transfer_listed": false, - "id": "player-5ea950a2", - "match_name": "Luis Alejandro Meza Panes", - "full_name": "Day Beats", - "date_of_birth": null, - "nationality": "CL", - "profile_image_url": "/player-photos/1779747440044_ttsjt6dk5ie.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrs-golden-lions", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-64f74613", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Antares Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Diamond Doves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Genbu Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Red Eye Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Team Hell Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "condition": 100, - "full_name": "Pet", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Leonardo Roberto Silva Seminario", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 73, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-14", - "nationality": "PE", - "profile_image_url": "/player-photos/1779884906941_Pet.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-699bedbb", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Deliverance Peru", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Barcelona BG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Neon Vibes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "KTANA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "condition": 100, - "full_name": "Gus", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Gustavo Jiménez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-11-14", - "nationality": "PE", - "profile_image_url": "/player-photos/1779885455135_Gus.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fantasy Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 53, - "mechanics": 56, - "discipline": 54, - "macro_play": 50, - "consistency": 53, - "shotcalling": 55, - "teamfighting": 52, - "champion_pool": 53, - "mental_resilience": 50 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 61, - "transfer_listed": false, - "id": "player-6aba7266", - "match_name": "Guido Merad", - "full_name": "Guidoxi", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": "/player-photos/1779885733143_Guidoxi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrs-tu-pap-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6ce2157b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cienciano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Incubus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports LATAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports LATAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "condition": 100, - "full_name": "Dinastik", - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 63, - "macro_play": 63, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Jaime Ramirez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-10-09", - "nationality": "CL", - "profile_image_url": "/player-photos/1779833426795_Dinastik.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6fc2ebc1", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Maximo", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Maximo", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7b7cb20f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "⁠Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "KRÜ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "lla-l-isurus", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "lla-l-isurus", - "team_name": "Isurus", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Coscu", - "attributes": { - "laning": 51, - "mechanics": 50, - "discipline": 59, - "macro_play": 50, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 50, - "champion_pool": 52, - "mental_resilience": 55 - }, - "match_name": "Martin Perez Disalvo", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 56, - "transfer_listed": false, - "date_of_birth": "1991-08-04", - "nationality": "AR", - "profile_image_url": "/player-photos/1779699129178_peskwfcdojp.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-9z-globant", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81e0184a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-maze-gaming", - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrs-maze-gaming", - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Stone Movistar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Stone Movistar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Stone Movistar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "LDM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Liga del Mal", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Humanoids5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Humanoids5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "FroztHounds", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "condition": 100, - "full_name": "Wamu", - "attributes": { - "laning": 62, - "mechanics": 66, - "discipline": 62, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 64 - }, - "match_name": "Nicolas Osvaldo Garrido Romero", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-03-01", - "nationality": "CL", - "profile_image_url": "/player-photos/1779746037064_eer17q46ovo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Nocturns Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Mighty Shadow", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 59, - "mechanics": 57, - "discipline": 63, - "macro_play": 64, - "consistency": 63, - "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 61 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 67, - "transfer_listed": false, - "id": "player-83b7fd2b", - "match_name": "Diego Angel Placencia Mora", - "full_name": "Shu Hari", - "date_of_birth": "2001-02-03", - "nationality": "CL", - "profile_image_url": "/player-photos/1779884519996_Shu_Hari.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-the-new-kings", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87a26a18", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lla-l-globant-emerald", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-globant-emerald", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Humanoids5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Humanoids5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-xten-esports", - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-kaos-latin-gamers", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lla-l-kaos-latin-gamers", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "lla-l-kaos-latin-gamers", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Bencheados", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Bencheados", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Coliseo Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": "", - "team_name": "Coliseo Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": "", - "team_name": "Coliseo Dragons", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "condition": 100, - "full_name": "Fix", - "attributes": { - "laning": 50, - "mechanics": 53, - "discipline": 54, - "macro_play": 48, - "consistency": 48, - "shotcalling": 52, - "teamfighting": 53, - "champion_pool": 53, - "mental_resilience": 53 - }, - "match_name": "Nicolás Raúl Sayago", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 55, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-06-02", - "nationality": "AR", - "profile_image_url": "/player-photos/1779698616244_9siq319arwl.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8d4d9b14", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Unstoppable Skill", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "condition": 100, - "full_name": "Nvillada", - "attributes": { - "laning": 63, - "mechanics": 66, - "discipline": 62, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 64 - }, - "match_name": "Julian Ignacio Villada", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-11-11", - "nationality": "AR", - "profile_image_url": "/player-photos/1779822866150_Nvillada.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lla-l-furious-gaming", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lla-l-all-knights", - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "⁠All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Bring It On", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Feint Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming Red", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 57, - "mechanics": 58, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 64, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 65 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 69, - "transfer_listed": false, - "id": "player-92beb5b0", - "match_name": "Manuel Scala", - "full_name": "Pancake", - "date_of_birth": "2000-10-18", - "nationality": "AR", - "profile_image_url": "/player-photos/1779699386143_kek9idgsy0k.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "lrs-9z-globant", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-996e3afc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-ncg-esports", - "team_name": "NCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Kai Cenat", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Neon Vibes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrn-lyon-academy", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrn-lyon-academy", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-20461098", - "team_name": "Fluxo W7M", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Dark Project", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Descuydado Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "G-Pride", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Polaris Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Low Pressur3", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Instinct Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "condition": 100, - "full_name": "Ganks", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 62, - "macro_play": 65, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 64, - "mental_resilience": 64 - }, - "match_name": "Franco Sánchez Juaregui", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-03-12", - "nationality": "PE", - "profile_image_url": "/player-photos/1779746237640_shb2g9uh7wd.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9b2246d8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Intel New Indians", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Intel New Indians", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Maycam Evolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "condition": 100, - "full_name": "Chordy", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Rodrigo Martín Cerrudo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-05-10", - "nationality": "AR", - "profile_image_url": "/player-photos/1779827210003_Chordy.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9b95e2ec", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports LATAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports LATAM", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "condition": 100, - "full_name": "AlluK", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 58, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Tomas Cruz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-14", - "nationality": "AR", - "profile_image_url": "/player-photos/1779822975915_AlluK.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9d05fb48", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Leviatan Chile", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Azules Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Rise Gaming Chile", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "condition": 100, - "full_name": "SkyMind", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 64, - "macro_play": 65, - "consistency": 64, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "match_name": "Cesar Guillermo Andía Herrera", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-17", - "nationality": "CL", - "profile_image_url": "/player-photos/1779884314604_SkyMind.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9e4db75a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wolf Club Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "condition": 100, - "full_name": "Hitsu", - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 60, - "macro_play": 62, - "consistency": 63, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Benjamin Andrés Avila Cárcamo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2024-11-16", - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-11", - "nationality": "CL", - "profile_image_url": "/player-photos/1779832784740_Hitsu__Benjamin_Avila_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a03282a0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bencheados", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Movistar Optix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Maze Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "condition": 100, - "full_name": "Neo", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 62, - "mental_resilience": 63 - }, - "match_name": "Mario Jesús Fernandez Garrido", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-12-06", - "nationality": "CL", - "profile_image_url": "/player-photos/1779832679457_Neo__Mario_Fernandez_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a0616e7b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Belgrano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Belgrano Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "condition": 100, - "full_name": "Martote", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Martín Rafael Añaña Gomez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-07-16", - "nationality": "UY", - "profile_image_url": "/player-photos/1779827214036_Martote.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LOTUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LØS Trainee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Lynx", - "appearances": 0 - } - ], - "attributes": { - "laning": 54, - "mechanics": 56, - "discipline": 55, - "macro_play": 53, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 54, - "champion_pool": 53, - "mental_resilience": 51 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 67, - "transfer_listed": false, - "id": "player-a2a3e5a0", - "match_name": "Leandro Montañez", - "full_name": "Respeta", - "date_of_birth": "2004-09-02", - "nationality": "UY", - "profile_image_url": "/player-photos/1779827228755_Respeta.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a86b160e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Feint Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "condition": 100, - "full_name": "Apoka", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 58, - "macro_play": 60, - "consistency": 62, - "shotcalling": 62, - "teamfighting": 60, - "champion_pool": 62, - "mental_resilience": 60 - }, - "match_name": "Mario Tomas Pessoa Granzella", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-11-15", - "nationality": "AR", - "profile_image_url": "/player-photos/1779698270682_h77l3rk79x.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a9937a5c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Thunder Awaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rainbow7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rainbow7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Ramo Awake Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Saprissa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "KTANA", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "condition": 100, - "full_name": "Renyu", - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 56, - "macro_play": 56, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 56, - "champion_pool": 53, - "mental_resilience": 55 - }, - "match_name": "Renato Josue Gallegos Muñoz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 60, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-12-21", - "nationality": "PE", - "profile_image_url": "/player-photos/1779885558052_Renyu.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 60, - "mechanics": 59, - "discipline": 67, - "macro_play": 64, - "consistency": 67, - "shotcalling": 63, - "teamfighting": 63, - "champion_pool": 62, - "mental_resilience": 68 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 88, - "transfer_listed": false, - "id": "player-ad5918b1", - "match_name": "Betsabe Coronel", - "full_name": "Bet Miau", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779832222180_kbyqk1wslzo.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrs-malvinas-gaming", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b6696d36", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vandals Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vandals Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Iska", - "attributes": { - "laning": 55, - "mechanics": 55, - "discipline": 56, - "macro_play": 55, - "consistency": 55, - "shotcalling": 52, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 55 - }, - "match_name": "Sadhu Isaac Cavero Egusquiza Huilca", - "loan_listed": false, - "contract_end": "2026-12-16", - "potential_base": 64, - "transfer_listed": false, - "date_of_birth": "1999-12-01", - "nationality": "PE", - "profile_image_url": "/player-photos/1779885636299_Iska.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-tu-pap-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bd6a1e79", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Kai Cenat", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrs-seven-dark", - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Senshi eSports LATAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Spectacled Bears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Red Eye Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "BGG", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "condition": 100, - "full_name": "Saifer", - "attributes": { - "laning": 62, - "mechanics": 65, - "discipline": 58, - "macro_play": 65, - "consistency": 63, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 62, - "mental_resilience": 62 - }, - "match_name": "Gaston Pedalino Vera", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-07-27", - "nationality": "AR", - "profile_image_url": "/player-photos/1779746534861_lj5g5sazuq7.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c0417640", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Newell's Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "condition": 100, - "full_name": "Ianshaka", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Ian Pohl", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-10-22", - "nationality": "AR", - "profile_image_url": "/player-photos/1779827220244_Ianshaka.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 52, - "mechanics": 55, - "discipline": 53, - "macro_play": 51, - "consistency": 50, - "shotcalling": 52, - "teamfighting": 52, - "champion_pool": 55, - "mental_resilience": 50 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 70, - "transfer_listed": false, - "id": "player-c8402dba", - "match_name": "Matias Barraza", - "full_name": "larvinho", - "date_of_birth": null, - "nationality": "CL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "lrs-golden-lions", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c967059f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cruzados Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "POG Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "condition": 100, - "full_name": "Coow", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 65, - "macro_play": 62, - "consistency": 63, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 64 - }, - "match_name": "Martin Alonso Contreras Aguilar", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-07-17", - "nationality": "CL", - "profile_image_url": "/player-photos/1779872481399_Coow.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb8f7341", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-9z-globant", - "team_name": "9z Globant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Last Dance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lla-l-globant-emerald", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lla-l-globant-emerald", - "team_name": "Globant Emerald", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lla-l-kaos-latin-gamers", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lla-l-kaos-latin-gamers", - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Last Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "PL Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "condition": 100, - "full_name": "Nate", - "attributes": { - "laning": 62, - "mechanics": 66, - "discipline": 62, - "macro_play": 63, - "consistency": 64, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Damián Rea", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-12-19", - "nationality": "AR", - "profile_image_url": "/player-photos/1779698111107_vof9dnc7d2.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cec97cd4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cruzados Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Movistar Optix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Rise", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "POG Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "condition": 100, - "full_name": "Neadz", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 56, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 56, - "mental_resilience": 58 - }, - "match_name": "Esteban Fernando San Martín Durán", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-05-28", - "nationality": "CL", - "profile_image_url": "/player-photos/1779873440680_Neadz.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Azules Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Argentina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Chile", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Azules Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EBRO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Stone Movistar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 55, - "macro_play": 59, - "consistency": 55, - "shotcalling": 58, - "teamfighting": 56, - "champion_pool": 56, - "mental_resilience": 53 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 65, - "transfer_listed": false, - "id": "player-d5f92f17", - "match_name": "Alejo Valentin Miguel Rivero", - "full_name": "Trashy", - "date_of_birth": "2002-05-15", - "nationality": "AR", - "profile_image_url": "/player-photos/1779827233835_Trashy__Alejo_Rivero_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da267bc9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Lemondogs Argentina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Hafnet eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Kaos Latin Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Rainbow7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rainbow7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rainbow7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geração Estrutura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "condition": 100, - "full_name": "Acce", - "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 64 - }, - "match_name": "Emmanuel Juárez", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 72, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1995-10-06", - "nationality": "AR", - "profile_image_url": "/player-photos/1779874748128_Acce.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Supay Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aetherial Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Golden Lions Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Eternal Flame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternal Flame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Seven Dark Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 58, - "mechanics": 55, - "discipline": 57, - "macro_play": 54, - "consistency": 56, - "shotcalling": 51, - "teamfighting": 56, - "champion_pool": 53, - "mental_resilience": 52 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 70, - "transfer_listed": false, - "id": "player-dfa7b561", - "match_name": "Maximo Ian Choi (최대한)", - "full_name": "DaeHan", - "date_of_birth": "2005-04-18", - "nationality": "AR", - "profile_image_url": "/player-photos/1779874140642_DaeHan.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "lrs-seven-dark", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dff39ab1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Argentina", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "9z Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Boca Juniors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "condition": 100, - "full_name": "DiDi", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Marianno Gastón Masolini", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-05-10", - "nationality": "AR", - "profile_image_url": "/player-photos/1779827218688_DiDi__Mariano_Masolini_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ea7a190e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lrs-golden-lions", - "team_name": "Golden Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Savage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Cienciano Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Cienciano Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "condition": 100, - "full_name": "Strensh", - "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 52, - "macro_play": 56, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 54 - }, - "match_name": "Cristopher Gustavo Gonzalez Plaza", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 59, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-10-01", - "nationality": "CL", - "profile_image_url": "/player-photos/1779746905119_epwokfzndbo.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eb8eb129", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Valorous", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Azules Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dark Horse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LDM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Movistar Optix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Newstar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cruzados Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cruzados Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WAP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Azules Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eternals Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "POG Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Wild Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "condition": 100, - "full_name": "GianKios", - "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 65, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 65 - }, - "match_name": "Gianfranco Casanova Cortes", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-02-08", - "nationality": "CL", - "profile_image_url": "/player-photos/1779872205445_GianKios.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-efe25219", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Furious Chile", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Furious Chile", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "XTEN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lechuga Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Volticons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "The Hamsters", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Camilo", - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 56, - "macro_play": 56, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 56, - "champion_pool": 53, - "mental_resilience": 56 - }, - "match_name": "Camilo Nicolau Blanchet", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 62, - "transfer_listed": false, - "date_of_birth": "2002-05-27", - "nationality": "UY", - "profile_image_url": "/player-photos/1779827224609_Camilo.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "lrs-volticons", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/nacl_players.json b/data/erls/players/nacl_players.json deleted file mode 100644 index 8c7146d4a..000000000 --- a/data/erls/players/nacl_players.json +++ /dev/null @@ -1,7032 +0,0 @@ -{ - "name": "NACL Players", - "description": "NACL - 2026 Season", - "players": [ - { - "id": "player-0b449f07", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Spawn", - "attributes": { - "laning": 74, - "mechanics": 68, - "discipline": 68, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 68 - }, - "match_name": "Trevor Kerr-Taylor", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1998-05-18", - "nationality": "CA", - "profile_image_url": "/player-photos/1779732635664_c38ojq2mban.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-99f3b280", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0c6004b3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BEAGLE BROTHERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Sea Dogs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Nameless", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Cupid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Hub", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Max Munday", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2003-08-05", - "nationality": "CA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-10540476", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0d623441", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Cody Sun", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 69 - }, - "match_name": "Liyu Sun", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1997-04-24", - "nationality": "CA", - "profile_image_url": "/player-photos/1779737301330_zqu0docvtjf.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "WC Developmental", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Here For T-Shirt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Aces", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Miracle", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WANG DYNASTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Chaotic Solar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Clown Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WANG TOWN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Wang's Revenge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-10bfcfdd", - "match_name": "Donnie Stauffer", - "full_name": "Rapid", - "date_of_birth": "1998-09-21", - "nationality": "", - "profile_image_url": "/player-photos/1779824884330_Rapid__Donnie_Stauffer_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-11220bf4", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Keel", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 72, - "macro_play": 66, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Ryan Keel", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2001-05-29", - "nationality": "US", - "profile_image_url": "/player-photos/1779776119288_4chg3uif51c.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-112c511f", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dardoch", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 70, - "macro_play": 72, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Joshua Hartnett", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1998-04-10", - "nationality": "US", - "profile_image_url": "/player-photos/1779737339761_0ezuyn21puk.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1256560d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dawn Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "SN Sentinels", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "First Blood Crusade", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AOE Dinka LFGF", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AOE Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Glorp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ember Foxes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DarkZero Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Zyko", - "attributes": { - "laning": 73, - "mechanics": 67, - "discipline": 73, - "macro_play": 69, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 67, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Ryan Jung", - "date_of_birth": "2000-06-02", - "nationality": "US", - "profile_image_url": "/player-photos/1779824848789_Zyko.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-13e6c8c4", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Scouting4ProScene", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vexo eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Keep Pathing Bot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LiT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Clown Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ReluminateGG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "U4RIA Nerium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WANG TOWN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Zach", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Zachary Papanicolas", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2004-02-12", - "nationality": "US", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-14cf5e0e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ANEW Dawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Charlotte Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Louisiana State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Front", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AOE Not Zoos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Radiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cincinnati Fear", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Immortals AOE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "IMT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Taco Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cincinnati Fear", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Respawned Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Shochi", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Chase Capello", - "date_of_birth": "2002-01-25", - "nationality": "US", - "profile_image_url": "/player-photos/1779824834908_Shochi.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-18ecef90", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Converse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zenigma Eclipse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Converse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "University of NA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zenigma Eclipse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Glorp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Disguised", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Disguised", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "ScaryJerry", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 74, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 74 - }, - "match_name": "Jeremiah Leathe", - "date_of_birth": "2002-03-16", - "nationality": "AR", - "profile_image_url": "/player-photos/1779824851003_ScaryJerry.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-38fb3072", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Futures", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Glorp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zen Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Whole Milk", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NRG", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "PhyMini", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Kolby J. Ashby", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2006-04-06", - "nationality": "US", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d0db88b", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Stray", - "attributes": { - "laning": 68, - "mechanics": 71, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 66, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Roberto Guallichico", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1999-10-14", - "nationality": "EC", - "profile_image_url": "/player-photos/1779776472171_windsamag2.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d50fcaf", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Griffin", - "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Raymond Griffin", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1999-09-11", - "nationality": "US", - "profile_image_url": "/player-photos/1779776197848_az1wi4swtxa.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3e2841d9", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TSM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Immortals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TSM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Immortals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Immortals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tactical", - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 70, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Edward Ra", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-08-18", - "nationality": "US", - "profile_image_url": "/player-photos/1779777811398_vte9006c64f.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-31b92c52", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Chilly Chipmunks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Chilly Chipmunks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Akuma Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "K9", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pee N W's", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Krusty Crew", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Novasphere Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-42d63c68", - "match_name": "Marc Jackson Jr.", - "full_name": "Beep", - "date_of_birth": "2005-07-01", - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-451540eb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Southern California", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Douyin Tony Top", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gödel Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Dev.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Tony Top", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Tiktok Tony Top", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Southern California", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Fish Taco", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Southern California", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Whole Milk", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Southern California", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Levitate", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Ha-Lim \"Joseph\" Hong", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": "/player-photos/1779824839047_Levitate.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ShadowZ Fan Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "5 Seasons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dark Matter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ReluminateGG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "U4RIA Nerium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DarkZero Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gravity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Vancouver Impact", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vancouver Impact", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Whole Milk", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-46007dbb", - "match_name": "Kaan Tomak", - "full_name": "Shimmer", - "date_of_birth": "2002-04-13", - "nationality": "", - "profile_image_url": "/player-photos/1779824831252_Shimmer__Kaan_Tomak_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4b331429", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Frank Fang Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Immortals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "IMT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "100 Next", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Immortals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "100 Next", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dignitas Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DIG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dignitas Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shopify Rebellion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TSM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Shopify Rebellion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Insanity", - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 71, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "David Challe", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "1999-09-22", - "nationality": "US", - "profile_image_url": "/player-photos/1779777818523_4ab9zs7zzmv.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-31b92c52", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5018a096", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Sniper", - "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Rayan Shoura", - "loan_listed": false, - "contract_end": "2006-11-19", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": "/player-photos/1779777239619_rpupvhafexk.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-31b92c52", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-53678b03", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Radiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Fish Taco", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cincinnati Fear", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Crimson", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 71, - "macro_play": 72, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Bilal Shoura", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2006-11-10", - "nationality": "CA", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "100 Next", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "TSM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "100 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "100 Next", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "St. Thomas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY FAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-5b187146", - "match_name": "Rico Chen", - "full_name": "Sword", - "date_of_birth": "2002-09-18", - "nationality": "", - "profile_image_url": "/player-photos/1779824852139_Sword__Rico_Chen_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5bd2e851", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Spirituals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DarkZero Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zeu5 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Keii", - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, - "consistency": 73, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 74 - }, - "match_name": "Víctor Leandro Durango García", - "date_of_birth": "2002-06-26", - "nationality": "CO", - "profile_image_url": "/player-photos/1779824822249_Keii.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6217144c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Oyun Hizmetleri", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Turquality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Macro Maniacs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dusty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Singularity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team AURORA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Weber State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Weber State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Only35", - "attributes": { - "laning": 71, - "mechanics": 68, - "discipline": 70, - "macro_play": 68, - "consistency": 72, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Mehmet Emin Aydın", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-04-30", - "nationality": "TR", - "profile_image_url": "/player-photos/1779824876734_Only35.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-62333fb6", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Fiji", - "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 68 - }, - "match_name": "James Thomas Carlisle", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2001-07-30", - "nationality": "US", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6803e307", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ariana", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 70, - "macro_play": 64, - "consistency": 65, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Jakub Śliwonik", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2003-12-08", - "nationality": "PL", - "profile_image_url": "/player-photos/1779733434840_34vq9xfplhl.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-99f3b280", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-688e7497", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bradley", - "attributes": { - "laning": 74, - "mechanics": 69, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Bradley Benneyworth", - "loan_listed": false, - "contract_end": "2001-05-03", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "US", - "profile_image_url": "/player-photos/1779776145682_l097v72bn6f.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-ba8042f7", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6c3a0a2b", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bethany Lutheran", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DarkZero Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Yuuji", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Ganbat Ulziidelger", - "date_of_birth": "2002-11-13", - "nationality": "MN", - "profile_image_url": "/player-photos/1779824835452_Yuuji.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-72068cec", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Munchy", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 74, - "macro_play": 68, - "consistency": 68, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Janan Chen", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2004-10-08", - "nationality": "CA", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-99f3b280", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-77039b65", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Samikin", - "attributes": { - "laning": 70, - "mechanics": 64, - "discipline": 68, - "macro_play": 69, - "consistency": 67, - "shotcalling": 66, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 67 - }, - "match_name": "Samrith Loeung", - "loan_listed": false, - "contract_end": "", - "transfer_listed": false, - "date_of_birth": "2003-10-14", - "nationality": "KH", - "profile_image_url": "/player-photos/1779732672790_msx62ubvx8r.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-99f3b280", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-77b3e7f6", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Rovex", - "attributes": { - "laning": 69, - "mechanics": 68, - "discipline": 72, - "macro_play": 68, - "consistency": 68, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "David Sin-Keo", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2007-01-01", - "nationality": "CA", - "profile_image_url": "/player-photos/1779735480359_sh5dz8zy3mt.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-99f3b280", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7b2bff6a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rex Regalis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mercenaries", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Pending", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "UC Irvine", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zenigma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Peach Cats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TL Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Straw Hat Crew", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TL Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Galaxy Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zenshi Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Zenshi Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kim Down", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 66, - "teamfighting": 68, - "champion_pool": 68, - "mental_resilience": 68 - }, - "match_name": "Ethan Song", - "loan_listed": false, - "potential_base": 75, - "transfer_listed": false, - "date_of_birth": "1999-12-19", - "nationality": "KR", - "profile_image_url": "/player-photos/1779824871381_Kim_Down.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-843f2f97", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AOE Soupy Time", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Des Moines DMG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Single Target Healing", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Abandoned Kittens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Baguette", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lojaz", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 73, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Ben Okun", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-10-04", - "nationality": "US", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-10540476", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-86fca7ec", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Array", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 72, - "macro_play": 69, - "consistency": 69, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Jackson Moldenhauer", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-11-28", - "nationality": "US", - "profile_image_url": "/player-photos/1779776039910_7olo4ki9qdh.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9206cedf", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dare White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Scouting4ProScene", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fugitive Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Chaotic Fusion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gödel Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Dev.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "The Northern Front", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Black Rock Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Baguette", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Apex MI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dec0y", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 74, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Noah D'Addario", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-04-27", - "nationality": "CA", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-10540476", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-999f2511", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cosmic Wolf", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Middlesticks", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Dev.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Fish Taco", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tempest Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Milk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NRG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Horder", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Chris Feng", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": "/player-photos/1779824828744_Horder.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9ded71d4", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance Baguette", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PepeTinkyWinky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "The Nameless", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Cupid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Cupid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Aadam", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Aadam Durgahed", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-10-28", - "nationality": "CA", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-10540476", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a331c296", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "EG Prodigies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Zenith Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EG Prodigies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "C9 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "EG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "C9 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "C9 Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Disguised", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shopify Rebellion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Shopify Rebellion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Luminosity Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tomio", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Phanlith Chan", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2003-06-15", - "nationality": "CA", - "profile_image_url": "/player-photos/1779777823620_1gii2j9jolv.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-31b92c52", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a526b14b", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Tempest Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pulse Star", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Mobility", - "attributes": { - "laning": 70, - "mechanics": 64, - "discipline": 74, - "macro_play": 71, - "consistency": 67, - "shotcalling": 71, - "teamfighting": 65, - "champion_pool": 71, - "mental_resilience": 69 - }, - "match_name": "David Rigley", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": "/player-photos/1779824859839_Mobility.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "To The Arena", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cosa Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Next Level Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ShaBoingBoing", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Novasphere Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-ac940528", - "match_name": "Samuel Henkin", - "full_name": "Souldier", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bca52c30", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bounty", - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 70, - "macro_play": 70, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Gabriel Vieira Donner", - "loan_listed": false, - "contract_end": "2003-02-04", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": "/player-photos/1779777314616_to5sjp66nmq.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-31b92c52", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "vVv Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "COGnitive Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Robert Morris", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "vVv Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "vVv Gaming White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Also Known As", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Robert Morris", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "TL Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Also Known As", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Big Gods Jackals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Big Gods Jackals", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "British Columbia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Wind and Rain NA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "MLGB E-SPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "C9 Amateur", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Mirage Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "C9 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "C9 Amateur", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "C9 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cloud9", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cloud9", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Coachify", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Respawned Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "id": "player-bf4007f8", - "match_name": "Zixing Jie", - "full_name": "Tails", - "date_of_birth": "1994-10-02", - "nationality": "", - "profile_image_url": "/player-photos/1779824889332_Tails.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c4086fe1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "cowana Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NVision Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ahg Gentlemen's Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "mYinsanity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GGEsports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Black Rock Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Futures", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rock Bottom", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Aporia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Illinois State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Blue Otter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Illinois State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Music", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Sean Wishko", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2000-02-03", - "nationality": "IL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c5ca7ff6", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AOE Will's Kittens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Wildcard Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cincinnati Fear", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Taco Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Fish Taco", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gödel Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ottawa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Komodo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pulse Gooners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Wilson", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "William Benoit", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c73c70b1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dark Matter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FLY Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DarkZero Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragonsteel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Spirax", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 73, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Djalal Djiar", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": "/player-photos/1779824846432_Spirax.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ca76ba82", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Aojune", - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 72, - "macro_play": 68, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Jun-Hao \"Jonny\" Chen", - "loan_listed": false, - "contract_end": "2007-01-01", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "team-e21b9ba3", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dea284e5", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Tempest Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Mirage Alliance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Denathor", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Noah Erikson", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": "/player-photos/1779824828368_Denathor.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fruition Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Hoon's Doggos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Lucky Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Mirage Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Polar Ace", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Zenith Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "C9 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Harrisburg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dignitas Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DIG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dignitas Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "100 Thieves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Disguised", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "id": "player-e16a590e", - "match_name": "Frank Lam", - "full_name": "Tomo", - "date_of_birth": "2001-01-19", - "nationality": "", - "profile_image_url": "/player-photos/1779824866800_Tomo.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eaf8e5f5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Columbia College", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Columbia College", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "AZIO White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Clutch Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GG Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Lourdes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Clutch Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Clutch Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Evil Geniuses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "condition": 100, - "full_name": "Artemis", - "attributes": { - "laning": 74, - "mechanics": 75, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 74, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "match_name": "Connor Doyle", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1994-11-13", - "nationality": "VN", - "profile_image_url": "/player-photos/1779824900406_Artemis__Connor_Doyle_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lourdes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lourdes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lourdes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Winthrop", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-fa25e8e1", - "match_name": "Jacob Brayboy", - "full_name": "Blight", - "date_of_birth": "2000-01-08", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fbf36012", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ANON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CB Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Next Level Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DUCKIE GETTERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dorado Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Redemption", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Jason Zhi", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2004-10-19", - "nationality": "CA", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-10540476", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fd8a94d1", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GTZ Bulls", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ERN ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Karma Clan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "OFFSET Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pawn Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TP Adéquat Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "UCAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "UCAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maryville", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Obstinatus", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Guilherme Jose Fernandes Morais Sousa Da Cruz", - "date_of_birth": "2002-12-13", - "nationality": "PT", - "profile_image_url": "/player-photos/1779824855456_Obstinatus.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/nlc_players.json b/data/erls/players/nlc_players.json deleted file mode 100644 index 6ba338d19..000000000 --- a/data/erls/players/nlc_players.json +++ /dev/null @@ -1,7238 +0,0 @@ -{ - "name": "NLC Players", - "description": "NLC - 2026 Season", - "players": [ - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Bucks Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Atlando Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Bucks Vipers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Atlando Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Plejehjemmet Kalder", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Guarp Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-01bf496d", - "match_name": "Frederik Bisgaard Jensen", - "full_name": "Fred (Frederik Jensen)", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed Lionesses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed Lionesses", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Godalions Blossom", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLG Female Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Godalions Blossom", - "appearances": 0 - } - ], - "id": "player-04f19ebe", - "match_name": "Laura Riches", - "full_name": "GertrudeThePony", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779866716633_GertrudeThePony.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0eae0b91", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ENCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KOVA Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MTW Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Atletec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Arctic Pandas", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5ef306d4", - "condition": 100, - "full_name": "Simpli", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 56, - "macro_play": 60, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Anselmi Rintanen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-03-02", - "nationality": "FI", - "profile_image_url": "/player-photos/1779866689112_Simpli.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-16793104", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "condition": 100, - "full_name": "Cast", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "Cast", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Grim Ravens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Grim Ravens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Horizon Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Illés Akadémia Spirit", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "FC Nantes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "mCon Rotterdam", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Plague", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lenovo Legion Honvéd", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Spirit Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "id": "player-1d39bc6b", - "match_name": "Bálint Réfi", - "full_name": "Ragnarr", - "date_of_birth": "2002-05-03", - "nationality": "", - "profile_image_url": "/player-photos/1779866934666_Ragnarr.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-20647fba", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Luke", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Luke", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e8c7e277", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-20c1419e", - "match_name": "Mikkel Bjørn", - "full_name": "Bjoernen", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2394a8b5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "AeQ E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Lachende Gerdas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "WAR Balkan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Defusekids", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "New Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Diabolus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "K1CK eSports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ToxicFalcons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PSV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Singularity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Du Sud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Du Sud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "condition": 100, - "full_name": "Furuy", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Mike Petrus Franciscus Wils", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-12-16", - "nationality": "NL", - "profile_image_url": "/player-photos/1779866914048_Furuy.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Team Infused", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Tricked Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Unicorns of Love", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "ALTERNATE aTTaX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "ÇİLEKLER", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "P3P eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Tricked Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ÇİLEKLER", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Ventus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Singularity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KAOS e-sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - } - ], - "id": "player-29c4c7b3", - "match_name": "Victor Etlar Eriksen", - "full_name": "Reje", - "date_of_birth": "1998-11-12", - "nationality": "", - "profile_image_url": "/player-photos/1779866713545_Reje.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-323bff20", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "condition": 100, - "full_name": "RustySniper", - "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "RustySniper", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-387f7050", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "condition": 100, - "full_name": "Boatish", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Boatish", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NO", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3cdfbfc3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "BIG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Black Lion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "BIG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "CPH Flames", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ENCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Singularity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "eMonkeyz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Tricked Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "neXtPlease! Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Riddle NO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Caldya Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Valiant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Arctic Pandas", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5ef306d4", - "condition": 100, - "full_name": "Nille", - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 56, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Juho Janhunen Wilhelm", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-08-16", - "nationality": "FI", - "profile_image_url": "/player-photos/1779866681692_Nille.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Bloodline Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "E-nsane Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PRINCIPALITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Monta Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-45f60b44", - "match_name": "Angelo Yousef", - "full_name": "Slice", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9114115f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fortress", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Fortress", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-466592d0", - "match_name": "Alexander Kærmose Ølholm", - "full_name": "Ugandan fighter", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Oserv Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Cyber Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Klanik Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-4c73fc27", - "match_name": "Hugo Pilström", - "full_name": "Goldenpenny", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9114115f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ionikos Nikaias", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Serpents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-4d4abaed", - "match_name": "Andrias Rønne Olsen", - "full_name": "Bus", - "date_of_birth": "2002-10-10", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ee2bd46c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-50b43b39", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "condition": 100, - "full_name": "Miella", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Miella", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-50c63988", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "condition": 100, - "full_name": "Drututt", - "attributes": { - "laning": 61, - "mechanics": 55, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Drututt", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Invulnerables Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Bloodline Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Bloodline Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-54449e50", - "match_name": "Alec Jablonski", - "full_name": "Cha0s", - "date_of_birth": "2004-02-23", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9114115f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - } - ], - "id": "player-5790ae15", - "match_name": "Emre Kadioglu", - "full_name": "Lyrokun", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779866924002_Lyrokun.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5af2612a", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Guggu", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Guga Tsertsvadze", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-09-10", - "nationality": "GE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5bc8a957", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "condition": 100, - "full_name": "Bobik", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Bobik", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fnatic Rising", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "GamersOrigin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GamersOrigin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team GO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - } - ], - "id": "player-5dc120ca", - "match_name": "Ronaldo Betea", - "full_name": "Ronaldo", - "date_of_birth": "1998-12-23", - "nationality": "", - "profile_image_url": "/player-photos/1779866712037_Ronaldo.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Made in France", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Supremacy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "against All authority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Supremacy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GameWard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BIG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "GamersOrigin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GamersOrigin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team GO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Pique Sel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Joblife", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - } - ], - "id": "player-5e2304cb", - "match_name": "Karim Aubineau", - "full_name": "KKT", - "date_of_birth": "1997-03-19", - "nationality": "", - "profile_image_url": "/player-photos/1779866710329_KKT.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "id": "player-61df48a6", - "match_name": "Sorth Jeppe Nikolaj", - "full_name": "Ag0nyPain", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779866913343_Ag0nyPain.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6576b32a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1cee59ca", - "condition": 100, - "full_name": "Hunt", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 58, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Hunt", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-666cfde3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lynch Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The ParadOx", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Soul", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 66, - "consistency": 66, - "shotcalling": 59, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 67 - }, - "match_name": "Umut Metin", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-ee2bd46c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6b2b0bd7", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BlueWhites", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BlueWhites", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eesti Rästikud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eesti Rästikud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Epic Avalanche", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Arctic Pandas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Eesti Rästikud", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Epic Avalanche", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Boltox", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 56, - "macro_play": 60, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 59 - }, - "match_name": "Arlet Semre", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "EE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-5ef306d4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6e60132e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Connecting Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "regnum4games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "condition": 100, - "full_name": "Virtuso", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Magnus Bonde", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-06-04", - "nationality": "DK", - "profile_image_url": "/player-photos/1779866849662_Virtuso.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Bloodline Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RNL ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NICE GUYS", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-74a4ab05", - "match_name": "Luis Busch", - "full_name": "Luis", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9114115f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-74f5d00b", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2012, - "assists": 0, - "team_id": null, - "team_name": "H2k-Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Enemy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "myRevenge", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Gamers2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "RoughNeX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Steve Bakes Cookies", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "SUPA HOT CREW", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team Dignitas UK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Gamers2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "H2k-Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "TSM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Red Bulls", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Splyce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Splyce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "BT Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "BT Excel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Movistar Riders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Movistar Riders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "X7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "X7 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Triple Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lionscreed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CITA Kaizen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kasing", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 56, - "macro_play": 61, - "consistency": 59, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 58 - }, - "match_name": "Raymond Tsang", - "date_of_birth": "1993-12-08", - "nationality": "GB", - "profile_image_url": "/player-photos/1779866714997_Kasing.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-761a0b7d", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "condition": 100, - "full_name": "Cyclops", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Cyclops", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FI", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 67, - "macro_play": 69, - "consistency": 69, - "shotcalling": 72, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "id": "player-a66e7a33", - "match_name": "Yakkey", - "full_name": "Yakkey", - "date_of_birth": "January 14, 2005", - "nationality": "RO", - "profile_image_url": "/player-photos/1778856548328_wfzyjuy87ti.png", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-818bad5d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Epic Avalanche", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Oplon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Cyberground Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "MJ-Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LowLandLions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LowLandLions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "mYinsanity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mYinsanity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bastu Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Arctic Pandas", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5ef306d4", - "condition": 100, - "full_name": "Dibu", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 59, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 59 - }, - "match_name": "Janne Heikkonen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-08-02", - "nationality": "FI", - "profile_image_url": "/player-photos/1779866686363_Dibu.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81d19d7d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "BloodyDevils", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NecroRaisers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Cyber Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "eXtatus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RAMS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Sampi", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nightbirds", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "condition": 100, - "full_name": "Bobista", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Petr Fojtík", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-03", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779866898664_Bobista.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dutch Community Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-85b26719", - "match_name": "Ludvig Sällberg", - "full_name": "Spiderlair", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-861c69a5", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "condition": 100, - "full_name": "Forsen", - "attributes": { - "laning": 54, - "mechanics": 52, - "discipline": 63, - "macro_play": 52, - "consistency": 52, - "shotcalling": 56, - "teamfighting": 52, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Forsen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 62, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8eae8b20", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "condition": 100, - "full_name": "pykene", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "pykene", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DOCISK AKADEMIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Garden Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Monta Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - } - ], - "id": "player-95d0b2ad", - "match_name": "Jakub Pawlicki", - "full_name": "JayJay", - "date_of_birth": "2003-09-29", - "nationality": "", - "profile_image_url": "/player-photos/1779866839191_JayJay.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ee2bd46c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "id": "player-970d7ba9", - "match_name": "Mads Færgemann", - "full_name": "MadsF", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779866916886_MadsF.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9fe1afb7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ee2bd46c", - "condition": 100, - "full_name": "CLEARS", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Mark Wegner", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a47efccf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "condition": 100, - "full_name": "Mansterninja", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Måns Hedqvist", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-05-11", - "nationality": "SE", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a8d3d218", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "condition": 100, - "full_name": "Mafro", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Mafro", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Demise", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Tricked Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Münster Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ParakeetSaviors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-b1c31131", - "match_name": "Kasper Sørensen", - "full_name": "Hankat", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b5fa187b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "condition": 100, - "full_name": "Royeq", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Royeq", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b6601ae7", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Rychly", - "attributes": { - "laning": 52, - "mechanics": 54, - "discipline": 58, - "macro_play": 55, - "consistency": 59, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 56, - "mental_resilience": 58 - }, - "match_name": "Rychly", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b79af3ae", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Enclave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI White", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "SuperNitro1", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ENCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Enclave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Riddle Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Rich Gang", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Arctic Pandas", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5ef306d4", - "condition": 100, - "full_name": "Kehvo", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Aleksi Merta", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-03-12", - "nationality": "FI", - "profile_image_url": "/player-photos/1779866694031_Kehvo.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dutch Community Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Karolinerna", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-b8640c83", - "match_name": "Simon Larsson", - "full_name": "Unicow", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b96fc82a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "GENK Talent Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "X7 Ascent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KAOS e-sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "condition": 100, - "full_name": "Scuffed", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Max Løwe Skovfoged Scherer", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-09-29", - "nationality": "DK", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "404 Multigaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "TOG Academy", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-bf285977", - "match_name": "Gabriel Scholtz", - "full_name": "Kamito", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ee2bd46c", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c06a52ea", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "condition": 100, - "full_name": "Pobelter", - "attributes": { - "laning": 58, - "mechanics": 56, - "discipline": 58, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Pobelter", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c7b3425c", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "condition": 100, - "full_name": "krabbypatty", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "krabbypatty", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cf4c2bf3", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Wasey", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Wasey", - "date_of_birth": null, - "nationality": "GB", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d162dedb", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Method2Madness", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Silent Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Bitfix Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "EGN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LEO", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-9114115f", - "condition": 100, - "full_name": "Furby", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 60, - "macro_play": 61, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Casper Sedergren", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": "/player-photos/1779866893891_Furby.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "London Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Munster Rugby Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDN UTD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "London Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MCES Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Resolve", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BISONS ECLUB", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-d442b787", - "match_name": "William Jones", - "full_name": "NoName", - "date_of_birth": "2003-08-15", - "nationality": "", - "profile_image_url": "/player-photos/1779866901704_NoName__Will_Jones_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d4c325a9", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "condition": 100, - "full_name": "Jackspektra", - "attributes": { - "laning": 58, - "mechanics": 53, - "discipline": 57, - "macro_play": 54, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 57, - "mental_resilience": 57 - }, - "match_name": "Jackspektra", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 62, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Keypulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-d6762106", - "match_name": "Markus Westerberg", - "full_name": "Markus", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-de5955c1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "UniQ Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "MNM Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Akroma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "condition": 100, - "full_name": "Mishi", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Kevin Westerbacka", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-12-16", - "nationality": "SE", - "profile_image_url": "/player-photos/1779866921986_Mishi__Kevin_Westerbacka_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e1768c84", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "condition": 100, - "full_name": "MrTucker", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "MrTucker", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Masonic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fløng Esports Elite", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RATE Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - } - ], - "id": "player-e4e77fb5", - "match_name": "Erol Bajramovic", - "full_name": "Erolle", - "date_of_birth": "2001-08-14", - "nationality": "", - "profile_image_url": "/player-photos/1779866930244_Erolle.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Luminox Planet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Luminox Planet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Forbidden Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-e5d6d739", - "match_name": "Muhammet Yusuf Karakas", - "full_name": "Kakarot", - "date_of_birth": "2006-03-09", - "nationality": "", - "profile_image_url": "/player-photos/1779866861224_Kakarot__Muhammet_Yusuf_Karakas_.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e9bce2b7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "condition": 100, - "full_name": "Sloppy Walrus", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Sloppy Walrus", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f54c039a", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "condition": 100, - "full_name": "Sebrej", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Sebrej", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GB", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fa1bdd27", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "condition": 100, - "full_name": "Elijah", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Elijah", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Nordavind", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Origen BCN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - } - ], - "id": "player-fc3baa7b", - "match_name": "Mathias Jensen", - "full_name": "Szygenda", - "date_of_birth": "2001-04-14", - "nationality": "", - "profile_image_url": "/player-photos/1779866707954_Szygenda.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fdc5b065", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "seQura ZEST", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Xoldiers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Deer Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Uden", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 56, - "macro_play": 64, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 58 - }, - "match_name": "Patryk Czerniawski", - "date_of_birth": "2002-02-14", - "nationality": "PL", - "profile_image_url": "/player-photos/1779866865694_Uden.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/pcs_players.json b/data/erls/players/pcs_players.json deleted file mode 100644 index c64649963..000000000 --- a/data/erls/players/pcs_players.json +++ /dev/null @@ -1,4888 +0,0 @@ -{ - "name": "PCS Players", - "description": "PCS - 2026 Season", - "players": [ - { - "id": "player-0a8e4e3e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "condition": 100, - "full_name": "YSKM", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 71, - "macro_play": 72, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Chau Shu Tak", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2025-11-17", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-02-11", - "nationality": "HK", - "profile_image_url": "/player-photos/1779825933148_YSKM.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "HuyaTV", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KT Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-0fb5ec08", - "match_name": "Lee Yong-jun", - "full_name": "Cid", - "date_of_birth": "2003-01-30", - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-12737d9e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Impunity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "PEACE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nate9527", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "PEACE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nate9527", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Shadow Keepers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "condition": 100, - "full_name": "Weizhe", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 71, - "macro_play": 72, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Lin Wei-Zhe", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-09-23", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825950096_Weizhe.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-2af0a675", - "match_name": "Ahn Jae-hyeong", - "full_name": "Raon", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beyond Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "id": "player-411e110b", - "match_name": "Huang Po-Wei", - "full_name": "TNS", - "date_of_birth": "2002-08-03", - "nationality": "", - "profile_image_url": "/player-photos/1779825931100_TNS.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-43c10e12", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "condition": 100, - "full_name": "Pungyeon", - "attributes": { - "laning": 74, - "mechanics": 70, - "discipline": 77, - "macro_play": 72, - "consistency": 72, - "shotcalling": 69, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 75 - }, - "match_name": "Pungyeon", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-10-24", - "nationality": "KR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-45c57bc5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "No Game No Life", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Yetti", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "F-Soul Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Kowloon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BOOM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "OP Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "condition": 100, - "full_name": "Holo", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Tsang Tak Lam", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-05-04", - "nationality": "HK", - "profile_image_url": "/player-photos/1779825937418_Holo__Tsang_Dek_Lam_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4f130fde", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Alternative Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Impunity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "condition": 100, - "full_name": "Yuhe", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Huang Xing-Wei", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4f6c9d3a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SillySilly Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "condition": 100, - "full_name": "Tianzhen", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Guo Qi-Fan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-09-13", - "nationality": "CN", - "profile_image_url": "/player-photos/1779825938621_Tianzhen.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5a5139d7", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "condition": 100, - "full_name": "K B", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "K B", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5e6713da", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "condition": 100, - "full_name": "Hedonist", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Hsu Ji-Xuan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-5ece99f6", - "match_name": "Chou Tsu-Yu", - "full_name": "Dotmm", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-5f771268", - "match_name": "Chiu Hsu-Cheng", - "full_name": "Mese", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DCG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DCG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "id": "player-607fa235", - "match_name": "Sham Tsz Chung Kelvin", - "full_name": "MadDogg9", - "date_of_birth": "2004-04-17", - "nationality": "", - "profile_image_url": "/player-photos/1779825971329_MadDogg9.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-617556d7", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "2274", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 74, - "macro_play": 69, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 74 - }, - "match_name": "Chiu Chang-En", - "loan_listed": false, - "contract_end": "2028-11-21", - "potential_base": 76, - "transfer_listed": false, - "date_of_birth": "2008-04-21", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825951741_2274.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-94671303", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-624f5fc2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SillySilly Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "condition": 100, - "full_name": "Hermes", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Lin You-Ju", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-12-31", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825946831_Hermes__Lin_You-Ju_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-662702f1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CST Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CST Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "condition": 100, - "full_name": "Zkai", - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 69, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 67, - "mental_resilience": 68 - }, - "match_name": "Yang Li-Kai", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-18", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-06-18", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825930420_Zkai.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-66cc093a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Shih Hsin Meow Meow", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Shih Hsin Meow Meow", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TNU Eagle", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "condition": 100, - "full_name": "Roger", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Fu Po-Yu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-09-09", - "nationality": "TW", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-741e12b4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Forger Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "condition": 100, - "full_name": "Pretender", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Ng Cheuk Lun Jason", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2025-11-17", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-03-11", - "nationality": "HK", - "profile_image_url": "/player-photos/1779825940007_Pretender.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7ced2842", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "RedamnTion", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 71, - "macro_play": 70, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "RedamnTion", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-74d3c7fe", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TNU Eagle", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-814c6c95", - "match_name": "Lin Sheng-Syin", - "full_name": "ANKS", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "NoFancy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "NoFancy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "J Team 2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Kowloon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Berjaya Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "J Team 2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Berjaya Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SEM9 WPE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "id": "player-821c2f46", - "match_name": "Law Chi Kit", - "full_name": "Keres", - "date_of_birth": "1999-09-15", - "nationality": "", - "profile_image_url": "/player-photos/1779825975660_Keres.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8373ac51", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "condition": 100, - "full_name": "MnM", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Wong Ka Chun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2025-11-17", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-09-19", - "nationality": "HK", - "profile_image_url": "/player-photos/1779825944173_MnM__Wong_Ka_Chun_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-8ca7a86d", - "match_name": "Chang Peng", - "full_name": "XI LAI", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-90cc8ac0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "condition": 100, - "full_name": "Tracy", - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 74, - "macro_play": 69, - "consistency": 69, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 67, - "mental_resilience": 72 - }, - "match_name": "Lin Hong-Lin", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-17", - "market_value": 0, - "potential_base": 76, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-08-16", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825947795_Tracy__Lin_Hong-Lin_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-952c737d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SillySilly Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "condition": 100, - "full_name": "Hasu7", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 73, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Hong Bing-You", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-10-20", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825934455_Hasu7.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BRO Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "BRO Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fredit BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-9fee5fba", - "match_name": "Kang Woo-seok", - "full_name": "Listo", - "date_of_birth": "2005-03-09", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a103d8c6", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "condition": 100, - "full_name": "Micinb", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Micinb", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a433a4f0", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "condition": 100, - "full_name": "Sorrymbggff", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 70, - "macro_play": 72, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Sorrymbggff", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "DCG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Impunity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-ad347714", - "match_name": "Tsai Ya-Chun", - "full_name": "Masuhana", - "date_of_birth": "2005-12-08", - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b1917c18", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Shadow Keepers", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "condition": 100, - "full_name": "Cedric", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Liu Yu-Yang", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "id": "player-b39a0917", - "match_name": "Zheng Kang", - "full_name": "Rbow", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779825917017_Rbow.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-b636d52a", - "match_name": "Chang Yen-Wei", - "full_name": "Leowei", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b7c3c0fd", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kingpo54", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 70, - "macro_play": 72, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Mak Chun Pan", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-c28ffe5a", - "match_name": "Lee Lun-Fung", - "full_name": "Zartheit1", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c4fa386e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "condition": 100, - "full_name": "X1aoCHiao", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Wang Jian-Qiao", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c64cab9e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "condition": 100, - "full_name": "ner4", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 74, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "ner4", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cba7992b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Berjaya Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Berjaya Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beyond Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Shadow Keepers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Sponge Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "condition": 100, - "full_name": "1116", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 71, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Chien Mao-An", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-16", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825958385_1116.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cddaa544", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "HELL PIGS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Shadow Keepers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "condition": 100, - "full_name": "Prage", - "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Chen Chung-En", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": "/player-photos/1779825962125_Prage.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "id": "player-d31effef", - "match_name": "Lin Hsiu-Yuan", - "full_name": "Feng55", - "date_of_birth": "1998-01-11", - "nationality": "", - "profile_image_url": "/player-photos/1779825929217_Feng55.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "wangting", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-d462f3cc", - "match_name": "Chang Cheng-Yu", - "full_name": "Killer2", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-9c289ca5", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gen.G Scholars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BNK FEARX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-da5d0a37", - "match_name": "Kim Jae-won", - "full_name": "Lucifer", - "date_of_birth": "2005-11-06", - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hungkuang Falcon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "id": "player-dd854ce7", - "match_name": "Liu Yu-Chen", - "full_name": "Zsouaia", - "date_of_birth": "2004-02-28", - "nationality": "", - "profile_image_url": "/player-photos/1779825968019_Zsouaia.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e0d9429d", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "En", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "En", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-0df06611", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WE Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Viper Night Raider", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "West Point", - "appearances": 0 - } - ], - "id": "player-e478bb1d", - "match_name": "Leong Ka Kit", - "full_name": "BuLuKaKa", - "date_of_birth": "2004-05-10", - "nationality": "", - "profile_image_url": "/player-photos/1779825966565_BuLuKaKa.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-33bed81a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e66f4478", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "VP Game", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LGD Young Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RNG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Royal Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RNG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Royal Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SillySilly Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "condition": 100, - "full_name": "Xzz", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 73, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Liu Zhu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-20", - "nationality": "CN", - "profile_image_url": "/player-photos/1779825942893_Xzz.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-ef608bed", - "match_name": "Yang Xi-Qi", - "full_name": "Yuji ", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779825955259_Yuji__Yang_Xi-Qi_.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f6d6df03", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "DJ Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TALON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "condition": 100, - "full_name": "Xin", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Ye Shang-Hsin", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-18", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-11-11", - "nationality": "TW", - "profile_image_url": "/player-photos/1779825934049_Xin__Ye_Shang-Hsin_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f8472176", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "iG Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TT Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "TT Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AL.Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Anyone's Legend", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TT Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AL.Young", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LGD Young Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Shadow Keepers", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ashlomailma", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Liu Jun", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": "/player-photos/1779825966084_Ashlomailma.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-4b825a93", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Storm Teams", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Alternative Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Storm Teams", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Alternative Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-f8631e8c", - "match_name": "Chen Po-Yen", - "full_name": "Zoey", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LCVS Fighting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LCVS Fighting", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Xu Ji Basalt", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-fa2f7fef", - "match_name": "Hu Ting-Yeh", - "full_name": "Acheron", - "date_of_birth": "2004-07-29", - "nationality": "", - "profile_image_url": "/player-photos/1779825963469_Acheron__Hu_Ting-Yeh_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team Legend God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Alpha Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Alpha Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Afro", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Wayi Spider", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "G-Rex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Afro", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "G-Rex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "LNG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LNG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Resurgence", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BOOM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Impunity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Impunity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Equinox Core", - "appearances": 0 - } - ], - "id": "player-fecdc32b", - "match_name": "Wu Chun Hin", - "full_name": "Epic", - "date_of_birth": "1998-10-01", - "nationality": "", - "profile_image_url": "/player-photos/1779825956740_Epic.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86604284", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/prm_players.json b/data/erls/players/prm_players.json deleted file mode 100644 index 4d0b33267..000000000 --- a/data/erls/players/prm_players.json +++ /dev/null @@ -1,2769 +0,0 @@ -{ - "name": "PRM Players", - "description": "PRM - 2026 Season", - "players": [ - { - "id": "player-04031c7d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "condition": 100, - "full_name": "Exofeng", - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Mario Emilov Strugov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-07-17", - "nationality": "BG", - "profile_image_url": "/player-photos/1779618332826_obo8x7m9f4q.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-243b55a2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "condition": 100, - "full_name": "Toasty", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 70, - "macro_play": 73, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 71 - }, - "match_name": "Victor Alexander Chea", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-01-19", - "nationality": "US", - "profile_image_url": "/player-photos/1778866631356_ls8wcxen24c.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-086d4c66", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "condition": 100, - "full_name": "Devn", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Nam Jürgen Nguyen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779620072080_7n5qfaq48l.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-705a39f4", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "traits": [], - "fitness": 100, - "team_id": "team-1347e217", - "position": "Support", - "condition": 100, - "full_name": "Lilipp", - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Philipp Samuel Englert", - "loan_listed": false, - "morale_core": {}, - "nationality": "Germany", - "contract_end": "2026-11-16", - "market_value": 0, - "date_of_birth": "2001-01-20", - "potential_base": 74, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "profile_image_url": "/player-photos/1778857523438_hssn1gjelwe.webp", - "potential_revealed": null, - "alternate_positions": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "natural_position": "Support", - "stats": { - "appearances": 0 - }, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-089fc0e4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "Unicorns of Love Sexy Edition", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "condition": 100, - "full_name": "RoyalKanin", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Linus Grönlund", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-06", - "nationality": "SE", - "profile_image_url": "/player-photos/1779623336136_xzyouay5uy.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0ecb44ed", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "condition": 100, - "full_name": "Abbedagge", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Felix Alfred Braun", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-09-10", - "nationality": "DE", - "profile_image_url": "/player-photos/1779618260122_o00fel5yo7.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-18753194", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "Unicorns of Love Sexy Edition", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "condition": 100, - "full_name": "Fornoreason", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Felix Schummel", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-10-29", - "nationality": "DE", - "profile_image_url": "/player-photos/1779623213810_ulr9ay7672.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2421cd97", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kaiser", - "attributes": { - "laning": 68, - "mechanics": 74, - "discipline": 66, - "macro_play": 70, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Norman Kaiser", - "loan_listed": false, - "contract_end": "1998-11-19", - "transfer_listed": false, - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779565145518_17sew9aoz99.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-0be37b7e", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-242c6678", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Pyrka", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Łukasz Grześkowiak", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 77, - "transfer_listed": false, - "date_of_birth": "2000-06-04", - "nationality": "PL", - "profile_image_url": "/player-photos/1779618482041_7tu8n5waoq2.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3cef0cfa", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-347bc312", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Smarty", - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 74, - "macro_play": 71, - "consistency": 70, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Matyáš Rozvoral", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "date_of_birth": "2005-06-11", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779620145886_zx1xko1gl9.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f3b86137", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-37f6bfcd", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "condition": 100, - "full_name": "Venour", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 72, - "macro_play": 72, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Iwan Skorikov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2002-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-08", - "nationality": "DE", - "profile_image_url": "/player-photos/1779618059338_456k116w8ye.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3ce96e17", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tockimo", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "Timo Nils Bock", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "date_of_birth": "2002-02-22", - "nationality": "DE", - "profile_image_url": "/player-photos/1779615779754_ribaf5rxdnd.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-069c707b", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-57a747f4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "condition": 100, - "full_name": "JNX", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 71, - "macro_play": 73, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Janik Bartels", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-12-10", - "nationality": "DE", - "profile_image_url": "/player-photos/1779611649611_2qcww632ssc.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-60a41eaf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "condition": 100, - "full_name": "D4nKa", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 72, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Daniel Golzmann", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-11-17", - "nationality": "DE", - "profile_image_url": "/player-photos/1779571570462_stntfrwyd0l.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-62c0b82f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a72b6e41", - "condition": 100, - "full_name": "Relative", - "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 70, - "macro_play": 72, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 - }, - "match_name": "Leon Van", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2002-06-14", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779571234733_0kfejq037tvl.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6d902f63", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "condition": 100, - "full_name": "Xagog", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 74, - "macro_play": 71, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 74 - }, - "match_name": "Isa Arda Dagli", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-02-14", - "nationality": "DE", - "profile_image_url": "/player-photos/1779611754095_3dxiyjw60n8.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7173ba7d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "condition": 100, - "full_name": "Pasu", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Paul Hildebrandt", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779619916256_7gm5x1gxlaj.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-73a185a2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "Unicorns of Love Sexy Edition", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "condition": 100, - "full_name": "DenVoksne", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Nikolaj Asbjorn Meilby", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-07-15", - "nationality": "DK", - "profile_image_url": "/player-photos/1779623392601_jrh26pyhx9i.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-745d4d5e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "condition": 100, - "full_name": "PowerOfEvil", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 70, - "macro_play": 72, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Tristan Schrage", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1997-10-27", - "nationality": "DE", - "profile_image_url": "/player-photos/1779611832772_un1vq7301z.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "attributes": { - "laning": 72, - "mechanics": 67, - "discipline": 69, - "macro_play": 68, - "consistency": 68, - "shotcalling": 68, - "teamfighting": 68, - "champion_pool": 67, - "mental_resilience": 71 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 76, - "transfer_listed": false, - "id": "player-75057df7", - "match_name": "William Nieminen", - "full_name": "UNF0RGIVEN", - "date_of_birth": "2000-08-23", - "nationality": "SE", - "profile_image_url": "/player-photos/1779618397071_cf3wvw662zm.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-75246c7e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "condition": 100, - "full_name": "Shelfmade", - "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 71, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 71 - }, - "match_name": "Francesco Cardia", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-10-02", - "nationality": "DE", - "profile_image_url": "/player-photos/1779615489678_q4c6oyvahsm.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-82f0f276", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-a72b6e41", - "team_name": "E WIE EINFACH E-SPORTS", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Wildenbruch", - "attributes": { - "laning": 74, - "mechanics": 70, - "discipline": 72, - "macro_play": 74, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Linus Köhler", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "2003-08-20", - "nationality": "DE", - "profile_image_url": "/player-photos/1779571348218_txepls2f1u.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-a72b6e41", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8a36dc48", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "VfB Stuttgart eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "condition": 100, - "full_name": "ZWICKL", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Johannes Eckerl", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-946db369", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Farfetch", - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Berk Badur", - "loan_listed": false, - "contract_end": "2026-11-16", - "transfer_listed": false, - "date_of_birth": "1998-09-09", - "nationality": "TR", - "profile_image_url": "/player-photos/1779571795053_567grv6l7md.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-5dc37618", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-975a5169", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "condition": 100, - "full_name": "Densi", - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 - }, - "match_name": "Denis Aljic", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-06-03", - "nationality": "DE", - "profile_image_url": "/player-photos/1779618128751_wjoyxgfooke.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9769972c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "seaz", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 72, - "macro_play": 74, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "Daniel Binderhofer", - "loan_listed": false, - "contract_end": "2000-11-16", - "potential_base": 78, - "transfer_listed": false, - "date_of_birth": "2000-11-17", - "nationality": "AT", - "profile_image_url": "/player-photos/1779612062748_urz51gwf2ne.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-bec332f5", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9995be5f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "VfB Stuttgart eSports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Jakobobbi", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Jakob Waich", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "date_of_birth": "2000-03-26", - "nationality": "AT", - "profile_image_url": "/player-photos/1779623887599_ul1fkad4qj.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-8c9a2d4b", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9fb2dfc7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "VfB Stuttgart eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "condition": 100, - "full_name": "Tazaku", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Adrian Steiner", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-09-12", - "nationality": "DE", - "profile_image_url": "/player-photos/1779623815398_sfdwgg3gnm.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a56a774f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "condition": 100, - "full_name": "Reeker", - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 73, - "macro_play": 69, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Steven Chen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-05-15", - "nationality": "DE", - "profile_image_url": "/player-photos/1779565017265_44o3567tatj.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-aa67e0e2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "Unicorns of Love Sexy Edition", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "condition": 100, - "full_name": "White", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Aslan Panglose", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-07-11", - "nationality": "FR", - "profile_image_url": "/player-photos/1779623271341_zoz93kwni0l.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b081196c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-1347e217", - "team_name": "Team Orange Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "condition": 100, - "full_name": "SAJATOR", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Jan Zítek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-10-11", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779623013990_v8jqs1blo8f.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b9516ad8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-1347e217", - "team_name": "Team Orange Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "condition": 100, - "full_name": "Woldjo", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "William Donatzky", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-09", - "nationality": "DK", - "profile_image_url": "/player-photos/1779622941650_4mqh3bc157x.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bc2ba158", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-a72b6e41", - "team_name": "E WIE EINFACH E-SPORTS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a72b6e41", - "condition": 100, - "full_name": "Vizicsacsi", - "attributes": { - "laning": 68, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 70, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 67, - "mental_resilience": 71 - }, - "match_name": "Tamás Kiss", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1993-06-14", - "nationality": "HU", - "profile_image_url": "/player-photos/1779571096162_nw06iaj7i3.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c8a93f6b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "condition": 100, - "full_name": "Patrik", - "attributes": { - "laning": 70, - "mechanics": 73, - "discipline": 66, - "macro_play": 68, - "consistency": 68, - "shotcalling": 66, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Patrik Jírů", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 75, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-04-07", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779565080889_3kpf70t3pna.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c94c8003", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "condition": 100, - "full_name": "CPM", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Laurentiu-Dodel Zidaru", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1994-12-13", - "nationality": "RO", - "profile_image_url": "/player-photos/1779619017439_alv07dlggff.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb663ba0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-a72b6e41", - "team_name": "E WIE EINFACH E-SPORTS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a72b6e41", - "condition": 100, - "full_name": "Noz2k", - "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 66, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 69 - }, - "match_name": "Noah Richter", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-06-29", - "nationality": "DE", - "profile_image_url": "/player-photos/1779571286354_63objwu0bo.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb7a6822", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "condition": 100, - "full_name": "Mietek", - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 71, - "shotcalling": 66, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 70 - }, - "match_name": "Nikolas Nowak", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779571515305_qiosmyfwcb.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cf6de495", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "Unicorns of Love Sexy Edition", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Twiizt", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Elton Richie Garcia Spetsig", - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 78, - "transfer_listed": false, - "date_of_birth": "2000-11-02", - "nationality": "SE", - "profile_image_url": "/player-photos/1779623465343_kvbs137yth.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e48c23c9", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d1aece38", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "condition": 100, - "full_name": "Sencux", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 72, - "macro_play": 72, - "consistency": 73, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 70 - }, - "match_name": "Chres Laursen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-09-17", - "nationality": "DK", - "profile_image_url": "/player-photos/1779571629766_jb2w22mvhjf.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d4147879", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "condition": 100, - "full_name": "Fooneses", - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Hannes Hollmann", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779620010376_anvb2zzk2m.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d45dee60", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "condition": 100, - "full_name": "Rin", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 72, - "macro_play": 73, - "consistency": 73, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Khalil Sahraoui (خليل صحراوي)", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-05", - "nationality": "DZ", - "profile_image_url": "/player-photos/1779615710309_n0iwoypwwwf.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d81526a8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "condition": 100, - "full_name": "Markoon", - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Mark van Woensel", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2002-06-28", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": "/player-photos/1779615552276_80k2ukuiimi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d8771aee", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-1347e217", - "team_name": "Team Orange Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "condition": 100, - "full_name": "zorenous", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 73 - }, - "match_name": "Cameron Abbott", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "AU", - "profile_image_url": "/player-photos/1779622880579_wlmd6673ws.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-df5efcb2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "condition": 100, - "full_name": "Notiko", - "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 73, - "macro_play": 68, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "Nick Celombitko", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 77, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-09-27", - "nationality": "DE", - "profile_image_url": "/player-photos/1779571726588_1wal4x6drp8.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-192f0abc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "condition": 100, - "full_name": "Habubu", - "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 70, - "macro_play": 74, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 72 - }, - "match_name": "Seyit Cüce", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1778867938430_ukdfwu8znej.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e1ae451e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "condition": 100, - "full_name": "Keduii", - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 73 - }, - "match_name": "Tim Willers", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 79, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-10-13", - "nationality": "DE", - "profile_image_url": "/player-photos/1779611971089_m9cgjh6svlf.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e1b9abd6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-e48c23c9", - "team_name": "VfB Stuttgart eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "condition": 100, - "full_name": "Sven", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "match_name": "Sven Olejnikow", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779623629084_d4hb0pxxi9.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e313b092", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "condition": 100, - "full_name": "Irrelevant", - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 70, - "macro_play": 69, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 71 - }, - "match_name": "Joel Miro Scharoll", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-10-22", - "nationality": "DE", - "profile_image_url": "/player-photos/1779564820108_2pxuqsst1zs.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fc5e2fec", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-a72b6e41", - "team_name": "E WIE EINFACH E-SPORTS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a72b6e41", - "condition": 100, - "full_name": "Afroboi", - "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 68, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 71 - }, - "match_name": "Adrian Kaymer", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 78, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-04-13", - "nationality": "DE", - "profile_image_url": "/player-photos/1779571174551_5siexxlvogd.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/rl_players.json b/data/erls/players/rl_players.json deleted file mode 100644 index 661d5463c..000000000 --- a/data/erls/players/rl_players.json +++ /dev/null @@ -1,7823 +0,0 @@ -{ - "name": "RL Players", - "description": "RL - 2026 Season", - "players": [ - { - "id": "player-0902a935", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Reason Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Gamespace eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "G2 Vodafone", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Szata Maga", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Esports Perf Center", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Misfits Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Aegis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team BDS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Aegis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eintracht Frankfurt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eintracht Frankfurt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "condition": 100, - "full_name": "Agresivoo", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 58, - "macro_play": 61, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Tobiasz Ciba", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-07-09", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865482531_Agresivoo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-093c891a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Z10 Spears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "condition": 100, - "full_name": "FullClear", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Paweł Drozd", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-08-31", - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-09b29b54", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GameWard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Bastille Legacy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team MCES", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Solary", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Solary", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Solary", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "condition": 100, - "full_name": "Decay", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Nicolas Gawron", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1999-12-21", - "nationality": "FR", - "profile_image_url": "/player-photos/1779865472522_Decay.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0d700886", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Klanik Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one inStreamly", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "condition": 100, - "full_name": "Fantomisto", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Thomas Folcher", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779865496992_Fantomisto.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-122a8b8d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "S2G Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "condition": 100, - "full_name": "Scorth", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Sergen Eke", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-05-29", - "nationality": "TR", - "profile_image_url": "/player-photos/1779865474084_Scorth.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-150bcd56", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Sample Text", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Vaevictis eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Vaevictis eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Elements Pro Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Pompa Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Panathinaikos AC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Pompa Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "R-SIXTEAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "The Largest Salary", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Different Dimension", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Greek Regenesis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "R-SIXTEAM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rogue EC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "CR4ZY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "K1CK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "K1CK Neosurf", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Axolotl", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "K1CK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mirage Elyandra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Mirage Elyandra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GameWard", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MY STAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Raxxo", - "attributes": { - "laning": 56, - "mechanics": 60, - "discipline": 60, - "macro_play": 58, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Oskar Bazydło", - "date_of_birth": "1996-10-12", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865472391_Raxxo.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-239dd021", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1777ef72", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Domino Computer", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Nordis Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Et cetera", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ESPORT ARENA DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Hussars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "condition": 100, - "full_name": "Szafa", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 64, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Jakub Szafarczyk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1d200cf4", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "EGN Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Hexagone Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Flayn eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "For The Win", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "For The Win", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "White Dragons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one inStreamly", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Calmsky", - "attributes": { - "laning": 63, - "mechanics": 61, - "discipline": 58, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Diogo Sousa", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": "/player-photos/1779865502863_Calmsky.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-ff1df943", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2592eefa", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Domino Computer", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "condition": 100, - "full_name": "Klorell", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 64 - }, - "match_name": "Michał Drobek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-07-04", - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-25a3588e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "E-nsane Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Hussars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "condition": 100, - "full_name": "Guli", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 56, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Igor Oblizajek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-31579a79", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CBI Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hive Athens", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "nerdRage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Corax Gaming Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NRAX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NRAX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MattyUSA LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "condition": 100, - "full_name": "PmK", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Maciej Gołębiowski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-28", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865464342_PmK.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Forsaken Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Silent Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Zhonyas Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MattyUSA LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "id": "player-31d1fa76", - "match_name": "Ksawery Gurbada", - "full_name": "Xavi", - "date_of_birth": "2003-09-05", - "nationality": "", - "profile_image_url": "/player-photos/1779865390660_Xavi.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3607121f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ESPORT ARENA DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CORE 128", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ESPORT ARENA DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CORE 128", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "condition": 100, - "full_name": "Joki37", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Jakub Korzeniecki", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779865459477_Joki37.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3752c496", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NYYRIKKI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one inStreamly", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DMG Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "condition": 100, - "full_name": "Faetski", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Jakob Skovmand", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - } - ], - "id": "player-41e444c0", - "match_name": "Dan Suchomel", - "full_name": "Opat04", - "date_of_birth": "2000-10-07", - "nationality": "", - "profile_image_url": "/player-photos/1779865394554_Opat04.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4225b189", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ThunderFlash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AvaTrade PixelPenny", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "condition": 100, - "full_name": "Blesia", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Rafał Marek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-443480fc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Elementalist", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ESPORT ARENA DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "condition": 100, - "full_name": "Salami", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Jakub Wójtowicz", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-09-09", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865386729_Salami.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Random 5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Neronity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Random 5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Random 5", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "SuppUp eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "WarKidZ E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "SuppUp eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "BCN Squad", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ŠAIM SE SuppUp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Spinebusters E-Sport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - } - ], - "id": "player-511fe89f", - "match_name": "Teodor Cholakov", - "full_name": "Vzz", - "date_of_birth": "2000-06-28", - "nationality": "", - "profile_image_url": "/player-photos/1779865475426_Vzz.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5453c8e7", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Reason Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "AGO Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "AGO Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Giants Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Giants Only The Brave", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Astralis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Origen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Jactroll", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Jakub Skurzyński", - "date_of_birth": "1998-08-05", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865497364_Jactroll.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-d772ad68", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-59fd9067", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "condition": 100, - "full_name": "Krysia", - "attributes": { - "laning": 62, - "mechanics": 61, - "discipline": 63, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Krysia", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "7more7 Black", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Romulea eSport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Grypciocraft", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Olympus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Juicy Ballers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Juicy Ballers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "id": "player-6328d358", - "match_name": "Kamil Rosik", - "full_name": "LeQu", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779865495482_LeQu.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-69e0a4ed", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Method2Madness", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "seQura ZEST", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one inStreamly", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "condition": 100, - "full_name": "Belit", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Marcin Swereda", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-09-22", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865495204_Belit.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6dd2eddd", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "condition": 100, - "full_name": "Mikusik", - "attributes": { - "laning": 59, - "mechanics": 63, - "discipline": 58, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Mikołaj Cywiński", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-09-04", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865486326_Mikusik.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Adive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Austrian Force", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Piast Gliwice Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Diablo Chairs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Piast Gliwice Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Pogoń Szczecin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Diablo Chairs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Pompa Team Acad.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Internaziomale", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Warthox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Elementalist", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ThunderFlash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-7067109a", - "match_name": "Jakub Kupisz", - "full_name": "Apriil", - "date_of_birth": "2000-09-06", - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-741015cf", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Digital Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dom Spokojnej Star.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Et cetera", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LEX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "condition": 100, - "full_name": "Ejsner", - "attributes": { - "laning": 56, - "mechanics": 61, - "discipline": 56, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 58 - }, - "match_name": "Wiktor Świderski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779865467465_Ejsner.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7da12333", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Gentlemen's Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Granit Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SINNERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Iron Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "condition": 100, - "full_name": "HeSSZero", - "attributes": { - "laning": 61, - "mechanics": 59, - "discipline": 60, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Paweł Karwot", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-02-23", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865454610_HeSSZero.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81c7cd91", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Akademia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RIFT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Same Mordeczki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team One Shot", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "TKA E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Akademia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Esports Perf Center", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Vitality.Bee", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Finetwork KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Finetwork KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Esprit Shōnen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one x KMT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GOAL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Lucker", - "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 63, - "macro_play": 61, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Damian Konefał", - "date_of_birth": "1997-10-10", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865480472_Lucker.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8985dbe2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NRAX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "OGC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Packmiko E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "condition": 100, - "full_name": "Anyone", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Norbert Zamojć", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-09-25", - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Europe Saviors Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gity Meavedronu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maturalni Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MFSK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "R3volt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynamo Eclot Talents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FMS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-8a37954c", - "match_name": "Jakub Wojtycki", - "full_name": "Hyper720", - "date_of_birth": "2002-09-20", - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-906e4183", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Grypciocraft", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Grypciocraft", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Kiedyś Miałem Fun", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Opera GX KMF", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Opera GX KMF", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "StormMedia FMS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "condition": 100, - "full_name": "Frajgo", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Krzysztof Chibowski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-92e03f8d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "condition": 100, - "full_name": "Sorrow2", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Franciszek Strzeja", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-06-20", - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-97dcb9ed", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Robertoos", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 62, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Robertoos", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-efe1b300", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-98e769d6", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK Hussars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kubagoat", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 58, - "macro_play": 60, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 58 - }, - "match_name": "Jakub Miernicki", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2007-08-04", - "nationality": "PL", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-83efd7e9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9a8bb526", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2012, - "assists": 0, - "team_id": null, - "team_name": "EloHell", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2012, - "assists": 0, - "team_id": null, - "team_name": "Kiedys Mialem Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "GF-Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Heroes Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Pulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Copenhagen Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Denial eSports EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Departed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Pulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team ROCCAT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Denial eSports EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "E-corp Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Inspire eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Team ROCCAT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Epsilon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Inspire eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Kinguin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "ThunderX3 Baskonia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "e-Meryci", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Kinguin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Wind and Rain", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Rogue EC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rogue EC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "AGO ROGUE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Misfits Premier", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "AF willhaben", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "condition": 100, - "full_name": "Woolite", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Paweł Pruski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1996-05-07", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865492883_Woolite.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9b064375", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "JD|XL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "StormMedia FMS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "condition": 100, - "full_name": "Mrozku", - "attributes": { - "laning": 61, - "mechanics": 62, - "discipline": 58, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 59 - }, - "match_name": "Adrian Skonieczny", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-12-24", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865483297_Mrozku.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-9df2110d", - "match_name": "Alan Szwarc", - "full_name": "Raticait", - "date_of_birth": "2009-02-17", - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9ecb047c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Ravioli Ravioli", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ACTINA PACT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Different Dimension", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Pyrsos Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Ravioli Ravioli", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "PRIDE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Hybrid Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Vikingekrig Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fluffy Tail", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SINNERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AvaTrade PixelPenny", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Secret Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Syrpy", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Kamil Pękacki", - "date_of_birth": "1998-07-01", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865389259_Syrpy.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-efe1b300", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ceb8f64e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Atleta Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MCES Italia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "STRAT Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Atletec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Yellow Stripes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Atletec", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Wild Panthers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BRUTE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Skillcamp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Barcząca Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "condition": 100, - "full_name": "Artoria", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 56, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Alexis Diebold", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-12-17", - "nationality": "FR", - "profile_image_url": "/player-photos/1779865487606_Artoria.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Lodis by Illuminar", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "TEAM GR1", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - } - ], - "id": "player-a3fe8d49", - "match_name": "Michał Szymiczek", - "full_name": "ShazQ", - "date_of_birth": "2002-03-14", - "nationality": "", - "profile_image_url": "/player-photos/1779865378123_ShazQ.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "nDurance Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "nDurance Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "French Flair", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Witchcraft", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZYB Esport", - "appearances": 0 - } - ], - "id": "player-b2a34f15", - "match_name": "Gabriël Rau", - "full_name": "Bwipo", - "date_of_birth": "1998-12-24", - "nationality": "", - "profile_image_url": "/player-photos/1779865462272_Bwipo.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c08cf697", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Kubyd's Syndrome", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "E-corp Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Katastrofa Awionetki", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Kubyd's Syndrome", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Szef+6", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Team Kinguin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "e-Meryci", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "H2k-Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Team Kinguin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Movistar Riders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rogue EC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "K1CK Neosurf", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Heretics Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "condition": 100, - "full_name": "IBo", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Marcin Lebuda", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1997-03-08", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865460551_IBo.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c7a1d0b3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "IMProve Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Z10 Spears", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "condition": 100, - "full_name": "Birkyy", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Kacper Niemiec", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2007-02-13", - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cfaf0a5a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "devils.one", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NRAX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team ESCA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "condition": 100, - "full_name": "Lee sang", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Patryk Kozłowski", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-08-26", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865384733_Lee_sang.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d5f18fff", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PRIDE ESCA Acad.", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GR1ND", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "piratesports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GLORE", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Acorderr", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Jakub Rożek", - "date_of_birth": "2002-07-28", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865390991_Acorderr.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dbc79639", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Oxygen Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Anonymo Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "condition": 100, - "full_name": "Sobek", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, - "macro_play": 58, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Patryk Sobczak", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": "/player-photos/1779865465352_Sobek__Patryk_Sobczak_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-dddb946b", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "condition": 100, - "full_name": "Goldmen", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Goldmen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-de866e2f", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "condition": 100, - "full_name": "Tenshi", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Tenshi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eac818ff", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "5 Ronin Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Silent Revolution", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SNOOZE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "condition": 100, - "full_name": "XnS", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 60, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Enes Hansu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-09-15", - "nationality": "TR", - "profile_image_url": "/player-photos/1779865466422_XnS.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f4650a26", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AliorBank Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Komil&Friends", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AliorBank Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AliorBank Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ankora Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Kiedyś Miałem Fun", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Opera GX KMF", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rebels Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Opera GX KMF", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "StormMedia FMS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Minemaciek", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 59, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Maciej Wicher", - "date_of_birth": "2004-07-16", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865488436_Minemaciek.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-76542a8b", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f72ff573", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Illuminar Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PDW", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Guasones", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bomba Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "condition": 100, - "full_name": "Odi11", - "attributes": { - "laning": 61, - "mechanics": 63, - "discipline": 56, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Adrian Kruk", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-11-05", - "nationality": "PL", - "profile_image_url": "/player-photos/1779865486142_Odi11.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ff90bb51", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Elementalist", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Elementalist", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cryptova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "condition": 100, - "full_name": "Kokos", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Dominik Krzoska", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/rol_players.json b/data/erls/players/rol_players.json deleted file mode 100644 index eb356b454..000000000 --- a/data/erls/players/rol_players.json +++ /dev/null @@ -1,6131 +0,0 @@ -{ - "name": "ROL Players", - "description": "ROL - 2026 Season", - "players": [ - { - "id": "player-0696415c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dynasty Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Join The Force", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NXT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meow Gaming Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RQS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ruzeh Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "condition": 100, - "full_name": "Ferrari", - "attributes": { - "laning": 57, - "mechanics": 54, - "discipline": 60, - "macro_play": 54, - "consistency": 53, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 61, - "mental_resilience": 58 - }, - "match_name": "Jeroen Cretier", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-11-18", - "nationality": "NL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-08f6765d", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "condition": 100, - "full_name": "Boye", - "attributes": { - "laning": 56, - "mechanics": 55, - "discipline": 56, - "macro_play": 58, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 54, - "champion_pool": 56, - "mental_resilience": 58 - }, - "match_name": "Boye", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0bee5510", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Owpi", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 57, - "mental_resilience": 62 - }, - "match_name": "Owpi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-10003555", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Northern Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RQS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Space", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Simon Bogaerts", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-10-08", - "nationality": "BE", - "profile_image_url": "/player-photos/1779861955864_Space__Simon_Bogaerts_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-10ff71f6", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "condition": 100, - "full_name": "Luncafoer", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Hendrik van Dijkhuizen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "LowLandLions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Echo Zulu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "New Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Aethra Esports Gold", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Domme Jongens Acad", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-16b75fca", - "match_name": "Tim Merckens", - "full_name": "Fortunate", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-16cd4c12", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Divernex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "AwerpiS", - "attributes": { - "laning": 60, - "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Sebastián Maslančík", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-12-17", - "nationality": "SK", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1d869a40", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Sampi", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Inside Games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Diversion Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KIA.eSuba Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Baumeef", - "attributes": { - "laning": 58, - "mechanics": 57, - "discipline": 64, - "macro_play": 55, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Marek Baumann", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-02-17", - "nationality": "CZ", - "profile_image_url": "/player-photos/1779861946861_Baumeef.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1e6ce5ce", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "E-nsane Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "R3volt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Enkil", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 61 - }, - "match_name": "Mateusz Krauz", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2005-10-06", - "nationality": "PL", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-f9cfb0f2", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2afb569e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Vanir", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Diamant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tan'i eSports CZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "condition": 100, - "full_name": "Pipibaat", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Pascal Haygarth", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-02-24", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861955660_Pipibaat.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2d8f71c0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Footprint Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "VfB eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "All for One Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "regnum4games", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "condition": 100, - "full_name": "Twendddy", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 57, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 57, - "champion_pool": 55, - "mental_resilience": 58 - }, - "match_name": "Luca Werner", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": "/player-photos/1779861911241_Twendddy.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2dfc0dd7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Aethra Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Glorious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSV Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PSV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inventive Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Inventive Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pertinax Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Pertinax Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SNOOZE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "condition": 100, - "full_name": "Franky", - "attributes": { - "laning": 56, - "mechanics": 57, - "discipline": 55, - "macro_play": 55, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 60, - "mental_resilience": 55 - }, - "match_name": "Frank Temminck", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-09-28", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861792404_Franky__Frank_Temminck_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2f3a4e09", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Phelan Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Viperio", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Barrage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "NVision Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NVision Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Phlox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "condition": 100, - "full_name": "Bbmuffin", - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Michael Smirnov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "IE", - "profile_image_url": "/player-photos/1779861910885_Bbmuffin.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-31e220c3", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "New Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Solwing Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Aethra Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "New Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KVM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KVM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "HEET", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Stookbeer", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Mick op den Akker", - "date_of_birth": "1999-12-04", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861969882_Stookbeer.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-897210b6", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3b7cd37e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SK Avarosa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Burger Flippers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "G2 Hel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SK Avarosa", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "G2 Hel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "G2 Hel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "G2 Hel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Yumeea", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Colomblbl", - "attributes": { - "laning": 62, - "mechanics": 61, - "discipline": 58, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Ève Monvoisin", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779861957123_Colomblbl.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3738562e", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3d4d10ac", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Spartans EU", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "condition": 100, - "full_name": "Zaycear", - "attributes": { - "laning": 60, - "mechanics": 57, - "discipline": 59, - "macro_play": 57, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 55, - "mental_resilience": 57 - }, - "match_name": "Lucas Aveline", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-3e71895a", - "match_name": "Luka Tadic", - "full_name": "Tali", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-403ca252", - "match_name": "Christian van As", - "full_name": "Dino", - "date_of_birth": "2007-11-25", - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-45fb2a81", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Soul's Heart", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "condition": 100, - "full_name": "Void", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 59, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 61, - "mental_resilience": 58 - }, - "match_name": "Mark Legrand", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-06", - "nationality": "BE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-468fb864", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KC Blue Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "KC Blue Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "condition": 100, - "full_name": "MathisV", - "attributes": { - "laning": 63, - "mechanics": 61, - "discipline": 58, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 61, - "mental_resilience": 59 - }, - "match_name": "Mathis Vannieuwenuyse", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2008-03-08", - "nationality": "FR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-47201b68", - "match_name": "Geert Kock", - "full_name": "Pekidelion", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4cd7c8f1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Oserv Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Angry Bats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Xoldiers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ENEMI3S", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Leões Porto Salvo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "condition": 100, - "full_name": "Ilyxøu", - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Iliane Bessa", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-12-22", - "nationality": "FR", - "profile_image_url": "/player-photos/1779861942864_Ilyx_u.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-546ea5f0", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "condition": 100, - "full_name": "Joekie", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 63, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Joekie", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-629f300f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AGEM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Mind Blue eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Mind Blue eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Mind Blue eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Sïgma", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Pierre Annet", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "BE", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-96e42b9a", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6947b83d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WeSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AceGaming Spades", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WeSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Howl Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "condition": 100, - "full_name": "Sprotte", - "attributes": { - "laning": 56, - "mechanics": 60, - "discipline": 58, - "macro_play": 55, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Dominik Koch", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-23", - "nationality": "DE", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-714dea8a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Spinto", - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 58, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Flavien Goffinet", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 63, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-11-10", - "nationality": "BE", - "profile_image_url": "/player-photos/1779861950641_Spinto.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-78613ecc", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Inside Games Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ERKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NARCIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maverix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "EXILE esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "condition": 100, - "full_name": "Dolis", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Petr Dolejš", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": "/player-photos/1779861809829_Dolis.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-92ecd9b8", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "devils.one Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "DOCISK", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Magaza Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Onion Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "condition": 100, - "full_name": "Sidav", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Sergiusz Liberek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-08-01", - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a322542f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Solary Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "G2 Hel", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vitality Rising Bees", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Rym", - "attributes": { - "laning": 61, - "mechanics": 62, - "discipline": 58, - "macro_play": 60, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 61 - }, - "match_name": "Rym Salloum", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "VE", - "profile_image_url": "/player-photos/1779861948017_Rym.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a5a1743e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pertinax Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "condition": 100, - "full_name": "MaiYuk", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Constantine de Jong", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2002-01-14", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861947262_MaiYuk.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a9bdb0b1", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CTRL PLAY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "STOPWATCH eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Emerald Prisoners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ukrainian Glory Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Emerald Prisoners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fantastic Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "condition": 100, - "full_name": "Smart", - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Rotyslav Sarnatsky", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "UA", - "profile_image_url": "/player-photos/1779861802660_Smart.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b038b2f0", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "AT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": null, - "team_name": "Pulse Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Team Refuse", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Millenium", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ToxicFalcons BE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Aethra Esports BE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "S1.Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Timeout Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ToxicFalcons BE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Aethra Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Timeout Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KVM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KVM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dutch Community Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "condition": 100, - "full_name": "Slyv3r", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Job Goossens", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1992-12-21", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861964866_Slyv3r.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b5a61ae9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "condition": 100, - "full_name": "Bisk", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Lars de Haan", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-b86911d2", - "match_name": "Yu Hao Chou", - "full_name": "ShadowDragon", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bc260053", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bitfix Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Monta Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "condition": 100, - "full_name": "BunnyBeast", - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Simon Nord", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c6c3c252", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "MCES Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meow Gaming Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "condition": 100, - "full_name": "Guertas", - "attributes": { - "laning": 59, - "mechanics": 64, - "discipline": 56, - "macro_play": 61, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 59 - }, - "match_name": "Romain Polo", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": "/player-photos/1779861947645_Guertas.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cfafaa98", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Magistra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Magistra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Vaevictis eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "CPH Flames", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Dragon Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GG Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Vaevictis eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "K1CK eSports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Penguins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dusty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Godsent", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Morning Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Bifrost", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "TeamOrangeGaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "condition": 100, - "full_name": "Cboi", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 57, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Casper Bo Simonsen", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "1998-08-19", - "nationality": "DK", - "profile_image_url": "/player-photos/1779861958811_Cboi.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dutch Community Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-d32d4735", - "match_name": "Lucas Mariano Rosario", - "full_name": "Luuuk", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d613ae5e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Warthox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Austrian Force", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Oserv Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Echo Zulu", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "FC Nantes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ViV Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "condition": 100, - "full_name": "Numandiel", - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Corentin Rostand", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-11-23", - "nationality": "FR", - "profile_image_url": "/player-photos/1779861950754_Numandiel.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-db44522d", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Corax Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ToxicFalcons BE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Valhalla Vikings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Northern Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RQS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The Bandits", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "condition": 100, - "full_name": "CaviaVampier", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "Joris Maas", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e2261e3e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Enix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RoX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dragon Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Hydras Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Apocalypse e-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NOVO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "condition": 100, - "full_name": "Jamie", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Evgeny Sorokin", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "UA", - "profile_image_url": "/player-photos/1779861813828_Jamie__Evgeny_Sorokin_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e25b100d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SAMCLAN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FoxFire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team UNiTY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zena Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Wuis", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 53, - "macro_play": 58, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 57 - }, - "match_name": "Luís Pereira", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2003-11-16", - "nationality": "PT", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-45502488", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e5257c41", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SUP Blaze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team GO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Joblife", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "condition": 100, - "full_name": "NuQ", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 57, - "macro_play": 63, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 59, - "champion_pool": 60, - "mental_resilience": 58 - }, - "match_name": "Erkmen Erdoğdu", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-12", - "nationality": "TR", - "profile_image_url": "/player-photos/1779861957605_NuQ.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7828672", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Exodia Elite", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "42 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anima", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fortress", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Fortress", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Dovendyr", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 58, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "match_name": "Malte Emil Olsen", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-e6e445de", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e8411189", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lotus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lupus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Macko Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "condition": 100, - "full_name": "FlickeR", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 57, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 59 - }, - "match_name": "Rodrigo de Oliveira", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-04-15", - "nationality": "PT", - "profile_image_url": "/player-photos/1779861961881_FlickeR__Rodrigo_de_Oliveira_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e8dae42f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Karolinerna", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Viperio", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Karolinerna", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "THUNDR Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lundqvist Lightside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nativz", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "A One Man Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ruddy Corporation", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "condition": 100, - "full_name": "Painful", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Kevin Druga", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-eb8d3e27", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "D-City Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Falcon E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Split Raiders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "WarKidZ E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "404 Multigaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dejice", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Domino esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Flayn Swiss Edition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Level Up esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "WarKidZ E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Anorthosis Famagusta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ERN ROAR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Olympiacos Alimou", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Riverside", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Auxesis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Sector One", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "One More Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Valiance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZennIT", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "condition": 100, - "full_name": "Hatred", - "attributes": { - "laning": 61, - "mechanics": 62, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Veselin Popov", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": "/player-photos/1779861805856_Hatred__Veselin_Popov_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ebcab0ce", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Once Upon A Team", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Egemen", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "Egemen Örek", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ed5ad285", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Echo Zulu Tribe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Glorious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LowLandLions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Phlox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Wizards", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Schalke 04", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KRC Genk Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "mCon esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "One Way Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team 7AM", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Seal", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 55, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Fabian de Lint", - "loan_listed": false, - "transfer_listed": false, - "date_of_birth": "2001-01-26", - "nationality": "NL", - "profile_image_url": "/player-photos/1779861969211_Seal__Fabian_de_Lint_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3088debc", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Aurora Celestials", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "PCS Athena", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-f2cb9b2b", - "match_name": "Xeliyi", - "full_name": "Xeliyi", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f9021ba0", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "condition": 100, - "full_name": "Dismas", - "attributes": { - "laning": 59, - "mechanics": 62, - "discipline": 56, - "macro_play": 61, - "consistency": 59, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 57, - "mental_resilience": 59 - }, - "match_name": "Dismas", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f9ee2cd5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Back2TheGame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frites Esports Club", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "condition": 100, - "full_name": "Wolorz", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 58, - "macro_play": 62, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Krzysztof Kasprzak", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-12-31", - "nationality": "PL", - "profile_image_url": "/player-photos/1779861960321_Wolorz.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fb63c394", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CPLAY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "regnum4games", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Aurora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dynasty", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "condition": 100, - "full_name": "Fishue", - "attributes": { - "laning": 58, - "mechanics": 54, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 54, - "champion_pool": 60, - "mental_resilience": 60 - }, - "match_name": "Niklas Kraft", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/tcl_players.json b/data/erls/players/tcl_players.json deleted file mode 100644 index 451bf3d35..000000000 --- a/data/erls/players/tcl_players.json +++ /dev/null @@ -1,6326 +0,0 @@ -{ - "name": "TCL Players", - "description": "TCL - 2026 Season", - "players": [ - { - "id": "player-007d4382", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Stalken", - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 62, - "macro_play": 65, - "consistency": 65, - "shotcalling": 63, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 63 - }, - "match_name": "Stalken", - "potential_base": 74, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "nerdRage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Hex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Dark Tigers Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "aNc Outplayed", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - } - ], - "contract_end": "2026-06-25", - "id": "player-024b1212", - "match_name": "Eid Alazmi", - "full_name": "Aklass", - "date_of_birth": "2001-06-01", - "nationality": "", - "profile_image_url": "/player-photos/1779823172811_Aklass.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-su-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Bursaspor Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "tcl-dark-passage", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Esports\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "LDLC OL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Team GO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LDLC OL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Gentle Mates", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team GO", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-da97809e", - "team_name": "Galions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gentle Mates", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "tcl-misa-esports", - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Galions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-misa-esports", - "team_name": "Misa Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 64, - "consistency": 65, - "shotcalling": 63, - "teamfighting": 62, - "champion_pool": 62, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 70, - "transfer_listed": false, - "stats.potential_base": "74", - "stats.transfer_listed": "false", - "stats.attributes.laning": "68", - "stats.potential_revealed": "71", - "stats.attributes.mechanics": "68", - "stats.attributes.discipline": "75", - "stats.attributes.macro_play": "65", - "stats.attributes.consistency": "80", - "stats.attributes.shotcalling": "68", - "stats.attributes.teamfighting": "65", - "stats.attributes.champion_pool": "70", - "stats.attributes.mental_resilience": "72", - "id": "player-031c31af", - "match_name": "Onurcan Aslan", - "full_name": "Ragner", - "date_of_birth": "2000-12-19", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823211923_Ragner.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-033b395f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Raen1", - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 63, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 - }, - "match_name": "Eren Parlak", - "loan_listed": false, - "contract_end": "2026-07-01", - "potential_base": 75, - "transfer_listed": false, - "date_of_birth": "2005-10-25", - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-team-phoenix", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-124b3ca7", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Hype", - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 66, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 67, - "mental_resilience": 70 - }, - "match_name": "Hype", - "potential_base": 77, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1a2ec39e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bmoooo", - "attributes": { - "laning": 60, - "mechanics": 55, - "discipline": 58, - "macro_play": 55, - "consistency": 55, - "shotcalling": 61, - "teamfighting": 55, - "champion_pool": 59, - "mental_resilience": 57 - }, - "match_name": "Mert Ali Orman", - "loan_listed": false, - "contract_end": "2026-07-01", - "potential_base": 65, - "transfer_listed": false, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-team-phoenix", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1ba5dc01", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Homyno Pulsia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Pulsia Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NORD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ramboot Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Venomcrest Serpents", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "UOL Sexy Edition", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Seneca", - "attributes": { - "laning": 56, - "mechanics": 62, - "discipline": 58, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 60 - }, - "match_name": "Simon Bucht", - "contract_end": "2026-06-25", - "potential_base": 69, - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": "/player-photos/1779823168741_Seneca.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-su-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1d424a4e", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Nawa", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 60, - "macro_play": 63, - "consistency": 63, - "shotcalling": 61, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Nawa", - "potential_base": 68, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2ad76443", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Beplush", - "attributes": { - "laning": 64, - "mechanics": 58, - "discipline": 61, - "macro_play": 60, - "consistency": 64, - "shotcalling": 63, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Beplush", - "potential_base": 70, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2ca57031", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "IWC Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Goskilla", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Szaty Bobra", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Verdant", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team Paradox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Neramin", - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 60, - "macro_play": 58, - "consistency": 58, - "shotcalling": 63, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Hasan Samarsın", - "contract_end": "2026-03-10", - "potential_base": 68, - "date_of_birth": "2001-08-04", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823209569_Neramin.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-dark-passage", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "NASR Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NASR Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beetle Juice", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ULF Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ozarox Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - } - ], - "contract_end": "2026-11-16", - "id": "player-2f019360", - "match_name": "Demir Demirsoy", - "full_name": "Grave", - "date_of_birth": "2005-01-01", - "nationality": "", - "profile_image_url": "/player-photos/1779823113727_Grave.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-ozarox-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-30d4d38d", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş.OH", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Victorious Ace", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Macro Maniacs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Oyun Hizmetleri", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Myth Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Mean", - "attributes": { - "laning": 54, - "mechanics": 58, - "discipline": 56, - "macro_play": 54, - "consistency": 54, - "shotcalling": 61, - "teamfighting": 57, - "champion_pool": 59, - "mental_resilience": 56 - }, - "match_name": "Ahmet Cihan Battal", - "contract_end": "2026-03-16", - "potential_base": 65, - "date_of_birth": "1999-04-27", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823111860_Mean.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-boostgate-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 41.4, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Always With Honor", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Bushido Wildcats", - "appearances": 0 - } - ], - "attributes": { - "laning": 66, - "mechanics": 70, - "discipline": 71, - "macro_play": 72, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "loan_listed": false, - "contract_end": "2026-06-25", - "market_value": 20.6, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 76, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-38c26301", - "match_name": "Eren Yücel", - "full_name": "Warner", - "date_of_birth": "2005-08-23", - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-bushido-wildcats", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-39987898", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Panathinaikos AC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Panathinaikos AC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ULF Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Joexy", - "attributes": { - "laning": 60, - "mechanics": 57, - "discipline": 64, - "macro_play": 60, - "consistency": 61, - "shotcalling": 63, - "teamfighting": 60, - "champion_pool": 63, - "mental_resilience": 62 - }, - "match_name": "Bedirhan Kalkan", - "loan_listed": false, - "contract_end": "2026-06-01", - "potential_base": 73, - "transfer_listed": false, - "date_of_birth": "2003-07-26", - "nationality": "TR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-dark-passage", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "loan_listed": false, - "contract_end": "2026-07-01", - "transfer_listed": false, - "id": "player-3f634687", - "match_name": "Berkay Çinpolat", - "full_name": "Podex", - "date_of_birth": "2003-04-09", - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-team-phoenix", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "SUP Blaze Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Cyberground", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "tcl-boostgate-esports", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Otter Side", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-pcific-esports", - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 61, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 61 - }, - "loan_listed": false, - "potential_base": 71, - "transfer_listed": false, - "id": "player-456675f0", - "match_name": "Aytekin Tekin", - "full_name": "Aytekn", - "date_of_birth": "2004-07-28", - "nationality": "TR", - "profile_image_url": "/player-photos/1779403069539_8gfi8v8frx.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 72000, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Valhalla Vikings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "HWA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "HWA Gaming", - "appearances": 18 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Istanbul Wildcats", - "appearances": 37 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Esports", - "appearances": 18 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 45 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Esports", - "appearances": 32 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Istanbul Wildcats", - "appearances": 75 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Z10", - "appearances": 113 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 22 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Bushido Wildcats", - "appearances": 37 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Misa Esports", - "appearances": 11 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "S2G Esports", - "appearances": 29 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Misa Esports", - "appearances": 8 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 58, - "macro_play": 66, - "consistency": 65, - "shotcalling": 63, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 61 - }, - "loan_listed": false, - "contract_end": "2026-07-01", - "market_value": 34500, - "potential_base": 69, - "transfer_listed": false, - "id": "player-52665c56", - "match_name": "Emre Akça", - "full_name": "Kofte", - "date_of_birth": "2001-05-15", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823221085_Kofte.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 3300, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ascendance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠Comanchero Gaming\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 64, - "macro_play": 65, - "consistency": 64, - "shotcalling": 63, - "teamfighting": 63, - "champion_pool": 62, - "mental_resilience": 63 - }, - "loan_listed": false, - "market_value": 20000, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 72, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-564a1818", - "match_name": "Resul Polat", - "full_name": "FireAscept", - "date_of_birth": "2006-09-20", - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": "", - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5666118e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "5 Ronin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "5 Ronin", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ULF Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kireas", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 64, - "macro_play": 62, - "consistency": 60, - "shotcalling": 63, - "teamfighting": 60, - "champion_pool": 62, - "mental_resilience": 62 - }, - "match_name": "Tunahan Kevioğlu", - "contract_end": "2026-03-10", - "potential_base": 70, - "date_of_birth": "2001-04-04", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823199396_Kireas.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "tcl-dark-passage", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 23400, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "R5 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 61, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-07-01", - "market_value": 11700, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 69, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-5f7e7ef8", - "match_name": "Yiğithan Yaşar", - "full_name": "SmallBugi", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-team-phoenix", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Aces High Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Aces High Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Huma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "HWA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "Low Priority", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Crew e-Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "Huma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "HWA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "ThunderX3 Baskonia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Royal Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Royal Bandits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Royal Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - } - ], - "contract_end": "2026-11-16", - "id": "player-67cd8bd2", - "match_name": "Anıl Işık", - "full_name": "HolyPhoenix", - "date_of_birth": "1997-06-02", - "nationality": "", - "profile_image_url": "/player-photos/1779823217888_HolyPhoenix.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-bushido-wildcats", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6fbc9197", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Carry", - "attributes": { - "laning": 64, - "mechanics": 60, - "discipline": 65, - "macro_play": 64, - "consistency": 62, - "shotcalling": 63, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 64 - }, - "match_name": "Mustafa Selim Yılmaz", - "loan_listed": false, - "contract_end": "2026-07-01", - "potential_base": 67, - "transfer_listed": false, - "date_of_birth": "2000-03-17", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823229432_Carry__Mustafa_Selim_Y_lmaz_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠Lynch Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Lynch Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠Underworld Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Project Conquerors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Underworld Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-su-esports", - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-boostgate-esports", - "team_name": "BoostGate Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 68, - "macro_play": 70, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 66 - }, - "loan_listed": false, - "contract_end": "2026-06-24", - "potential_base": 79, - "transfer_listed": false, - "id": "player-752adfb4", - "match_name": "Yağız Özvarna", - "full_name": "Dionelux", - "date_of_birth": "2006-08-24", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823101852_Dionelux.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-boostgate-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7c5d8bbe", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Elyandra Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "PCS Taran", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team MCES", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Lille Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Vespa", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Marley Benezech", - "contract_end": "2026-06-25", - "potential_base": 72, - "date_of_birth": "2002-12-02", - "nationality": "FR", - "profile_image_url": "/player-photos/1779823164462_Vespa.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-su-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-843e5af4", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Meto", - "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 - }, - "match_name": "Yağız Mert Tütüncüoğlu", - "contract_end": "2026-07-01", - "potential_base": 86, - "date_of_birth": "2005-02-13", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823215160_Meto.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "tcl-team-phoenix", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-84a4a487", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Forbidden Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kurama", - "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 62, - "macro_play": 60, - "consistency": 61, - "shotcalling": 61, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 58 - }, - "match_name": "Alp Eren Öğdem", - "loan_listed": false, - "contract_end": "2026-06-25", - "potential_base": 70, - "transfer_listed": false, - "date_of_birth": "2005-05-08", - "nationality": "TR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "tcl-bushido-wildcats", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Aurora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Aurora", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-team-phoenix", - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-07-01", - "potential_base": 69, - "transfer_listed": false, - "id": "player-8bdb0d29", - "match_name": "Dzhaner Feyzula", - "full_name": "Hecabrand", - "date_of_birth": "2005-12-24", - "nationality": "BG", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-team-phoenix", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "HWA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Istanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "HWA Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "İstanbul Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dragons Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Nocturne Gale", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Twareg Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Veni Vidi Vici", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-bushido-wildcats", - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-ozarox-esports", - "team_name": "Ozarox Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nocturne Gale", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 62, - "mechanics": 65, - "discipline": 62, - "macro_play": 65, - "consistency": 64, - "shotcalling": 63, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "potential_base": 74, - "transfer_listed": false, - "id": "player-8c60bca6", - "match_name": "Soner Kaya", - "full_name": "StarScreen", - "date_of_birth": "2001-01-20", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823104747_StarScreen.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-ozarox-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8eb5f967", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Stend", - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 54, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 57, - "champion_pool": 56, - "mental_resilience": 59 - }, - "match_name": "Stend", - "potential_base": 65, - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a1200f38", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Eternal Fire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Eternal Fire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Ruep", - "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 70, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 72 - }, - "match_name": "İlker Bilen", - "contract_end": "2026-07-01", - "potential_base": 79, - "date_of_birth": "2002-12-09", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823225256_Ruep.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "The Forbidden Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Crusaders", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ozarox Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 61, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 72, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-a304bf1e", - "match_name": "Bedirhan Çalişkan", - "full_name": "Cape", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-ozarox-esports", - "traits": [], - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Beşiktaş Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "5 Ronin Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "ERKO Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Hell Zerolag Esports\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NONAME", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "GLORE.FIFINE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "ZETA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-dark-passage", - "team_name": "Dark Passage", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 60, - "mechanics": 59, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 61, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 60 - }, - "loan_listed": false, - "contract_end": "2026-06-01", - "potential_base": 67, - "transfer_listed": false, - "id": "player-a92a7ef2", - "match_name": "Kerem Güzel", - "full_name": "Sangrod", - "date_of_birth": "2001-08-15", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823194525_Sangrod.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-dark-passage", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 44400, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "AURORA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Fenerbahçe Academy\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "⁠Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Ozarox Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 60, - "macro_play": 62, - "consistency": 62, - "shotcalling": 61, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "market_value": 24000, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 67, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-b2160bc5", - "match_name": "Fatih Kurşun", - "full_name": "Fade", - "date_of_birth": "2003-11-03", - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-ozarox-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Fenerbahçe Academy\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "IWC Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠Kim Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Kim Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-pcific-esports", - "team_name": "PCIFIC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-bushido-wildcats", - "team_name": "Bushido Wildcats", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 70, - "mechanics": 73, - "discipline": 70, - "macro_play": 72, - "consistency": 70, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 68 - }, - "loan_listed": false, - "contract_end": "2026-06-25", - "potential_base": 78, - "transfer_listed": false, - "id": "player-b85eaf08", - "match_name": "Salim Ersin Altıparmak", - "full_name": "Ersin", - "date_of_birth": "2004-03-09", - "nationality": "TR", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-bushido-wildcats", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 44400, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Juicy Ballers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Juicy Ballers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Senshi eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Zerance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "6GPA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GnG Amazigh", - "appearances": 0 - } - ], - "attributes": { - "laning": 60, - "mechanics": 64, - "discipline": 57, - "macro_play": 57, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 55 - }, - "loan_listed": false, - "contract_end": "2026-06-24", - "market_value": 24000, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 65, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-ba94a490", - "match_name": "Tomasz Gas", - "full_name": "Iwanan", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-boostgate-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AaB Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "neXtPlease! Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rift Sloths", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rift Sloths", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rift Sloths", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SNOOZE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "tcl-boostgate-esports", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Colossal Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Bulldog Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-su-esports", - "team_name": "SU Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "condition": 100, - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 64, - "macro_play": 66, - "consistency": 66, - "shotcalling": 63, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 65 - }, - "loan_listed": false, - "contract_end": "2026-06-25", - "potential_base": 74, - "transfer_listed": false, - "id": "player-c3094769", - "match_name": "Aleksan Zaruki", - "full_name": "Leks", - "date_of_birth": "2003-01-25", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823144166_Leks.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "tcl-su-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c9afca1f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Project Sinners", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "The Spawn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GRP Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Hell Zerolag Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Colossal Gaming", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Centu", - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 72, - "shotcalling": 67, - "teamfighting": 70, - "champion_pool": 72, - "mental_resilience": 68 - }, - "match_name": "Spyridon Pantelopoulos", - "loan_listed": false, - "contract_end": "2026-06-24", - "potential_base": 83, - "transfer_listed": false, - "date_of_birth": "2004-08-03", - "nationality": "GR", - "profile_image_url": null, - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "tcl-boostgate-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d8fdd88c", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Royal Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "IWC Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Looking for ORG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Jeyrus", - "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 68 - }, - "match_name": "Tunahan Durmaz", - "contract_end": "2026-06-25", - "potential_base": 79, - "date_of_birth": "2002-09-24", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823213204_Jeyrus.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "team_id": "tcl-bushido-wildcats", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 55200, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maestro V Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "ThunderFlash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LODIS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Forsaken", - "appearances": 0 - } - ], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 63 - }, - "loan_listed": false, - "contract_end": "2026-06-25", - "market_value": 28750, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 71, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-da2efcc9", - "match_name": "Maciej Charzyński", - "full_name": "Secrett", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-su-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 2650, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Team Cappadocia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "⁠RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Sangal Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "SUP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Papara SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SuperMassive Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "BBL Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 58, - "macro_play": 58, - "consistency": 56, - "shotcalling": 61, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 58 - }, - "loan_listed": false, - "contract_end": "2026-03-10", - "market_value": 15000, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 67, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-e970485e", - "match_name": "Yunus Emre Şahin", - "full_name": "KSAEZ", - "date_of_birth": "2000-11-12", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823204472_KSAEZ.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-dark-passage", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ee635235", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "SlowQ", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 66, - "macro_play": 62, - "consistency": 64, - "shotcalling": 57, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 66 - }, - "match_name": "SlowQ", - "potential_base": 72, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "tcl-misa-esports", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-efc0f6cd", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Boavista FC", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "EFIVE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "BWE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Odivelas Sports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Tan'i eSports CZ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Atruvia Münster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Otter Side", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Bicas", - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 56 - }, - "match_name": "Pedro Simões", - "contract_end": "2026-06-24", - "potential_base": 63, - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": "/player-photos/1779823105829_Bicas.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "team_id": "tcl-boostgate-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f0d328d6", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Creal", - "attributes": { - "laning": 65, - "mechanics": 67, - "discipline": 71, - "macro_play": 64, - "consistency": 65, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 67, - "mental_resilience": 68 - }, - "match_name": "Creal", - "potential_base": 75, - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "team_id": "tcl-bushido-wildcats", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "DP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "NASR Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beetle Juice", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NASR Turkey", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ozarox Esports", - "appearances": 0 - } - ], - "contract_end": "2026-11-16", - "id": "player-f0e036fb", - "match_name": "Mehmet Kaan Sönmez", - "full_name": "MonkaS", - "date_of_birth": "2001-10-26", - "nationality": "", - "profile_image_url": "/player-photos/1779823115651_MonkaS.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-ozarox-esports", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 39000, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Absolved", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Fenerbahçe", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Entropiq", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Joblife", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Nigma Galaxy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Joblife", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Team Phantasma", - "appearances": 0 - } - ], - "attributes": { - "laning": 75, - "mechanics": 76, - "discipline": 74, - "macro_play": 76, - "consistency": 76, - "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 72, - "mental_resilience": 75 - }, - "loan_listed": false, - "contract_end": "2026-06-25", - "market_value": 18000, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 83, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-f28272fb", - "match_name": "Mustafa Korkmaz", - "full_name": "RAMES", - "date_of_birth": "2004-01-05", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823151451_RAMES.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-su-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "SUP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Vodafone Giants", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SUP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "eu-lcs-l-astralis", - "team_name": "Astralis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Astralis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "FUT Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "BK ROG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-af25d742", - "team_name": "Karmine Corp Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-06974122", - "team_name": "Barcelona Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Barça eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Team BDS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "tcl-misa-esports", - "team_name": "Misa Esports", - "appearances": 0 - } - ], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 62, - "macro_play": 66, - "consistency": 66, - "shotcalling": 63, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 64 - }, - "loan_listed": false, - "contract_end": "2026-11-16", - "market_value": 0, - "stats.injury": "", - "stats.morale": "100", - "stats.fitness": "100", - "potential_base": 71, - "stats.condition": "100", - "transfer_listed": false, - "id": "player-f419fc4a", - "match_name": "Doğukan Balcı", - "full_name": "113", - "date_of_birth": "2004-08-12", - "nationality": "TR", - "profile_image_url": "/player-photos/1779823217008_113.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "tcl-misa-esports", - "traits": [], - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/players/vcs_players.json b/data/erls/players/vcs_players.json deleted file mode 100644 index ca43e55c0..000000000 --- a/data/erls/players/vcs_players.json +++ /dev/null @@ -1,4045 +0,0 @@ -{ - "name": "VCS Players", - "description": "VCS - 2026 Season", - "players": [ - { - "id": "player-0bbfbad5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MGN Box Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "D1VERSE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "condition": 100, - "full_name": "SkyK", - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Nguyễn Thái Kiệt", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-11-18", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-03-27", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825449002_SkyK.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-19fa967e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "condition": 100, - "full_name": "DINO Yashiro2", - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 63 - }, - "match_name": "DINO Yashiro2", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c5531fe", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Vikings Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "FTV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "FTV Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hyper Vortex Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "condition": 100, - "full_name": "Aomine", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Huỳnh Thiếc Tuấn", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-08-28", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825474527_Aomine.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "id": "player-1db8680c", - "match_name": "Nguyễn Thanh Nhã", - "full_name": "Haaland", - "date_of_birth": "2003-02-25", - "nationality": "", - "profile_image_url": "/player-photos/1779825757069_Haaland.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2499f4df", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Baby Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Secret Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HUTECH CHICKEN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Mila Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "condition": 100, - "full_name": "Nern", - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Đồng Nguyễn Tấn Lộc", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-10-22", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825462409_Nern.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2ac58114", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "New Generation", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ranking Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Secret Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Kairi", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 63, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Võ Văn Phi", - "date_of_birth": "2002-12-26", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825478643_Kairi.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-cd683e2d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2e6b37fe", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Callian", - "attributes": { - "laning": 62, - "mechanics": 61, - "discipline": 64, - "macro_play": 58, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "match_name": "Phạm Lê Cao Tấn", - "loan_listed": false, - "contract_end": "2028-11-16", - "transfer_listed": false, - "date_of_birth": "2006-05-17", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825453812_Callian.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-2b60138b", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2f226c7c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Baby Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "condition": 100, - "full_name": "SanSan", - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Lê Quốc Khánh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-11-16", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-12-10", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825431925_SanSan.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Cube Adonis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GIGABYTE Marines", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Hall of Fame", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rainbow Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rainbow Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - } - ], - "id": "player-3a004205", - "match_name": "Hứa Thành An", - "full_name": "Easylove", - "date_of_birth": "1999-11-26", - "nationality": "", - "profile_image_url": "/player-photos/1779825217341_Easylove.webp", - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-49258aa1", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "condition": 100, - "full_name": "RyuK2", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "RyuK2", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-5863cc32", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Genetic Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "condition": 100, - "full_name": "Solis", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Huỳnh Nguyễn Duy Thức", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-04-30", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825745106_Solis.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Esports", - "appearances": 0 - } - ], - "contract_end": "2028-11-16", - "id": "player-5d20721a", - "match_name": "Bùi Phan Thành Nhân", - "full_name": "NPC", - "date_of_birth": "2007-03-07", - "nationality": "", - "profile_image_url": "/player-photos/1779825438650_NPC.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Flash", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - } - ], - "contract_end": "2026-12-01", - "id": "player-665b801f", - "match_name": "Trần Bảo Quang", - "full_name": "Rayq", - "date_of_birth": "2004-03-12", - "nationality": "", - "profile_image_url": "/player-photos/1779825208159_Rayq.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-76475360", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Adonis Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "APOLLO GAMING", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "OverPower", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "APOLLO GAMING", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "APOLLO GAMING", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MGN Blue Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Hyper Vortex Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "29Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ngựa Hí Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "condition": 100, - "full_name": "Vin", - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Trần Hoài Vinh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-03-21", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825237600_Vin__Tr_n_Ho_i_Vinh_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Silent Storm Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-8b783618", - "match_name": "Trần Quốc Thanh", - "full_name": "TT", - "date_of_birth": "2002-11-20", - "nationality": "", - "profile_image_url": "/player-photos/1779825471567_TT__Tr_n_Qu_c_Thanh_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9029b334", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Genetic Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "condition": 100, - "full_name": "Charlington", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Lâm Tiểu Minh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-10-16", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825751297_Charlington.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-afc0ae8e", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MGN Blue Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MGN Blue Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-1347e217", - "team_name": "Team Orange Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "condition": 100, - "full_name": "RyuK2", - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "match_name": "Võ Hoàng Lê Khang", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 80, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-06-22", - "nationality": "AT", - "profile_image_url": "/player-photos/1779825223947_Ryuk__V__Ho_ng_L__Khang_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b4fbb17c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "condition": 100, - "full_name": "Nanaue", - "attributes": { - "laning": 61, - "mechanics": 58, - "discipline": 58, - "macro_play": 60, - "consistency": 58, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 56 - }, - "match_name": "Phùng Đức Tài", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-12-15", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-06-14", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825434612_Nanaue__Ph_ng___c_T_i_.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "contract_end": "2028-12-15", - "id": "player-b5f898f6", - "match_name": "Nguyễn Quang Tú", - "full_name": "BayMaxxx", - "date_of_birth": "2005-08-05", - "nationality": "", - "profile_image_url": "/player-photos/1779825454814_BayMaxxx.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b79de885", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "New Generation", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SBTC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "APOLLO GAMING", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Apex Predator", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ngựa Hí Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "condition": 100, - "full_name": "NtNt", - "attributes": { - "laning": 61, - "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "match_name": "Nguyễn Nhật Trường", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2000-01-20", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825230820_NtNt.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bad4f46c", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "condition": 100, - "full_name": "Nuna", - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 59 - }, - "match_name": "Lê Quốc Anh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-12-15", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-02-20", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825447354_Nuna.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bbbc0755", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "condition": 100, - "full_name": "Umi", - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 62, - "macro_play": 56, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Umi", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 65, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - } - ], - "loan_listed": false, - "contract_end": "2028-11-18", - "transfer_listed": false, - "id": "player-bddb2f0b", - "match_name": "Phan Hoàng Huy", - "full_name": "Hy", - "date_of_birth": "2006-01-11", - "nationality": "", - "profile_image_url": "/player-photos/1779825434104_Hy__Phan_Ho_ng_Huy_.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "contract_end": "2028-12-15", - "id": "player-ca3cf125", - "match_name": "Chau Đa Ra", - "full_name": "Dara2", - "date_of_birth": "2006-09-24", - "nationality": "", - "profile_image_url": "/player-photos/1779825458922_Dara2.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb03c2d9", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Vikings Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Đạt Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "V Gaming Adonis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "OverPower", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "V Gaming Adonis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Genius Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Luxury Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Luxury Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Baby Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Baby Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Whales", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Apex Predator", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "condition": 100, - "full_name": "Vit", - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 61, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Lê Hoài An", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2027-11-15", - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-02-19", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825242755_Vit__L__Ho_i_An_.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cb94c9ab", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Percent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Burst The Sky", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Elio", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Phạm Thạch Nhân Băng", - "contract_end": "2026-12-01", - "date_of_birth": "2000-11-07", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825223352_Elio.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-0b0654fe", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d1faeb23", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": null, - "team_name": "269 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "269 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": null, - "team_name": "e.Hub United", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "e.Hub United", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": null, - "team_name": "Ultimate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Cherry Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Ultimate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Vikings Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Cherry Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "OverPower", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "V Gaming Adonis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Rainbow Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Rainbow Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Mila Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Zin", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Nguyễn Tuấn Thọ", - "date_of_birth": "1999-01-11", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825755173_Zin.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-cf666c65", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d4675232", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Genetic Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "condition": 100, - "full_name": "GiaQui", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Nguyễn Gia Qui", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-03-21", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825749274_GiaQui.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e05e964a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "condition": 100, - "full_name": "J1n5", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Lê Đình Tấn", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-05-01", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825466763_J1n5.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e3cfd19b", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MGN Box Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "GAM Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "29Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "GenZ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ngựa Hí Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "condition": 100, - "full_name": "Emo", - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "match_name": "Nguyễn Thái Vinh", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-12-01", - "market_value": 0, - "potential_base": 68, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-15", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825212247_Emo.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e6186510", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Secret", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Tahahy", - "attributes": { - "laning": 60, - "mechanics": 56, - "discipline": 62, - "macro_play": 56, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 60 - }, - "match_name": "Trần Hoàng Huy", - "contract_end": "2029-04-20", - "date_of_birth": "2002-06-08", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825450927_Tahahy.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-12d8ddae", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e7486fa7", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CNJ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Saigon Buffalo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CNJ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Saigon Buffalo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CERBERUS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Warriors", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "condition": 100, - "full_name": "AisyL", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 63, - "macro_play": 63, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 - }, - "match_name": "Nguyễn Hoàng Phú", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-02-20", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825482643_AisyL.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e8bee72f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Saigon Buffalo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CNJ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Saigon Buffalo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CNJ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Saigon Buffalo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "MGN Vikings Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SN CyberCore Esports", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Shogun", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 - }, - "match_name": "Nguyễn Văn Huy", - "loan_listed": false, - "contract_end": "2027-11-15", - "transfer_listed": false, - "date_of_birth": "2004-03-31", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825247244_Shogun__Nguy_n_V_n_Huy_.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "team_id": "team-3cd254ed", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-e97dc6c3", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "MVK Academy", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "condition": 100, - "full_name": "Copper", - "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 61 - }, - "match_name": "Phùng Khánh Đồng", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2028-11-18", - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-29", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825427803_Copper.webp", - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ec0220d4", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Genetic Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "condition": 100, - "full_name": "SCP", - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "match_name": "Lê Tấn Tỷ", - "loan_listed": false, - "morale_core": {}, - "contract_end": "", - "market_value": 0, - "potential_base": 70, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-07-10", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825747169_SCP.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f2b17afb", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Bushido Wildcats", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Mila Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - } - ], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Virgo", - "attributes": { - "laning": 57, - "mechanics": 62, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 63, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "match_name": "Đào Châu Trí Cường", - "loan_listed": false, - "contract_end": "2026-12-01", - "potential_base": 71, - "transfer_listed": false, - "date_of_birth": "2005-09-21", - "nationality": "TR", - "profile_image_url": "/player-photos/1779825203972_Virgo____o_Ch_u_Tr__C__ng_.webp", - "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "team_id": "team-0b0654fe", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "loan_listed": false, - "contract_end": "2028-12-15", - "transfer_listed": false, - "id": "player-f71343e3", - "match_name": "Kiều Minh Huy", - "full_name": "666", - "date_of_birth": "2007-11-09", - "nationality": "", - "profile_image_url": "/player-photos/1779825438795_666__Ki_u_Minh_Huy_.webp", - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "D1VERSE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Be Legend Forever", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "ZEN Esports", - "appearances": 0 - } - ], - "id": "player-fb09c941", - "match_name": "Trần Gia Huy", - "full_name": "PTM", - "date_of_birth": "2002-08-11", - "nationality": "", - "profile_image_url": "/player-photos/1779825753135_PTM.webp", - "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "traits": [], - "contract_end": "", - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ffd216e5", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Original Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Original Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CyberCore Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "HUTECH CHICKEN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Saigon Dino", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "9Gaming Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "condition": 100, - "full_name": "Clyde", - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 64, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 62 - }, - "match_name": "Tô Hoàng Đăng Phương", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2029-04-20", - "market_value": 0, - "potential_base": 64, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2005-05-04", - "nationality": "VN", - "profile_image_url": "/player-photos/1779825443207_Clyde__T__Ho_ng___ng_Ph__ng_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/al-l_teams.json b/data/erls/teams/al-l_teams.json deleted file mode 100644 index 4df39d21b..000000000 --- a/data/erls/teams/al-l_teams.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "name": "AL-L Teams", - "description": "AL-L - 2026 Season", - "teams": [ - { - "id": "team-4b8187c4", - "name": "Super Stars", - "short_name": "SS", - "country": "", - "logo_url": "/teams-icons/ss.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "EG", - "id": "team-6019b0e7", - "name": "NextGeneration Esports", - "short_name": "NGE", - "logo_url": "/teams-icons/1779867485069_1n38almq3ev.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/al_teams.json b/data/erls/teams/al_teams.json deleted file mode 100644 index 67411f1cb..000000000 --- a/data/erls/teams/al_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "AL Teams", - "description": "AL - 2026 Season", - "teams": [ - { - "country": "TN", - "id": "team-0f68e76a", - "name": "JSK Esports", - "short_name": "JSK", - "logo_url": "/teams-icons/1779867977662_088op5mi10xg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-12ea162a", - "name": "One More Esports", - "short_name": "OME", - "country": "", - "logo_url": "/teams-icons/ome.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "TN", - "id": "team-1f166743", - "name": "GnG Amazigh", - "short_name": "GGA", - "logo_url": "/teams-icons/1779868161202_45hk6gadwrv.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "KR", - "id": "team-47ce6033", - "name": "FN Esports", - "short_name": "FNE", - "logo_url": "/teams-icons/1779814816869_FN_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "SA", - "id": "team-8829d0c3", - "name": "Dragons Esports", - "short_name": "DRA", - "logo_url": "/teams-icons/1779867921427_Dragons_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "EG", - "id": "team-90b5943e", - "name": "Anubis Gaming", - "short_name": "AG", - "logo_url": "/teams-icons/1779867779867_3nfti2kpg4h.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "SA", - "id": "team-c648abc2", - "name": "BAAM Esports", - "short_name": "BAM", - "logo_url": "/teams-icons/1779867747462_BAAM_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "EG", - "id": "team-e175ded9", - "name": "3BL Esports", - "short_name": "3BL", - "logo_url": "/teams-icons/1779868243026_2xjw2b4pbrd.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/cd_teams.json b/data/erls/teams/cd_teams.json deleted file mode 100644 index 30946b2b1..000000000 --- a/data/erls/teams/cd_teams.json +++ /dev/null @@ -1,375 +0,0 @@ -{ - "name": "CD Teams", - "description": "CD - 2026 Season", - "teams": [ - { - "country": "BR", - "id": "team-0dcb5849", - "name": "RMD Gaming", - "short_name": "RMD", - "logo_url": "/teams-icons/1779824064284_n2ljeqgn3gk.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "MX", - "id": "team-2ec1b6c9", - "name": "Estral Esports", - "short_name": "EST", - "logo_url": "/teams-icons/1779823978602_Estral_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "BR", - "id": "team-31ca2c75", - "name": "INTZ", - "short_name": "IZ", - "logo_url": "/teams-icons/1779823976749_INTZ.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-369e4620", - "name": "Vivo Keyd Stars Academy", - "short_name": "VKSA", - "country": "", - "logo_url": "/teams-icons/vksa.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-408c21b2", - "name": "paiN Gaming Academy", - "short_name": "PAINA", - "country": "", - "logo_url": "/teams-icons/paina.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "BR", - "id": "team-467d253d", - "name": "RED Academy", - "short_name": "REDA", - "logo_url": "/teams-icons/1779823967054_RED_Academy.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-4fec330a", - "name": "Ei Nerd Esports", - "short_name": "ENE", - "country": "", - "logo_url": "/teams-icons/ene.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-53c6789c", - "name": "KaBuM! Ilha das Lendas", - "short_name": "KIDL", - "country": "", - "logo_url": "/teams-icons/kidl.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#f5c211" - }, - "country": "BR", - "id": "team-603562ef", - "name": "7REX", - "short_name": "REX", - "logo_url": "/teams-icons/1779823703000_7REX.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-a49fd9c6", - "name": "Team Solid", - "short_name": "TS", - "country": "", - "logo_url": "/teams-icons/ts.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/ebl_teams.json b/data/erls/teams/ebl_teams.json deleted file mode 100644 index 63401cf6d..000000000 --- a/data/erls/teams/ebl_teams.json +++ /dev/null @@ -1,376 +0,0 @@ -{ - "name": "EBL Teams", - "description": "EBL - 2026 Season", - "teams": [ - { - "country": "HU", - "id": "team-1103bd5e", - "name": "Lenovo Legion Honvéd", - "short_name": "LLH", - "logo_url": "/teams-icons/1779860073712_Lenovo_Legion_Honv_d.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "BG", - "id": "team-3359999b", - "name": "TQ DURPA KASHLQ", - "short_name": "TQDK", - "logo_url": "/teams-icons/1779861297263_TQ_DURPA_KASHLQ.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "RS", - "id": "team-500fa635", - "name": "Washed Gaming", - "short_name": "WSH", - "logo_url": "/teams-icons/1779861688978_8zlob79byzm.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "DE", - "id": "team-8b9502f1", - "name": "Team Spawn Peek", - "short_name": "TSP", - "logo_url": "/teams-icons/1779860994685_Team_Spawn_Peek.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "BG", - "id": "team-aa50d684", - "name": "Magaza Esports", - "short_name": "MAG", - "logo_url": "/teams-icons/1779860642612_Magaza_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "HR", - "id": "team-b09886df", - "name": "The Secret Club", - "short_name": "TSC", - "logo_url": "/teams-icons/1779861063250_The_Secret_Club.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "SI", - "id": "team-cd386f74", - "name": "SPIKE Syndicate", - "short_name": "SPK", - "logo_url": "/teams-icons/1779860920700_SPIKE_Syndicate.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "RS", - "id": "team-db2b783a", - "name": "Lupus Esports", - "short_name": "LUP", - "logo_url": "/teams-icons/1779860552082_Lupus_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "RS", - "id": "team-dc2f50f2", - "name": "Partizan Sangal", - "short_name": "PAR", - "logo_url": "/teams-icons/1779860697080_Partizan_Sangal.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "HR", - "id": "team-de9656fe", - "name": "Croatian Flair", - "short_name": "CRO", - "logo_url": "/teams-icons/1779859560559_Croatian_Flair.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/hll_teams.json b/data/erls/teams/hll_teams.json deleted file mode 100644 index 759ddbd9d..000000000 --- a/data/erls/teams/hll_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "HLL Teams", - "description": "HLL - 2026 Season", - "teams": [ - { - "country": "Greece", - "id": "team-2e0c08a9", - "name": "WLGaming Esports", - "short_name": "WLG", - "logo_url": "/teams-icons/1779874010409_WLGaming_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-34f5f8b3", - "name": "Team Insidious", - "short_name": "INS", - "logo_url": "/teams-icons/1779874102707_Team_Insidious.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-608ecbe2", - "name": "Team Phantasma", - "short_name": "PHA", - "logo_url": "/teams-icons/1779873997090_Team_Phantasma.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-86bb25d6", - "name": "The ParadOx", - "short_name": "PAR", - "logo_url": "/teams-icons/1779873983031_The_ParadOx.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-8aeeec01", - "name": "Spartans EU", - "short_name": "SEU", - "country": "", - "logo_url": "/teams-icons/seu.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-92da5b60", - "name": "GOAL", - "short_name": "GOAL", - "logo_url": "/teams-icons/1779874040028_GOAL.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-b2dec67c", - "name": "ALMO Players", - "short_name": "ALMO", - "logo_url": "/teams-icons/1779874045523_ALMO_Players.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Greece", - "id": "team-ca24ae43", - "name": "Gamespace Mediterranean College Esports", - "short_name": "GAME", - "logo_url": "/teams-icons/1779874036659_Gamespace_Mediterranean_College_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/hm_teams.json b/data/erls/teams/hm_teams.json deleted file mode 100644 index 902b5f6ae..000000000 --- a/data/erls/teams/hm_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "HM Teams", - "description": "HM - 2026 Season", - "teams": [ - { - "country": "Slovakia", - "id": "team-193151e6", - "name": "Nightbirds", - "short_name": "NBI", - "logo_url": "/teams-icons/1779873219972_Nightbirds.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Czech Republic", - "id": "team-19466153", - "name": "CITA Kaizen", - "short_name": "CTK", - "logo_url": "/teams-icons/1779873241648_CITA_Kaizen.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Czech Republic", - "id": "team-2bda20fb", - "name": "EXILE esports", - "short_name": "EXL", - "logo_url": "/teams-icons/1779873228469_EXILE_esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Czech Republic", - "id": "team-5a2933ca", - "name": "eSuba", - "short_name": "ESU", - "logo_url": "/teams-icons/1779873639726_eSuba.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Poland", - "id": "team-5bf73fd8", - "name": "Onion Team", - "short_name": "ONT", - "logo_url": "/teams-icons/1779873270966_Onion_Team.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Poland", - "id": "team-c01f7ad8", - "name": "Meavedron", - "short_name": "MEV", - "logo_url": "/teams-icons/1779873210506_Meavedron.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Czech Republic", - "id": "team-da129d80", - "name": "BRUTE", - "short_name": "BRT", - "logo_url": "/teams-icons/1779873255925_BRUTE.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Czech Republic", - "id": "team-df25d69f", - "name": "Bohemian Guardians", - "short_name": "BHG", - "logo_url": "/teams-icons/1779873265669_Bohemian_Guardians.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lckcl_teams.json b/data/erls/teams/lckcl_teams.json deleted file mode 100644 index 84667c775..000000000 --- a/data/erls/teams/lckcl_teams.json +++ /dev/null @@ -1,385 +0,0 @@ -{ - "name": "LCKCL Teams", - "description": "LCKCL - 2026 Season", - "teams": [ - { - "id": "lck-cl-bnk-fearx-youth", - "logo_url": "/teams-icons/bnk-fearx-youth.webp", - "data.country": "KR", - "name": "BNK FEARX Youth", - "short_name": "BNK.Y", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-hanjin-brion-challengers", - "country": "KR", - "logo_url": "/teams-icons/hanjin-brion-challengers.webp", - "name": "HANJIN BRION CHALLENGERS", - "short_name": "BRO.C", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-ns-esports-academy", - "logo_url": "/teams-icons/ns-esports-academy.webp", - "data.country": "KR", - "name": "NS Esports Academy", - "short_name": "NS.EA", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-kt-rolster-challengers", - "country": "South Korea", - "logo_url": "/teams-icons/1779791569955_KT_Rolster_Challengers.webp", - "data.country": "KR", - "name": "KT Rolster Challengers", - "short_name": "KT.C", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-hle-challengers", - "logo_url": "/teams-icons/hle-challengers.webp", - "data.country": "KR", - "name": "HLE Challengers", - "short_name": "HLE.C", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-dplus-kia-challengers", - "logo_url": "/teams-icons/dplus-kia-challengers.webp", - "data.country": "KR", - "name": "Dplus KIA Challengers", - "short_name": "DK.C", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-t1-esports-academy", - "country": "South Korea", - "logo_url": "/teams-icons/1779792985833_T1_Esports_Academy.webp", - "data.country": "KR", - "name": "T1 Esports Academy", - "short_name": "T1.EA", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-gen-g-global-academy", - "logo_url": "/teams-icons/gen-g-global-academy.webp", - "data.country": "KR", - "name": "Gen.G Global Academy", - "short_name": "GEN.GA", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-kiwoon-drx-challengers", - "logo_url": "/teams-icons/kiwoon-drx-challengers.webp", - "data.country": "KR", - "name": "Kiwoon DRX Challengers", - "short_name": "KRX.C", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lck-cl-dn-soopers-challengers", - "logo_url": "/teams-icons/dn-soopers-challengers.webp", - "data.country": "KR", - "name": "DN SOOpers Challengers", - "short_name": "DNS.C", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/ldl_teams.json b/data/erls/teams/ldl_teams.json deleted file mode 100644 index 0dcc85580..000000000 --- a/data/erls/teams/ldl_teams.json +++ /dev/null @@ -1,375 +0,0 @@ -{ - "name": "LDL Teams", - "description": "LDL - 2026 Season", - "teams": [ - { - "id": "team-0c76150c", - "name": "Royal Club", - "short_name": "ROY", - "country": "", - "logo_url": "/teams-icons/roy.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-13997011", - "name": "Oh My God Academy", - "short_name": "OMG.A", - "country": "", - "logo_url": "/teams-icons/omga.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-37ced0d1", - "name": "LGD Gaming Young Team", - "short_name": "LGD.Y", - "country": "", - "logo_url": "/teams-icons/lgdy.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-8d56ae81", - "name": "Weibo Gaming Youth Team", - "short_name": "WBG.Y", - "country": "", - "logo_url": "/teams-icons/wbgy.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#505fce", - "secondary": "#b15cb2" - }, - "id": "team-94b3267f", - "name": "LNG Academy", - "short_name": "LNG.A", - "country": "", - "logo_url": "/teams-icons/lnga.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#fb0e0e" - }, - "id": "team-a73f2996", - "name": "Team WE Academy", - "short_name": "TWE.A", - "country": "", - "logo_url": "/teams-icons/wea.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-bf6805f5", - "name": "Bilibili Gaming Junior", - "short_name": "BLG.J", - "country": "", - "logo_url": "/teams-icons/blgj.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-c6cb03ca", - "name": "ThunderTalk Gaming Young", - "short_name": "TT.Y", - "country": "", - "logo_url": "/teams-icons/tty.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-edb9580a", - "name": "Top Esports Challenger", - "short_name": "TES.C", - "country": "", - "logo_url": "/teams-icons/tesc.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-f97df98e", - "name": "Anyone's Legend.Young", - "short_name": "AL.Y", - "country": "", - "logo_url": "/teams-icons/aly.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/les_teams.json b/data/erls/teams/les_teams.json deleted file mode 100644 index c5b103e1a..000000000 --- a/data/erls/teams/les_teams.json +++ /dev/null @@ -1,416 +0,0 @@ -{ - "name": "LES Teams", - "description": "LES - 2026 Season", - "teams": [ - { - "id": "team-8baee3fd", - "city": "", - "form": [], - "name": "Movistar KOI Fénix", - "colors": { - "primary": "#3e3be8", - "secondary": "#9e4ce1" - }, - "academy": null, - "country": "ES", - "finance": 2496829, - "history": [], - "logo_url": "/teams-icons/movistar-koi-f-nix.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 409, - "short_name": "MKF", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1248414, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 499366, - "financial_ledger": [], - "scrim_reputation": 40, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Movistar KOI Fénix Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-f10b156f", - "city": "", - "form": [], - "name": "Team Heretics Academy", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "ES", - "finance": 1999037, - "history": [], - "logo_url": "/teams-icons/team-heretics-academy.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 316, - "short_name": "THA", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 999518, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 399807, - "financial_ledger": [], - "scrim_reputation": 31, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Team Heretics Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-06974122", - "city": "", - "form": [], - "name": "Barcelona Esports", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "ES", - "finance": 1739827, - "history": [], - "logo_url": "/teams-icons/barcelona-esports.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 302, - "short_name": "BAR", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 869914, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 347965, - "financial_ledger": [], - "scrim_reputation": 30, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Barcelona Esports Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-5d7b3ec4", - "city": "", - "form": [], - "name": "Falke Esports", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "ES", - "finance": 2693453, - "history": [], - "logo_url": "/teams-icons/falke-esports.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 228, - "short_name": "FLK", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1346726, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 538691, - "financial_ledger": [], - "scrim_reputation": 22, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Falke Esports Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-129835c5", - "city": "", - "form": [], - "name": "UCAM Esports", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "ES", - "finance": 2729120, - "history": [], - "logo_url": "/teams-icons/ucam-esports.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 208, - "short_name": "UCAM", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1364560, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 545824, - "financial_ledger": [], - "scrim_reputation": 20, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "UCAM Esports Arena", - "stadium_capacity": 1500 - }, - { - "logo_url": "/teams-icons/giantx-itero.webp", - "id": "team-854f6893", - "name": "GiantX Itero", - "short_name": "GXI", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-d0d82673", - "city": "", - "form": [], - "name": "LUA Gaming", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "ES", - "finance": 3189278, - "history": [], - "logo_url": "/teams-icons/lua-gaming.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 303, - "short_name": "LUA", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1594639, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 637856, - "financial_ledger": [], - "scrim_reputation": 30, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "LUA Gaming Arena", - "stadium_capacity": 1500 - }, - { - "logo_url": "/teams-icons/ub-alma-mater.webp", - "id": "team-ac846213", - "name": "UB Alma Mater", - "short_name": "UAM", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lfl-l_teams.json b/data/erls/teams/lfl-l_teams.json deleted file mode 100644 index 20d5a2e69..000000000 --- a/data/erls/teams/lfl-l_teams.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "name": "LFL-L Teams", - "description": "LFL-L - 2026 Season", - "teams": [ - { - "id": "team-d78a4aff", - "city": "", - "form": [], - "name": "French Flair", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 3450921, - "history": [], - "logo_url": "/teams-icons/1778855370857_855golw840h.png", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 317, - "short_name": "FF", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1725460, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 690184, - "financial_ledger": [], - "scrim_reputation": 31, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "French Flair Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-68015282", - "name": "Lausanne-Sport Esports", - "short_name": "LSE", - "country": "", - "logo_url": null, - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-a255d692", - "name": "BK ROG Esports", - "short_name": "BKR", - "country": "", - "logo_url": null, - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-c9435bbd", - "name": "Lille Esport", - "short_name": "LLE", - "country": "", - "logo_url": null, - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-cc07a0ef", - "name": "Project Conquerors", - "short_name": "PCQ", - "country": "", - "logo_url": null, - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lfl_teams.json b/data/erls/teams/lfl_teams.json deleted file mode 100644 index be29fcbcb..000000000 --- a/data/erls/teams/lfl_teams.json +++ /dev/null @@ -1,547 +0,0 @@ -{ - "name": "LFL Teams", - "description": "LFL - 2026 Season", - "teams": [ - { - "id": "team-af25d742", - "city": "", - "form": [], - "name": "Karmine Corp Blue", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 2865211, - "history": [], - "logo_url": "/teams-icons/karmine-corp-blue.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 320, - "short_name": "KCB", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1432606, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 573042, - "financial_ledger": [], - "scrim_reputation": 32, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Karmine Corp Blue Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-c12fef91", - "city": "", - "form": [], - "name": "Ici Japon Corp. Esport", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 2172174, - "history": [], - "logo_url": "/teams-icons/ici-japon-corp-esport.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 377, - "short_name": "ICI JAPON", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1086087, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 434435, - "financial_ledger": [], - "scrim_reputation": 37, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Ici Japon Corp. Esport Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-8f3d532a", - "city": "", - "form": [], - "name": "Vitality Academy", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 3241233, - "history": [], - "logo_url": "/teams-icons/vitality-academy.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 201, - "short_name": "VITALITY", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1620616, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 648247, - "financial_ledger": [], - "scrim_reputation": 20, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Vitality Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-0f9010b5", - "city": "", - "form": [], - "name": "TLN Pirates", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 1685291, - "history": [], - "logo_url": "/teams-icons/tln-pirates.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 394, - "short_name": "TP", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 842646, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 337058, - "financial_ledger": [], - "scrim_reputation": 39, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "TLN Pirates Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-da97809e", - "city": "", - "form": [], - "name": "Galions", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 1529117, - "history": [], - "logo_url": "/teams-icons/1778855456311_5vpbeeo6yvg.png", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 396, - "short_name": "GALIONS", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 764558, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 305823, - "financial_ledger": [], - "scrim_reputation": 39, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Galions Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-012b64d1", - "city": "", - "form": [], - "name": "Solary", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 2063472, - "history": [], - "logo_url": "/teams-icons/1779566088053_vazx3ts10m.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 369, - "short_name": "SOLARY", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1031736, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 412694, - "financial_ledger": [], - "scrim_reputation": 36, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Solary Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-ab04f649", - "city": "", - "form": [], - "name": "Joblife", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 1854941, - "history": [], - "logo_url": "/teams-icons/1779566068407_356qsp6o91g.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 442, - "short_name": "TJL", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 927470, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 370988, - "financial_ledger": [], - "scrim_reputation": 44, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "JOblife Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-f8f7f78d", - "city": "", - "form": [], - "name": "ZYB Esport", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 1927602, - "history": [], - "logo_url": "/teams-icons/1779566074431_gub0cwybsfw.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 310, - "short_name": "ZYB", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 963801, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 385520, - "financial_ledger": [], - "scrim_reputation": 31, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "ZYB Esport Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-ed48a04c", - "name": "Esprit Shōnen", - "short_name": "ESN", - "country": "", - "logo_url": "/teams-icons/1779565729267_ddqd3zkt4sh.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-92b46fef", - "city": "", - "form": [], - "name": "Skillcamp", - "colors": { - "primary": "#bba330", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "FR", - "finance": 2324580, - "history": [], - "logo_url": "/teams-icons/1778855865564_sjtolq8ewb.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 208, - "short_name": "SKILLCAMP", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1162290, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 464916, - "financial_ledger": [], - "scrim_reputation": 20, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Skillcamp Arena", - "stadium_capacity": 1500 - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lit_teams.json b/data/erls/teams/lit_teams.json deleted file mode 100644 index 70ff372b2..000000000 --- a/data/erls/teams/lit_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "LIT Teams", - "description": "LIT - 2026 Season", - "teams": [ - { - "country": "IT", - "id": "team-3ee8399a", - "name": "TITANS", - "short_name": "TITA", - "logo_url": "/teams-icons/1779870920339_TITANS.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-763ea26a", - "name": "Aeterna Esports", - "short_name": "EET", - "logo_url": "/teams-icons/1779871062306_3lpe8juhpms.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-78e0cf99", - "name": "Colossal Gaming", - "short_name": "COL", - "logo_url": "/teams-icons/1779870982554_9hhkf04aaqd.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-a272304b", - "name": "StoneHenge Esports", - "short_name": "STON", - "logo_url": "/teams-icons/1779870928130_StoneHenge_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-d4e0b415", - "name": "EKO Esports", - "short_name": "EKO", - "logo_url": "/teams-icons/1779870897820_EKO_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-d6fcaa33", - "name": "Zena Esports", - "short_name": "ZES", - "logo_url": "/teams-icons/1779870913156_Zena_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-d8e80ef5", - "name": "HMBLE", - "short_name": "HBL", - "logo_url": "/teams-icons/1779870868288_HMBLE.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "IT", - "id": "team-dacb4a17", - "name": "GMBLERS Esports", - "short_name": "GMB", - "logo_url": "/teams-icons/1779870904402_GMBLERS_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/ljl-l_teams.json b/data/erls/teams/ljl-l_teams.json deleted file mode 100644 index e75ad7460..000000000 --- a/data/erls/teams/ljl-l_teams.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "name": "LJL-L Teams", - "description": "LJL-L - 2026 Season", - "teams": [ - { - "id": "team-f711240c", - "name": "NOVEX", - "short_name": "NOV", - "country": "", - "logo_url": "/teams-icons/nov.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#c01c28" - }, - "id": "team-ffab9be7", - "name": "Inferno Drive Tokyo", - "short_name": "TOK", - "country": "", - "logo_url": "/teams-icons/1779564001633_ef5i0m216zb.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/ljl_teams.json b/data/erls/teams/ljl_teams.json deleted file mode 100644 index cae43f460..000000000 --- a/data/erls/teams/ljl_teams.json +++ /dev/null @@ -1,376 +0,0 @@ -{ - "name": "LJL Teams", - "description": "LJL - 2026 Season", - "teams": [ - { - "colors": { - "primary": "#1c71d8", - "secondary": "#ffffff" - }, - "id": "team-15282d93", - "name": "DetonatioN FocusMe Academy", - "short_name": "DFM-A", - "country": "", - "logo_url": "/teams-icons/1779715144298_67f9j8fsqvx.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-208c3750", - "name": "L Guide Gaming", - "short_name": "LGG", - "country": "", - "logo_url": "/teams-icons/lgg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-5059567a", - "name": "VARREL YOUTH", - "short_name": "VAYO", - "country": "", - "logo_url": "/teams-icons/vayo.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-5f5b57be", - "name": "Fast8", - "short_name": "F8", - "country": "", - "logo_url": "/teams-icons/1779715140148_0pai1halddd.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-899e9d2f", - "name": "Yang Yang Gaming", - "short_name": "YYG", - "country": "", - "logo_url": "/teams-icons/yyg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-8d244b3a", - "name": "RAYN Clocks", - "short_name": "CLO", - "country": "", - "logo_url": "/teams-icons/1779715147110_sgjylk4v0t.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-b6b8bfae", - "name": "FENNEL", - "short_name": "FEN", - "country": "", - "logo_url": "/teams-icons/fen.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-c1e9468d", - "name": "Rising Gaming", - "short_name": "RIS", - "country": "", - "logo_url": "/teams-icons/ris.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-e82d1866", - "name": "New Meta", - "short_name": "NEW", - "country": "", - "logo_url": "/teams-icons/new.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-e977febc", - "name": "Uwinks", - "short_name": "UWI", - "country": "", - "logo_url": "/teams-icons/uwi.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lplol_teams.json b/data/erls/teams/lplol_teams.json deleted file mode 100644 index 92a4453a8..000000000 --- a/data/erls/teams/lplol_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "LPLOL Teams", - "description": "LPLOL - 2026 Season", - "teams": [ - { - "id": "team-258078d0", - "name": "Francesinhas", - "short_name": "FRAN", - "country": "", - "logo_url": "/teams-icons/fran.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-273eca26", - "name": "ZeroZone Gaming", - "short_name": "YYG", - "country": "", - "logo_url": "/teams-icons/yyg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-527a1974", - "name": "Dream Esports", - "short_name": "FEN", - "country": "", - "logo_url": "/teams-icons/fen.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-6b8fef2d", - "name": "GTZ Esports", - "short_name": "F8", - "country": "", - "logo_url": "/teams-icons/1779863072825_imkcn06g8x.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-81f175c5", - "name": "Otter Side", - "short_name": "VAYO", - "country": "", - "logo_url": "/teams-icons/vayo.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-8baac22a", - "name": "Bubliki", - "short_name": "CLO", - "country": "", - "logo_url": "/teams-icons/clo.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-a0a25c12", - "name": "Ronaldo Team", - "short_name": "INF", - "country": "", - "logo_url": "/teams-icons/inf.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-cd7def0c", - "name": "Crusaders", - "short_name": "DFMA", - "country": "", - "logo_url": "/teams-icons/dfma.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lrn_teams.json b/data/erls/teams/lrn_teams.json deleted file mode 100644 index cda891ed6..000000000 --- a/data/erls/teams/lrn_teams.json +++ /dev/null @@ -1,308 +0,0 @@ -{ - "name": "LRN Teams", - "description": "LRN - 2026 Season", - "teams": [ - { - "id": "lrn-ncg-esports", - "colors": { - "secondary": "#ff0002" - }, - "logo_url": "/teams-icons/ncg-esports.webp", - "data.country": "Mexico", - "name": "NCG Esports", - "short_name": "NCG", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-sdm-tigres", - "colors": { - "primary": "#ffb400", - "secondary": "#2402ff" - }, - "country": "MX", - "logo_url": "/teams-icons/sdm-tigres.webp", - "data.country": "MX", - "name": "SDM Tigres", - "short_name": "SDM", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-polar-squad-esport", - "logo_url": "/teams-icons/polar-squad-esport.webp", - "data.country": "MX", - "name": "Polar Squad Esport", - "short_name": "PLS", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-zeu5-esport", - "country": "Colombia", - "logo_url": "/teams-icons/zeu5-esport.webp", - "data.country": "Colombia", - "name": "Zeu5 Esport", - "short_name": "Z5", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-g3v-e-sports", - "colors": { - "secondary": "#792ddb" - }, - "country": "Colombia", - "logo_url": "/teams-icons/g3v-e-sports.webp", - "data.country": "Colombia", - "name": "G3V E-sports", - "short_name": "G3V", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-fuego", - "colors": { - "primary": "#ff6d1c", - "secondary": "#310d00" - }, - "country": "Colombia", - "logo_url": "/teams-icons/fuego.webp", - "data.country": "Colombia", - "data.team_kind": "Main", - "name": "Fuego", - "short_name": "FUE", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-lyon-academy", - "colors": { - "primary": "#deac7f" - }, - "logo_url": "/teams-icons/lyon-academy.webp", - "data.country": "Mexico", - "name": "LYON Academy", - "short_name": "LYON", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrn-icon-esports", - "country": "MX", - "logo_url": "/teams-icons/icon-esports.webp", - "data.country": "MX", - "name": "Icon Esports", - "short_name": "ICON", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/lrs_teams.json b/data/erls/teams/lrs_teams.json deleted file mode 100644 index fe80ebc9d..000000000 --- a/data/erls/teams/lrs_teams.json +++ /dev/null @@ -1,307 +0,0 @@ -{ - "name": "LRS Teams", - "description": "LRS - 2026 Season", - "teams": [ - { - "id": "lrs-volticons", - "colors": { - "primary": "#7f4fb3", - "secondary": "#4b3593" - }, - "country": "UY", - "logo_url": "/teams-icons/volticons.webp", - "data.country": "UY", - "name": "Volticons", - "short_name": "VTC", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-maze-gaming", - "colors": { - "primary": "#101211", - "secondary": "#20982d" - }, - "country": "CL", - "logo_url": "/teams-icons/maze-gaming.webp", - "data.country": "CL", - "name": "Maze Gaming", - "short_name": "MAZ", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-9z-globant", - "colors": { - "primary": "#ffffff" - }, - "country": "AR", - "logo_url": "/teams-icons/9z-globant.webp", - "data.country": "AR", - "name": "9z Globant", - "short_name": "9ZG", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-tu-pap-esports", - "colors": { - "secondary": "#fc7605" - }, - "country": "PE", - "logo_url": "/teams-icons/tu-pap-esports.webp", - "data.country": "PE", - "name": "Tu Papá Esports", - "short_name": "TPA", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-golden-lions", - "country": "Peru", - "logo_url": "/teams-icons/golden-lions.webp", - "data.country": "Peru", - "name": "Golden Lions", - "short_name": "GLE", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-the-new-kings", - "country": "AR", - "logo_url": "/teams-icons/the-new-kings.webp", - "data.country": "AR", - "name": "The New Kings", - "short_name": "TNK", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-malvinas-gaming", - "colors": { - "secondary": "#129ebf" - }, - "logo_url": "/teams-icons/malvinas-gaming.webp", - "data.country": "Argentina", - "name": "Malvinas Gaming", - "short_name": "MVG", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "lrs-seven-dark", - "colors": { - "primary": "#000036", - "secondary": "#0001dd" - }, - "country": "CL", - "logo_url": "/teams-icons/seven-dark.webp", - "data.country": "CL", - "name": "Seven Dark", - "short_name": "7D", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/nacl-l_teams.json b/data/erls/teams/nacl-l_teams.json deleted file mode 100644 index db4e35cbd..000000000 --- a/data/erls/teams/nacl-l_teams.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "name": "NACL-L Teams", - "description": "NACL-L - 2026 Season", - "teams": [ - { - "id": "team-039b2c89", - "name": "Apex MI", - "short_name": "APE", - "country": "", - "logo_url": "/teams-icons/ape.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "US", - "id": "team-4da13a51", - "name": "NRG", - "short_name": "NRGes", - "logo_url": null, - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/nacl_teams.json b/data/erls/teams/nacl_teams.json deleted file mode 100644 index 715598c92..000000000 --- a/data/erls/teams/nacl_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "NACL Teams", - "description": "NACL - 2026 Season", - "teams": [ - { - "id": "team-10540476", - "name": "Dorado Gaming", - "short_name": "DOR", - "country": "", - "logo_url": "/teams-icons/nacl-dor.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-31b92c52", - "name": "Conviction", - "short_name": "CON", - "country": "", - "logo_url": "/teams-icons/nacl-con.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-73a32fd5", - "name": "Maryville University", - "short_name": "MARY", - "country": "", - "logo_url": "/teams-icons/nacl-mary.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-99f3b280", - "name": "Blue Otter", - "short_name": "BLO", - "country": "", - "logo_url": "/teams-icons/blo.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-ba8042f7", - "name": "Citadel Gaming", - "short_name": "CIT", - "country": "", - "logo_url": "/teams-icons/cit.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-e21b9ba3", - "name": "CCG Esports", - "short_name": "CCG", - "country": "", - "logo_url": "/teams-icons/nacl-ccg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-f1da75bb", - "name": "Winthrop University", - "short_name": "WIU", - "country": "", - "logo_url": "/teams-icons/nacl-wiu.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-fa242f1f", - "name": "Supernova", - "short_name": "SUP", - "country": "", - "logo_url": "/teams-icons/nacl-sup.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/nlc_teams.json b/data/erls/teams/nlc_teams.json deleted file mode 100644 index a04f48df3..000000000 --- a/data/erls/teams/nlc_teams.json +++ /dev/null @@ -1,376 +0,0 @@ -{ - "name": "NLC Teams", - "description": "NLC - 2026 Season", - "teams": [ - { - "id": "team-1cee59ca", - "name": "Bulldog Esports", - "short_name": "BULL", - "country": "", - "logo_url": "/teams-icons/bull.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-34ca921d", - "name": "4 Swines & A Bum", - "short_name": "4SW", - "logo_url": "/teams-icons/1779866998001_8x5x6nlrnn4.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "GB", - "id": "team-390ad3b4", - "name": "Verdant", - "short_name": "VER", - "logo_url": "/teams-icons/1779866895543_Verdant.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "FI", - "id": "team-5ef306d4", - "name": "Arctic Pandas", - "short_name": "APA", - "logo_url": "/teams-icons/1779866679584_Arctic_Pandas.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "FI", - "id": "team-78aca3aa", - "name": "Deer Gaming", - "short_name": "DEG", - "logo_url": "/teams-icons/1779866848598_Deer_Gaming.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "GB", - "id": "team-794821d8", - "name": "Ruddy Corporation", - "short_name": "RUD", - "logo_url": "/teams-icons/1779866904057_Ruddy_Corporation.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "SE", - "id": "team-9114115f", - "name": "Lund Esports Organization", - "short_name": "LEO", - "logo_url": "/teams-icons/1779866881253_Lund_Esports_Organization.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "SE", - "id": "team-cc3cd5f0", - "name": "Lundqvist Lightside", - "short_name": "LUN", - "logo_url": "/teams-icons/1779866916040_Lundqvist_Lightside.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "NL", - "id": "team-e8c7e277", - "name": "La BOMBAS", - "short_name": "BOMB", - "logo_url": "/teams-icons/1779866822202_cheut26emzi.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "NO", - "id": "team-ee2bd46c", - "name": "DMG Esports", - "short_name": "DMG", - "logo_url": "/teams-icons/1779866831451_DMG_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/pcs_teams.json b/data/erls/teams/pcs_teams.json deleted file mode 100644 index 8905a1313..000000000 --- a/data/erls/teams/pcs_teams.json +++ /dev/null @@ -1,376 +0,0 @@ -{ - "name": "PCS Teams", - "description": "PCS - 2026 Season", - "teams": [ - { - "id": "team-0df06611", - "name": "SillySilly Gaming", - "short_name": "SSG", - "country": "", - "logo_url": "/teams-icons/ssg.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "Hong Kong", - "id": "team-33bed81a", - "name": "Viper Night Raider", - "short_name": "VIP", - "logo_url": "/teams-icons/1779793077190_Viper_Night_Raider.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-3696f88a", - "name": "Ground Zero Academy", - "short_name": "ZERO", - "country": "", - "logo_url": "/teams-icons/zero.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-4b825a93", - "name": "Shadow Keepers", - "short_name": "SHA", - "country": "", - "logo_url": "/teams-icons/sha.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-74d3c7fe", - "name": "One Round Specialists", - "short_name": "ONS", - "country": "", - "logo_url": "/teams-icons/ons.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-86604284", - "name": "Equinox Core", - "short_name": "EQU", - "country": "", - "logo_url": "/teams-icons/equ.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-94671303", - "name": "CFO Academy", - "short_name": "CFOA", - "country": "", - "logo_url": "/teams-icons/cfoa.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-9c289ca5", - "name": "wangting", - "short_name": "WAN", - "country": "", - "logo_url": "/teams-icons/wan.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-c4a0b95f", - "name": "Xu Ji Basalt", - "short_name": "XJB", - "country": "", - "logo_url": "/teams-icons/xjb.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-f8c7a360", - "name": "Frank Esports", - "short_name": "FESP", - "country": "", - "logo_url": "/teams-icons/fesp.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/prm_teams.json b/data/erls/teams/prm_teams.json deleted file mode 100644 index 3bec676b3..000000000 --- a/data/erls/teams/prm_teams.json +++ /dev/null @@ -1,547 +0,0 @@ -{ - "name": "PRM Teams", - "description": "PRM - 2026 Season", - "teams": [ - { - "id": "team-e48c23c9", - "city": "", - "form": [], - "name": "Unicorns of Love Sexy Edition", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2777674, - "history": [], - "logo_url": "/teams-icons/unicorns-of-love-sexy-edition.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 409, - "short_name": "UOLSE", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1388837, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 555535, - "financial_ledger": [], - "scrim_reputation": 40, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Unicorns of Love Sexy Edition Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-bec332f5", - "city": "", - "form": [], - "name": "Eintracht Spandau", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2611524, - "history": [], - "logo_url": "/teams-icons/eintracht-spandau.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 296, - "short_name": "ES", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1305762, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 522305, - "financial_ledger": [], - "scrim_reputation": 29, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Eintracht Spandau Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-a72b6e41", - "city": "", - "form": [], - "name": "E WIE EINFACH E-SPORTS", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2767428, - "history": [], - "logo_url": "/teams-icons/e-wie-einfach-e-sports.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 292, - "short_name": "EWEE", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1383714, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 553486, - "financial_ledger": [], - "scrim_reputation": 29, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "E WIE EINFACH E-SPORTS Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-1347e217", - "city": "", - "form": [], - "name": "Team Orange Gaming", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 3016084, - "history": [], - "logo_url": "/teams-icons/team-orange-gaming.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 347, - "short_name": "TOG", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1508042, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 603217, - "financial_ledger": [], - "scrim_reputation": 34, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Team Orange Gaming Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-069c707b", - "city": "", - "form": [], - "name": "G2 Nord", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2134489, - "history": [], - "logo_url": "/teams-icons/1778866683743_5l5ivzt9ugq.png", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 377, - "short_name": "G2 NORD", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1067244, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 426898, - "financial_ledger": [], - "scrim_reputation": 37, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "G2 Nord Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-5dc37618", - "city": "", - "form": [], - "name": "Eintracht Frankfurt", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2343854, - "history": [], - "logo_url": "/teams-icons/eintracht-frankfurt.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 310, - "short_name": "EF", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1171927, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 468771, - "financial_ledger": [], - "scrim_reputation": 31, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Eintracht Frankfurt Arena", - "stadium_capacity": 1500 - }, - { - "city": "Stuttgart", - "colors": { - "primary": "#ffffff", - "secondary": "#d30723" - }, - "country": "DE", - "id": "team-8c9a2d4b", - "name": "VfB Stuttgart eSports", - "short_name": "VFB", - "logo_url": "/teams-icons/1779571959057_o2qb9jglju.webp", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-0be37b7e", - "city": "", - "form": [], - "name": "Berlin International Gaming", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 1728815, - "history": [], - "logo_url": "/teams-icons/1778867518337_v7cnx4hmo5.png", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 447, - "short_name": "BIG", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 864408, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 345763, - "financial_ledger": [], - "scrim_reputation": 44, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Berlin International Gaming Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-f3b86137", - "city": "", - "form": [], - "name": "ROSSMANN Centaurs", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2888435, - "history": [], - "logo_url": "/teams-icons/rossmann-centaurs.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 304, - "short_name": "RC", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1444218, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 577687, - "financial_ledger": [], - "scrim_reputation": 30, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "ROSSMANN Centaurs Arena", - "stadium_capacity": 1500 - }, - { - "id": "team-3cef0cfa", - "city": "", - "form": [], - "name": "Kaufland Hangry Knights", - "colors": { - "primary": "#000000", - "secondary": "#FFFFFF" - }, - "academy": null, - "country": "DE", - "finance": 2919860, - "history": [], - "logo_url": "/teams-icons/kaufland-hangry-knights.webp", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "manager_id": null, - "reputation": 358, - "short_name": "KHK", - "lol_tactics": { - "fight_plan": "FrontToBack", - "strong_side": "Top", - "jungle_style": "Enabler", - "draft_strategy": "Balanced", - "support_roaming": "Lane" - }, - "sponsorship": null, - "wage_budget": 1459930, - "scrim_results": [], - "season_income": 0, - "parent_team_id": null, - "training_focus": "Scrims", - "academy_team_id": null, - "season_expenses": 0, - "training_groups": [], - "transfer_budget": 583972, - "financial_ledger": [], - "scrim_reputation": 35, - "academy_lifecycle": null, - "training_schedule": "Balanced", - "scrim_weekly_slots": 5, - "training_intensity": "Medium", - "stadium_name": "Kaufland Hangry Knights Arena", - "stadium_capacity": 1500 - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/rl_teams.json b/data/erls/teams/rl_teams.json deleted file mode 100644 index 9201c6f00..000000000 --- a/data/erls/teams/rl_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "RL Teams", - "description": "RL - 2026 Season", - "teams": [ - { - "country": "PL", - "id": "team-239dd021", - "name": "Anonymo Esports", - "short_name": "ANO", - "logo_url": "/teams-icons/1779865450954_Anonymo_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-76542a8b", - "name": "Bomba Team", - "short_name": "BOM", - "logo_url": "/teams-icons/1779865476494_Bomba_Team.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-83efd7e9", - "name": "DOCISK", - "short_name": "DOC", - "logo_url": "/teams-icons/1779865461650_DOCISK.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "CZ", - "id": "team-c3747fd1", - "name": "GLORE", - "short_name": "GLO", - "logo_url": "/teams-icons/1779865639400_z1pfvjhcrpa.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-c5d360c2", - "name": "Forsaken", - "short_name": "FOR", - "logo_url": "/teams-icons/1779865455785_Forsaken.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#132e23", - "secondary": "#ffffff" - }, - "country": "PL", - "id": "team-d772ad68", - "name": "Barcząca Esports", - "short_name": "BAÇ", - "logo_url": "/teams-icons/1779865481127_Barcz_ca_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-efe1b300", - "name": "LODIS", - "short_name": "LOD", - "logo_url": "/teams-icons/1779865379693_LODIS.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "PL", - "id": "team-ff1df943", - "name": "devils.one inStreamly", - "short_name": "DEV", - "logo_url": "/teams-icons/1779865636313_z6b5k0vr1b9.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/rol_teams.json b/data/erls/teams/rol_teams.json deleted file mode 100644 index 1a6477dd0..000000000 --- a/data/erls/teams/rol_teams.json +++ /dev/null @@ -1,302 +0,0 @@ -{ - "name": "ROL Teams", - "description": "ROL - 2026 Season", - "teams": [ - { - "country": "BE", - "id": "team-3088debc", - "name": "Frites Esports Club", - "short_name": "FEC", - "logo_url": "/teams-icons/1779861955960_Frites_Esports_Club.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-3738562e", - "name": "Once Upon A Team", - "short_name": "OUT", - "country": "", - "logo_url": "/teams-icons/1779861943707_Once_Upon_A_Team.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "NL", - "id": "team-45502488", - "name": "Dynasty", - "short_name": "DYN", - "logo_url": "/teams-icons/1779861910011_Dynasty.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "NL", - "id": "team-897210b6", - "name": "mCon esports", - "short_name": "MCON", - "logo_url": "/teams-icons/1779861929146_mCon_esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-96e42b9a", - "name": "ZennIT", - "short_name": "ZEN", - "country": "", - "logo_url": "/teams-icons/zen.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-a0e8ccac", - "name": "The Bandits", - "short_name": "THE", - "country": "", - "logo_url": "/teams-icons/the.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "team-e6e445de", - "name": "Myth Esports", - "short_name": "MYTH", - "country": "", - "logo_url": "/teams-icons/myth.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "colors": { - "primary": "#e66100", - "secondary": "#f8e45c" - }, - "country": "NL", - "id": "team-f9cfb0f2", - "name": "Senshi eSports", - "short_name": "SEES", - "logo_url": "/teams-icons/1779861935648_Senshi_eSports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/tcl_teams.json b/data/erls/teams/tcl_teams.json deleted file mode 100644 index 9d445901c..000000000 --- a/data/erls/teams/tcl_teams.json +++ /dev/null @@ -1,403 +0,0 @@ -{ - "name": "TCL Teams", - "description": "TCL - 2026 Season", - "teams": [ - { - "id": "tcl-dark-passage", - "city": "Istanbul", - "country": "TR", - "finance": 150000, - "logo_url": "/teams-icons/dark-passage.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 20000, - "data.country": "Turkey", - "data.team_kind": "Main", - "transfer_budget": 50000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "Dark Passage", - "short_name": "DP", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-boostgate-esports", - "city": "Istanbul", - "country": "TR", - "finance": 150000, - "logo_url": "/teams-icons/1779823097965_BoostGate_Esports.webp", - "data.city": "Istanbul", - "team_kind": "Main", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 20000, - "data.country": "Turkey", - "data.team_kind": "Main", - "transfer_budget": 50000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "BoostGate Esports", - "short_name": "BGT", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-ozarox-esports", - "city": "Istanbul", - "country": "TR", - "finance": 100000, - "logo_url": "/teams-icons/ozarox-esports.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 15000, - "data.country": "Turkey", - "transfer_budget": 25000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "Ozarox Esports", - "short_name": "OZO", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-pcific-esports", - "city": "Istanbul", - "colors": { - "secondary": null - }, - "country": "TR", - "finance": 100000, - "logo_url": "/teams-icons/pcific-esports.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 15000, - "data.country": "Turkey", - "transfer_budget": 25000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "PCIFIC Esports", - "short_name": "PCF", - "stadium_name": "", - "stadium_capacity": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-su-esports", - "city": "Istanbul", - "country": "TR", - "finance": 150000, - "logo_url": "/teams-icons/su-esports.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 20000, - "data.country": "Turkey", - "transfer_budget": 50000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "SU Esports", - "short_name": "SU", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-bushido-wildcats", - "city": "Istanbul", - "country": "TR", - "finance": 150000, - "logo_url": "/teams-icons/bushido-wildcats.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 20000, - "data.country": "Turkey", - "data.team_kind": "Main", - "transfer_budget": 50000, - "name": "Bushido Wildcats", - "short_name": "BW", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-misa-esports", - "city": "Istanbul", - "country": "TR", - "finance": 300000, - "logo_url": "/teams-icons/misa-esports.webp", - "facilities": { - "medical": 1, - "scouting": 1, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 40000, - "data.country": "Turkey", - "data.team_kind": "Main", - "transfer_budget": 100000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "Misa Esports", - "short_name": "MISA", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "id": "tcl-team-phoenix", - "city": "Istanbul", - "country": "TR", - "finance": 100000, - "logo_url": "/teams-icons/team-phoenix.webp", - "facilities": { - "medical": 1, - "scouting": 0, - "training": 1, - "main_hub_level": 1, - "scrims_room_level": 0, - "scouting_lab_level": 0, - "analysis_room_level": 0, - "bootcamp_area_level": 0, - "content_studio_level": 0, - "recovery_suite_level": 0 - }, - "reputation": 300, - "wage_budget": 15000, - "data.country": "PHX", - "transfer_budget": 25000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "Team Phoenix", - "short_name": "PHX", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/erls/teams/vcs_teams.json b/data/erls/teams/vcs_teams.json deleted file mode 100644 index 553689f05..000000000 --- a/data/erls/teams/vcs_teams.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "name": "VCS Teams", - "description": "VCS - 2026 Season", - "teams": [ - { - "country": "VN", - "id": "team-0b0654fe", - "name": "Saigon Dino", - "short_name": "DINO", - "logo_url": "/teams-icons/1779825199225_Saigon_Dino.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "VN", - "id": "team-12d8ddae", - "name": "9Gaming Esports", - "short_name": "9GA", - "logo_url": "/teams-icons/1779825430639_9Gaming_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "VN", - "id": "team-2b60138b", - "name": "MVK Esports Academy", - "short_name": "MVK.A", - "logo_url": "/teams-icons/1779825423613_MVK_Esports_Academy.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "VN", - "id": "team-3cd254ed", - "name": "SN CyberCore Esports", - "short_name": "SNC", - "logo_url": "/teams-icons/1779825219302_SN_CyberCore_Esports.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "VN", - "id": "team-cd683e2d", - "name": "Saigon Warriors", - "short_name": "SWA", - "logo_url": "/teams-icons/1779825457075_Saigon_Warriors.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - }, - { - "country": "VN", - "id": "team-cf666c65", - "name": "ZEN Esports", - "short_name": "ZEN", - "logo_url": "/teams-icons/1779825792998_jcph4czm3ts.webp", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#000000", - "secondary": "#ffffff" - }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null - } - ] -} \ No newline at end of file diff --git a/data/messages/senders/al_lio.json b/data/messages/senders/al_lio.json new file mode 100644 index 000000000..ef3003028 --- /dev/null +++ b/data/messages/senders/al_lio.json @@ -0,0 +1,8 @@ +{ + "id": "al_lio", + "name": "Al Lío Podcast", + "name_key": "be.sender.alLio", + "role": "Podcast", + "role_key": "be.role.podcast", + "icon": "allio.jpg" +} diff --git a/data/messages/senders/assistant_coach.json b/data/messages/senders/assistant_coach.json new file mode 100644 index 000000000..035464fe4 --- /dev/null +++ b/data/messages/senders/assistant_coach.json @@ -0,0 +1,8 @@ +{ + "id": "assistant_coach", + "name": "Assistant Coach", + "name_key": "be.sender.assistantCoach", + "role": "Coach", + "role_key": "be.role.assistantCoach", + "icon": "assistant.jpg" +} diff --git a/data/messages/senders/board.json b/data/messages/senders/board.json new file mode 100644 index 000000000..5e2256dbc --- /dev/null +++ b/data/messages/senders/board.json @@ -0,0 +1,8 @@ +{ + "id": "board", + "name": "Board of Directors", + "name_key": "be.sender.boardOfDirectors", + "role": "Chairman", + "role_key": "be.role.chairman", + "icon": "board.jpg" +} diff --git a/data/messages/senders/director_of_football.json b/data/messages/senders/director_of_football.json new file mode 100644 index 000000000..5194cc514 --- /dev/null +++ b/data/messages/senders/director_of_football.json @@ -0,0 +1,8 @@ +{ + "id": "director_of_football", + "name": "Director of Football", + "name_key": "be.sender.directorOfFootball", + "role": "Director of Football", + "role_key": "be.role.directorOfFootball", + "icon": "director.jpg" +} diff --git a/data/messages/senders/fitness_coach.json b/data/messages/senders/fitness_coach.json new file mode 100644 index 000000000..a1c0e851f --- /dev/null +++ b/data/messages/senders/fitness_coach.json @@ -0,0 +1,8 @@ +{ + "id": "fitness_coach", + "name": "Fitness Coach", + "name_key": "be.sender.fitnessCoach", + "role": "Coach", + "role_key": "be.role.fitnessCoach", + "icon": "coach.jpg" +} diff --git a/data/messages/senders/player_relations.json b/data/messages/senders/player_relations.json new file mode 100644 index 000000000..643086c0e --- /dev/null +++ b/data/messages/senders/player_relations.json @@ -0,0 +1,8 @@ +{ + "id": "player_relations", + "name": "Player Liaison", + "name_key": "be.sender.playerLiaison", + "role": "Officer", + "role_key": "be.role.officer", + "icon": "relations.jpg" +} diff --git a/data/messages/senders/press.json b/data/messages/senders/press.json new file mode 100644 index 000000000..5a43efa98 --- /dev/null +++ b/data/messages/senders/press.json @@ -0,0 +1,8 @@ +{ + "id": "press", + "name": "Esportmaniacos", + "name_key": "be.sender.press", + "role": "Press", + "role_key": "be.role.press", + "icon": "director.jpg" +} diff --git a/data/messages/senders/scout.json b/data/messages/senders/scout.json new file mode 100644 index 000000000..a2f07c39a --- /dev/null +++ b/data/messages/senders/scout.json @@ -0,0 +1 @@ +{ "id": "scout", "name": "Scout", "name_key": "be.sender.scout", "role": "Scout", "role_key": "be.role.scout", "icon": "scout.jpg" } diff --git a/data/messages/senders/yuste.json b/data/messages/senders/yuste.json new file mode 100644 index 000000000..f22e007e9 --- /dev/null +++ b/data/messages/senders/yuste.json @@ -0,0 +1,8 @@ +{ + "id": "yuste", + "name": "el_yuste", + "name_key": "be.sender.yuste", + "role": "Streamer", + "role_key": "be.role.streamer", + "icon": "yuste.jpg" +} diff --git a/data/messages/triggers/academy/acquired.json b/data/messages/triggers/academy/acquired.json new file mode 100644 index 000000000..be290a8b3 --- /dev/null +++ b/data/messages/triggers/academy/acquired.json @@ -0,0 +1,19 @@ +{ + "id": "academy_acquired", + "trigger": "academy_acquired", + "weight": 1, + "sender": "assistant_coach", + "category": "Finance", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Academy acquired: {academy}", + "body": "The club has successfully acquired {academy} as our academy affiliate.\n\nThe acquisition cost was \u20ac{cost}. The academy will provide a stream of young talents for the future.\n\nYou can now promote promising academy players to the first team or send young prospects to develop there.", + "translations": { + "es": { + "subject": "Academia adquirida: {academy}", + "body": "El club ha adquirido con \u00e9xito {academy} como nuestra academia afiliada.\n\nEl coste de adquisici\u00f3n fue de \u20ac{cost}. La academia proporcionar\u00e1 un flujo de j\u00f3venes talentos para el futuro.\n\nAhora puede promover jugadores prometedores de la academia al primer equipo o enviar j\u00f3venes promesas para desarrollarse all\u00ed." + } + } +} diff --git a/data/messages/triggers/academy/player_moved.json b/data/messages/triggers/academy/player_moved.json new file mode 100644 index 000000000..f5d13d070 --- /dev/null +++ b/data/messages/triggers/academy/player_moved.json @@ -0,0 +1,14 @@ +{ + "id": "academy_player_moved", + "trigger": "academy_player_moved", + "weight": 1, + "sender": "assistant_coach", + "category": "Training", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Academy update: {player}", + "body": "{body}", + "translations": {} +} diff --git a/data/messages/triggers/board/expectations.json b/data/messages/triggers/board/expectations.json new file mode 100644 index 000000000..d98053724 --- /dev/null +++ b/data/messages/triggers/board/expectations.json @@ -0,0 +1,19 @@ +{ + "id": "board_expectations", + "trigger": "board_expectations", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Season objectives for {team}", + "body": "The board has outlined the expectations for {team} this season.\n\nWe expect you to build a competitive squad, implement a solid tactical system, and ensure the club's financial stability. Review your squad, set your training priorities, and prepare for the challenges ahead.\n\nWe will be watching your progress closely.", + "translations": { + "es": { + "subject": "Objetivos de temporada para {team}", + "body": "El consejo ha definido las expectativas para {team} esta temporada.\n\nEsperamos que construyas una plantilla competitiva, implementes un sistema t\u00e1ctico s\u00f3lido y garantices la estabilidad financiera del club. Revisa tu plantilla, establece tus prioridades y prep\u00e1rate para los desaf\u00edos que vienen.\n\nSeguiremos tu progreso de cerca." + } + } +} diff --git a/data/messages/triggers/board/final_warning.json b/data/messages/triggers/board/final_warning.json new file mode 100644 index 000000000..11f24893a --- /dev/null +++ b/data/messages/triggers/board/final_warning.json @@ -0,0 +1,19 @@ +{ + "id": "board_final_warning", + "trigger": "board_final_warning", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "Urgent", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "FINAL WARNING \u2014 {team} must improve immediately", + "body": "This is your final warning. The board's patience has run out.\n\nThe continued poor performance of {team} is unacceptable. You must turn things around immediately or face dismissal.\n\nWe expect a significant improvement in results starting from the next match.", + "translations": { + "es": { + "subject": "\u00daLTIMA ADVERTENCIA \u2014 {team} debe mejorar inmediatamente", + "body": "Esta es su \u00faltima advertencia. La paciencia del consejo se ha agotado.\n\nEl continuo bajo rendimiento de {team} es inaceptable. Debe revertir la situaci\u00f3n inmediatamente o enfrentar el despido.\n\nEsperamos una mejora significativa en los resultados a partir del pr\u00f3ximo partido." + } + } +} diff --git a/data/messages/triggers/board/fired.json b/data/messages/triggers/board/fired.json new file mode 100644 index 000000000..53a8fe94d --- /dev/null +++ b/data/messages/triggers/board/fired.json @@ -0,0 +1,19 @@ +{ + "id": "board_fired", + "trigger": "board_fired", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "Urgent", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Notice of dismissal \u2014 {team}", + "body": "We regret to inform you that your employment as head coach of {team} has been terminated effective immediately.\n\nAfter careful consideration, the board has concluded that the team's results under your management do not meet the club's expectations.\n\nWe thank you for your efforts and wish you the best in your future endeavors.", + "translations": { + "es": { + "subject": "Aviso de despido \u2014 {team}", + "body": "Lamentamos informarle que su empleo como entrenador de {team} ha sido rescindido con efecto inmediato.\n\nDespu\u00e9s de una cuidadosa consideraci\u00f3n, el consejo ha concluido que los resultados del equipo bajo su direcci\u00f3n no cumplen con las expectativas del club.\n\nLe agradecemos sus esfuerzos y le deseamos lo mejor en sus futuros proyectos." + } + } +} diff --git a/data/messages/triggers/board/objectives.json b/data/messages/triggers/board/objectives.json new file mode 100644 index 000000000..b77d61be8 --- /dev/null +++ b/data/messages/triggers/board/objectives.json @@ -0,0 +1,19 @@ +{ + "id": "board_objectives", + "trigger": "board_objectives", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Season {season} \u2014 Board objectives", + "body": "The board has set the following objectives for season {season}:\n\n\u2022 League position: Top {position}\n\u2022 Win target: {wins} series\n\u2022 Map target: {maps} maps\n\nYour performance will be evaluated based on these objectives at the end of the season.", + "translations": { + "es": { + "subject": "Temporada {season} \u2014 Objetivos del consejo", + "body": "El consejo ha establecido los siguientes objetivos para la temporada {season}:\n\n\u2022 Posici\u00f3n en liga: Top {position}\n\u2022 Objetivo de victorias: {wins} series\n\u2022 Objetivo de mapas: {maps} mapas\n\nSu rendimiento ser\u00e1 evaluado en base a estos objetivos al final de la temporada." + } + } +} diff --git a/data/messages/triggers/board/warning.json b/data/messages/triggers/board/warning.json new file mode 100644 index 000000000..3cfbcd438 --- /dev/null +++ b/data/messages/triggers/board/warning.json @@ -0,0 +1,19 @@ +{ + "id": "board_warning", + "trigger": "board_warning", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Board concern \u2014 {team} performance review", + "body": "The board has noted with concern the recent results of {team}. While we understand that every team goes through difficult periods, we expect to see improvement soon.\n\nWe urge you to address the issues affecting the team's performance. Review your tactics, training, and squad morale.\n\nThis is a warning \u2014 further decline may lead to more serious consequences.", + "translations": { + "es": { + "subject": "Preocupaci\u00f3n del consejo \u2014 revisi\u00f3n de rendimiento de {team}", + "body": "El consejo ha notado con preocupaci\u00f3n los resultados recientes de {team}. Si bien entendemos que todos los equipos pasan por momentos dif\u00edciles, esperamos ver una mejora pronto.\n\nLe instamos a abordar los problemas que afectan el rendimiento del equipo. Revise su t\u00e1ctica, entrenamiento y moral de la plantilla.\n\nEsto es una advertencia \u2014 un mayor declive podr\u00eda tener consecuencias m\u00e1s graves." + } + } +} diff --git a/data/messages/triggers/contract/expired.json b/data/messages/triggers/contract/expired.json new file mode 100644 index 000000000..d582e2365 --- /dev/null +++ b/data/messages/triggers/contract/expired.json @@ -0,0 +1,19 @@ +{ + "id": "contract_expired", + "trigger": "contract_expired", + "weight": 1, + "sender": "director_of_football", + "category": "Contract", + "priority": "Urgent", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Contract expired: {player}", + "body": "The contract of {player} has expired and the player has left {team}.\n\n{player} is now a free agent. If you wish to retain their services, you will need to negotiate a new contract.\n\nPlease review your squad and consider your options.", + "translations": { + "es": { + "subject": "Contrato expirado: {player}", + "body": "El contrato de {player} ha expirado y el jugador ha dejado {team}.\n\n{player} es ahora agente libre. Si desea retener sus servicios, deber\u00e1 negociar un nuevo contrato.\n\nRevise su plantilla y considere sus opciones." + } + } +} diff --git a/data/messages/triggers/contract/renewal.json b/data/messages/triggers/contract/renewal.json new file mode 100644 index 000000000..06100f28e --- /dev/null +++ b/data/messages/triggers/contract/renewal.json @@ -0,0 +1,19 @@ +{ + "id": "delegated_renewal", + "trigger": "delegated_renewal", + "weight": 1, + "sender": "assistant_coach", + "category": "Contract", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Delegated renewal report", + "body": "Coach, here is the report on the delegated contract renewals:\n\n\u2022 Successful renewals: {success}\n\u2022 Stalled negotiations: {stalled}\n\u2022 Failed renewals: {failed}\n\nCheck the Contracts section for details on each case.", + "translations": { + "es": { + "subject": "Informe de renovaciones delegadas", + "body": "Jefe, aqu\u00ed tiene el informe de las renovaciones de contrato delegadas:\n\n\u2022 Renovaciones exitosas: {success}\n\u2022 Negociaciones estancadas: {stalled}\n\u2022 Renovaciones fallidas: {failed}\n\nConsulte la secci\u00f3n de Contratos para m\u00e1s detalles sobre cada caso." + } + } +} diff --git a/data/messages/triggers/finance/critical.json b/data/messages/triggers/finance/critical.json new file mode 100644 index 000000000..8bb7003ba --- /dev/null +++ b/data/messages/triggers/finance/critical.json @@ -0,0 +1,19 @@ +{ + "id": "finance_critical", + "trigger": "finance_critical", + "weight": 1, + "sender": "board", + "category": "Finance", + "priority": "Urgent", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "URGENT: Club in debt \u2014 {balance}", + "body": "The club's finances have reached a critical level. Current balance: \u20ac{balance}.\n\nImmediate action is required to avoid further financial deterioration. Consider reducing wages, selling players, or finding additional revenue streams.\n\nThe board expects a financial recovery plan.", + "translations": { + "es": { + "subject": "URGENTE: Club en deuda \u2014 {balance}", + "body": "Las finanzas del club han alcanzado un nivel cr\u00edtico. Balance actual: \u20ac{balance}.\n\nSe requiere acci\u00f3n inmediata para evitar un mayor deterioro financiero. Considere reducir salarios, vender jugadores o encontrar fuentes de ingresos adicionales.\n\nEl consejo espera un plan de recuperaci\u00f3n financiera." + } + } +} diff --git a/data/messages/triggers/finance/sponsor.json b/data/messages/triggers/finance/sponsor.json new file mode 100644 index 000000000..11fc7e8b5 --- /dev/null +++ b/data/messages/triggers/finance/sponsor.json @@ -0,0 +1,20 @@ +{ + "id": "sponsor_offer", + "trigger": "sponsor_offer", + "weight": 1, + "sender": "board", + "category": "Finance", + "priority": "Normal", + "actions": [ + { "type": "chooseoption", "label": "Accept", "label_key": "be.msg.action.accept", "options": [{"id": "accept", "label": "Accept", "label_key": "be.msg.action.accept"}] }, + { "type": "chooseoption", "label": "Decline", "label_key": "be.msg.action.decline", "options": [{"id": "decline", "label": "Decline", "label_key": "be.msg.action.decline"}] } + ], + "subject": "Sponsorship offer from {sponsor}", + "body": "We have received a sponsorship proposal from {sponsor}.\n\nThe offer is worth \u20ac{amount} annually. This would be a valuable addition to our finances.\n\nWould you like to accept this sponsorship?", + "translations": { + "es": { + "subject": "Oferta de patrocinio de {sponsor}", + "body": "Hemos recibido una propuesta de patrocinio de {sponsor}.\n\nLa oferta es de \u20ac{amount} anuales. Ser\u00eda una valiosa adici\u00f3n a nuestras finanzas.\n\n\u00bfDesea aceptar este patrocinio?" + } + } +} diff --git a/data/messages/triggers/finance/wage_over_budget.json b/data/messages/triggers/finance/wage_over_budget.json new file mode 100644 index 000000000..9bd14e3be --- /dev/null +++ b/data/messages/triggers/finance/wage_over_budget.json @@ -0,0 +1,19 @@ +{ + "id": "wage_over_budget", + "trigger": "wage_over_budget", + "weight": 1, + "sender": "board", + "category": "Finance", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Wage bill exceeds budget", + "body": "The club's annual wage bill of \u20ac{wages} exceeds the allocated budget of \u20ac{budget}.\n\nThis overspend is impacting the club's financial stability. Consider adjusting the wage structure or moving high-earning players.\n\nThe board recommends bringing wages in line with the budget as soon as possible.", + "translations": { + "es": { + "subject": "Gasto salarial excede el presupuesto", + "body": "El gasto salarial anual de \u20ac{wages} supera el presupuesto asignado de \u20ac{budget}.\n\nEste exceso est\u00e1 afectando la estabilidad financiera del club. Considere ajustar la estructura salarial o traspasar jugadores con salarios altos.\n\nEl consejo recomienda ajustar los salarios al presupuesto lo antes posible." + } + } +} diff --git a/data/messages/triggers/finance/warning.json b/data/messages/triggers/finance/warning.json new file mode 100644 index 000000000..bf99f49ed --- /dev/null +++ b/data/messages/triggers/finance/warning.json @@ -0,0 +1,19 @@ +{ + "id": "finance_warning", + "trigger": "finance_warning", + "weight": 1, + "sender": "board", + "category": "Finance", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Financial warning \u2014 low reserves", + "body": "The club's cash reserves are running low. At the current spending rate, we have approximately {months} months of runway remaining.\n\nAnnual wage bill: \u20ac{wages}\n\nWe recommend reviewing expenses and exploring additional revenue opportunities before the situation becomes critical.", + "translations": { + "es": { + "subject": "Advertencia financiera \u2014 reservas bajas", + "body": "Las reservas de efectivo del club se est\u00e1n agotando. Al ritmo de gasto actual, nos quedan aproximadamente {months} meses de margen.\n\nGasto salarial anual: \u20ac{wages}\n\nRecomendamos revisar los gastos y explorar oportunidades de ingresos adicionales antes de que la situaci\u00f3n se vuelva cr\u00edtica." + } + } +} diff --git a/data/messages/triggers/jobs/offer.json b/data/messages/triggers/jobs/offer.json new file mode 100644 index 000000000..3bc0a63c1 --- /dev/null +++ b/data/messages/triggers/jobs/offer.json @@ -0,0 +1,20 @@ +{ + "id": "job_offer", + "trigger": "job_offer", + "weight": 1, + "sender": "board", + "category": "JobOffer", + "priority": "High", + "actions": [ + { "type": "chooseoption", "label": "Accept", "label_key": "be.msg.action.accept", "options": [{"id": "accept", "label": "Accept", "label_key": "be.msg.action.accept"}] }, + { "type": "chooseoption", "label": "Decline", "label_key": "be.msg.action.decline", "options": [{"id": "decline", "label": "Decline", "label_key": "be.msg.action.decline"}] } + ], + "subject": "Managerial vacancy \u2014 {team}", + "body": "{team} would like to invite you for an interview regarding their managerial vacancy.\n\nThe club finished in position {position} last season and is looking for a new direction.\n\nThis could be an exciting opportunity \u2014 are you interested?", + "translations": { + "es": { + "subject": "Vacante de entrenador \u2014 {team}", + "body": "{team} le invita a una entrevista para su vacante de entrenador.\n\nEl club termin\u00f3 en la posici\u00f3n {position} la temporada pasada y busca un nuevo rumbo.\n\nPodr\u00eda ser una oportunidad emocionante \u2014 \u00bfest\u00e1 interesado?" + } + } +} diff --git a/data/messages/triggers/jobs/rejection.json b/data/messages/triggers/jobs/rejection.json new file mode 100644 index 000000000..095a512cd --- /dev/null +++ b/data/messages/triggers/jobs/rejection.json @@ -0,0 +1,19 @@ +{ + "id": "job_rejection", + "trigger": "job_rejection", + "weight": 1, + "sender": "board", + "category": "JobOffer", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Application update \u2014 {team}", + "body": "Thank you for your interest in the managerial position at {team}.\n\nAfter careful consideration, the club has decided to pursue other candidates.\n\nWe wish you the best in your search for a new position.", + "translations": { + "es": { + "subject": "Actualizaci\u00f3n de candidatura \u2014 {team}", + "body": "Gracias por su inter\u00e9s en el puesto de entrenador de {team}.\n\nDespu\u00e9s de una cuidadosa consideraci\u00f3n, el club ha decidido seguir adelante con otros candidatos.\n\nLe deseamos lo mejor en su b\u00fasqueda de un nuevo puesto." + } + } +} diff --git a/data/messages/triggers/jobs/welcome.json b/data/messages/triggers/jobs/welcome.json new file mode 100644 index 000000000..654ffd545 --- /dev/null +++ b/data/messages/triggers/jobs/welcome.json @@ -0,0 +1,19 @@ +{ + "id": "job_welcome", + "trigger": "job_welcome", + "weight": 1, + "sender": "board", + "category": "BoardDirective", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Welcome to {team}!", + "body": "The board of directors of {team} welcomes you as the new manager.\n\nWe are excited to have you on board and look forward to a successful partnership. The squad is ready, and the staff is in place.\n\nReview the team, set your priorities, and let's get to work!", + "translations": { + "es": { + "subject": "\u00a1Bienvenido a {team}!", + "body": "El consejo directivo de {team} te da la bienvenida como nuevo entrenador.\n\nEstamos emocionados de tenerte a bordo y esperamos una asociaci\u00f3n exitosa. La plantilla est\u00e1 lista y el personal est\u00e1 en su lugar.\n\n\u00a1Revisa el equipo, establece tus prioridades y pong\u00e1monos a trabajar!" + } + } +} diff --git a/data/messages/triggers/match_preview/preview_1.json b/data/messages/triggers/match_preview/preview_1.json new file mode 100644 index 000000000..f0f9403ec --- /dev/null +++ b/data/messages/triggers/match_preview/preview_1.json @@ -0,0 +1,20 @@ +{ + "id": "preview_1", + "trigger": "match_preview", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchPreview", + "priority": "Normal", + "actions": [ + { "type": "navigateto", "label": "View on Schedule", "label_key": "be.msg.action.viewSchedule", "route": "/dashboard?tab=Schedule" }, + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Upcoming match: vs {opponent}", + "body": "Coach, our next match is against {opponent} ({venue}) on {date}.\n\nI've been reviewing their recent games and I think we have a solid chance if we stick to our game plan. Focus on our strengths and exploit their weaknesses.\n\nLet's make sure the squad is prepared.", + "translations": { + "es": { + "subject": "Pr\u00f3ximo partido: vs {opponent}", + "body": "Jefe, nuestro pr\u00f3ximo partido es contra {opponent} ({venue}) el {date}.\n\nHe estado revisando sus \u00faltimos partidos y creo que tenemos una buena oportunidad si seguimos nuestro plan. Enfoqu\u00e9monos en nuestras fortalezas y explotemos sus debilidades.\n\nAsegur\u00e9monos de que la plantilla est\u00e9 preparada." + } + } +} diff --git a/data/messages/triggers/match_preview/preview_2.json b/data/messages/triggers/match_preview/preview_2.json new file mode 100644 index 000000000..a53712316 --- /dev/null +++ b/data/messages/triggers/match_preview/preview_2.json @@ -0,0 +1,20 @@ +{ + "id": "preview_2", + "trigger": "match_preview", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchPreview", + "priority": "Normal", + "actions": [ + { "type": "navigateto", "label": "View on Schedule", "label_key": "be.msg.action.viewSchedule", "route": "/dashboard?tab=Schedule" }, + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Match day approaching: {opponent}", + "body": "Heads up coach \u2014 we face {opponent} ({venue}) on {date}.\n\nThis is going to be a tough one. {opponent} has some strong players we need to account for. I've prepared a scout report on their key threats.\n\nLet's go over the game plan before match day.", + "translations": { + "es": { + "subject": "Se acerca el partido: {opponent}", + "body": "Atenci\u00f3n jefe \u2014 nos enfrentamos a {opponent} ({venue}) el {date}.\n\nEste va a ser un partido duro. {opponent} tiene jugadores fuertes a los que debemos prestar atenci\u00f3n. He preparado un informe sobre sus amenazas clave.\n\nRepasemos el plan de partido antes del d\u00eda del encuentro." + } + } +} diff --git a/data/messages/triggers/match_result/defeat_1.json b/data/messages/triggers/match_result/defeat_1.json new file mode 100644 index 000000000..a04e5fb94 --- /dev/null +++ b/data/messages/triggers/match_result/defeat_1.json @@ -0,0 +1,19 @@ +{ + "id": "defeat_1", + "trigger": "match_result", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchResult", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Defeat: {home} {score} {away}", + "body": "Tough loss today, coach. We lost to {opponent} {score}.\n\nThere are things to learn from this match. Let's review where we went wrong and come back stronger.\n\nThe season is long \u2014 we'll bounce back.", + "translations": { + "es": { + "subject": "Derrota: {home} {score} {away}", + "body": "Dura derrota hoy, jefe. Perdimos contra {opponent} {score}.\n\nHay cosas que aprender de este partido. Revisemos d\u00f3nde nos equivocamos y volvamos m\u00e1s fuertes.\n\nLa temporada es larga \u2014 nos recuperaremos." + } + } +} diff --git a/data/messages/triggers/match_result/defeat_2.json b/data/messages/triggers/match_result/defeat_2.json new file mode 100644 index 000000000..56dae09f4 --- /dev/null +++ b/data/messages/triggers/match_result/defeat_2.json @@ -0,0 +1,19 @@ +{ + "id": "defeat_2", + "trigger": "match_result", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchResult", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Loss: {opponent} defeats us {score}", + "body": "Not our day, coach. {opponent} beat us {score}.\n\nWe need to analyze what went wrong and address the issues before the next match. I'll prepare a detailed breakdown of the key moments.\n\nStay focused \u2014 there's still plenty to play for.", + "translations": { + "es": { + "subject": "Derrota: {opponent} nos vence {score}", + "body": "No fue nuestro d\u00eda, jefe. {opponent} nos gan\u00f3 {score}.\n\nNecesitamos analizar qu\u00e9 sali\u00f3 mal y abordar los problemas antes del pr\u00f3ximo partido. Preparar\u00e9 un desglose detallado de los momentos clave.\n\nMant\u00e9ngase enfocado \u2014 a\u00fan queda mucho en juego." + } + } +} diff --git a/data/messages/triggers/match_result/draw_1.json b/data/messages/triggers/match_result/draw_1.json new file mode 100644 index 000000000..950b494b6 --- /dev/null +++ b/data/messages/triggers/match_result/draw_1.json @@ -0,0 +1,19 @@ +{ + "id": "draw_1", + "trigger": "match_result", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchResult", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Draw: {home} {score} {away}", + "body": "A hard-fought draw today, coach. {home} {score} {away} against {opponent}.\n\nNot the result we wanted, but we showed character. Let's take the positives and work on the weaknesses.\n\nNext match is an opportunity to get back to winning ways.", + "translations": { + "es": { + "subject": "Empate: {home} {score} {away}", + "body": "Un empate muy disputado hoy, jefe. {home} {score} {away} contra {opponent}.\n\nNo es el resultado que quer\u00edamos, pero mostramos car\u00e1cter. Tomemos lo positivo y trabajemos en las debilidades.\n\nEl pr\u00f3ximo partido es una oportunidad para volver a la senda de la victoria." + } + } +} diff --git a/data/messages/triggers/match_result/victory_1.json b/data/messages/triggers/match_result/victory_1.json new file mode 100644 index 000000000..21af1ce5b --- /dev/null +++ b/data/messages/triggers/match_result/victory_1.json @@ -0,0 +1,19 @@ +{ + "id": "victory_1", + "trigger": "match_result", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchResult", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Victory! {score} against {opponent}", + "body": "Great result today, coach! We beat {opponent} {score}.\n\nThe team executed the game plan well. Let's build on this momentum for the next match.\n\nWell done to everyone involved.", + "translations": { + "es": { + "subject": "\u00a1Victoria! {score} contra {opponent}", + "body": "\u00a1Gran resultado hoy, jefe! Hemos ganado a {opponent} {score}.\n\nEl equipo ejecut\u00f3 bien el plan de juego. Construyamos sobre este impulso para el pr\u00f3ximo partido.\n\nBuen trabajo de todos los involucrados." + } + } +} diff --git a/data/messages/triggers/match_result/victory_2.json b/data/messages/triggers/match_result/victory_2.json new file mode 100644 index 000000000..77592f375 --- /dev/null +++ b/data/messages/triggers/match_result/victory_2.json @@ -0,0 +1,19 @@ +{ + "id": "victory_2", + "trigger": "match_result", + "weight": 1, + "sender": "assistant_coach", + "category": "MatchResult", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Win! {home} {score} {away}", + "body": "We did it, coach! A solid {score} victory against {opponent}.\n\nThe players stepped up when it mattered most. Let's keep this level of performance going.\n\nReview the match footage and identify areas to improve for next time.", + "translations": { + "es": { + "subject": "\u00a1Ganamos! {home} {score} {away}", + "body": "\u00a1Lo logramos, jefe! Una s\u00f3lida victoria {score} contra {opponent}.\n\nLos jugadores dieron la talla cuando m\u00e1s importaba. Mantengamos este nivel de rendimiento.\n\nRevisa las im\u00e1genes del partido e identifica \u00e1reas de mejora para la pr\u00f3xima." + } + } +} diff --git a/data/messages/triggers/media/neg_1.json b/data/messages/triggers/media/neg_1.json new file mode 100644 index 000000000..c0b831036 --- /dev/null +++ b/data/messages/triggers/media/neg_1.json @@ -0,0 +1 @@ +{"id":"media_neg_1","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Media questions {team}'s direction","body":"A recent article questions the direction {team} is heading under the current coaching staff. The piece points to inconsistent results and a lack of clear identity.\n\n\"{team} seems to be going backwards,\" the analyst stated.\n\nThe pressure is mounting.","translations":{"es":{"subject":"La prensa cuestiona la direcci\u00f3n de {team}","body":"Un art\u00edculo reciente cuestiona la direcci\u00f3n que est\u00e1 tomando {team} bajo el actual cuerpo t\u00e9cnico. La pieza se\u00f1ala resultados inconsistentes y una falta de identidad clara.\n\n\"{team} parece estar yendo hacia atr\u00e1s,\" declar\u00f3 el analista.\n\nLa presi\u00f3n est\u00e1 aumentando."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_10.json b/data/messages/triggers/media/neg_10.json new file mode 100644 index 000000000..5aec4bf18 --- /dev/null +++ b/data/messages/triggers/media/neg_10.json @@ -0,0 +1 @@ +{"id":"media_neg_10","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Pressure mounts on {team} management","body":"Media pressure is mounting on the management of {team} following a poor run of results. Several outlets are calling for changes in the coaching staff.\n\n\"How much longer will the board tolerate this?\" one article asks.\n\nThe temperature is rising in the hot seat.","translations":{"es":{"subject":"Aumenta la presi\u00f3n sobre la directiva de {team}","body":"La presi\u00f3n medi\u00e1tica est\u00e1 aumentando sobre la directiva de {team} tras una mala racha de resultados. Varios medios est\u00e1n pidiendo cambios en el cuerpo t\u00e9cnico.\n\n\"\u00bfCu\u00e1nto m\u00e1s tolerar\u00e1 el consejo esto?\" pregunta un art\u00edculo.\n\nLa temperatura est\u00e1 subiendo en el banquillo."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_2.json b/data/messages/triggers/media/neg_2.json new file mode 100644 index 000000000..9cefcb297 --- /dev/null +++ b/data/messages/triggers/media/neg_2.json @@ -0,0 +1 @@ +{"id":"media_neg_2","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Criticism grows over {team}'s performances","body":"Criticism is growing in the media over {team}'s recent performances. Several commentators have questioned the team's preparation and tactical approach.\n\n\"There are no excuses for this level of performance,\" one pundit said.\n\nThe fans are也开始 to voice their concerns on social media.","translations":{"es":{"subject":"Crece la cr\u00edtica por el rendimiento de {team}","body":"Crece la cr\u00edtica en los medios por las recientes actuaciones de {team}. Varios comentaristas han cuestionado la preparaci\u00f3n y el enfoque t\u00e1ctico del equipo.\n\n\"No hay excusas para este nivel de rendimiento,\" dijo un experto.\n\nLos aficionados empiezan a expresar sus preocupaciones en redes sociales."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_3.json b/data/messages/triggers/media/neg_3.json new file mode 100644 index 000000000..9a9de4214 --- /dev/null +++ b/data/messages/triggers/media/neg_3.json @@ -0,0 +1 @@ +{"id":"media_neg_3","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"Is {team} in crisis?\" asks sports website","body":"A popular sports website has published an article questioning whether {team} is in crisis mode. The piece highlights the team's slide down the standings.\n\n\"Something needs to change, and fast,\" the article concludes.\n\nThe spotlight is firmly on the coaching staff.","translations":{"es":{"subject":"\"\u00bfEst\u00e1 {team} en crisis?\" pregunta un sitio deportivo","body":"Un popular sitio deportivo ha publicado un art\u00edculo cuestionando si {team} est\u00e1 en modo crisis. La pieza destaca el descenso del equipo en la clasificaci\u00f3n.\n\n\"Algo tiene que cambiar, y r\u00e1pido,\" concluye el art\u00edculo.\n\nEl foco est\u00e1 firmemente en el cuerpo t\u00e9cnico."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_4.json b/data/messages/triggers/media/neg_4.json new file mode 100644 index 000000000..e95ef86ad --- /dev/null +++ b/data/messages/triggers/media/neg_4.json @@ -0,0 +1 @@ +{"id":"media_neg_4","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Analyst slams {team}'s recent form","body":"A well-known analyst has been critical of {team}'s recent form, describing it as \"unacceptable for a team with this roster.\"\n\nThe criticism comes at a difficult time, with the team struggling to find consistency.\n\nMedia scrutiny is intensifying with every poor result.","translations":{"es":{"subject":"Analista critica el estado de forma de {team}","body":"Un conocido analista ha criticado el estado de forma de {team}, calific\u00e1ndolo de \"inaceptable para un equipo con esta plantilla.\"\n\nLa cr\u00edtica llega en un momento dif\u00edcil, con el equipo luchando por encontrar consistencia.\n\nEl escrutinio medi\u00e1tico se intensifica con cada mal resultado."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_5.json b/data/messages/triggers/media/neg_5.json new file mode 100644 index 000000000..410831829 --- /dev/null +++ b/data/messages/triggers/media/neg_5.json @@ -0,0 +1 @@ +{"id":"media_neg_5","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"{team} underachieving\" says league roundup","body":"The weekly league roundup has labeled {team} as the most underachieving team of the split.\n\n\"With the resources at their disposal, {team} should be performing much better,\" the roundup states.\n\nThe narrative is becoming increasingly negative around the club.","translations":{"es":{"subject":"\"{team} est\u00e1 rindiendo por debajo\" dice el resumen de la liga","body":"El resumen semanal de la liga ha calificado a {team} como el equipo que m\u00e1s rinde por debajo de su potencial en el split.\n\n\"Con los recursos a su disposici\u00f3n, {team} deber\u00eda estar rindiendo mucho mejor,\" afirma el resumen.\n\nLa narrativa se est\u00e1 volviendo cada vez m\u00e1s negativa en torno al club."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_6.json b/data/messages/triggers/media/neg_6.json new file mode 100644 index 000000000..497164943 --- /dev/null +++ b/data/messages/triggers/media/neg_6.json @@ -0,0 +1 @@ +{"id":"media_neg_6","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Social media criticizes {team} coach","body":"Social media is buzzing with criticism directed at the {team} coaching staff after a string of disappointing results.\n\nFans are calling for changes and questioning the tactical decisions being made.\n\nOnline pressure can sometimes affect the dressing room.","translations":{"es":{"subject":"Redes sociales critican al entrenador de {team}","body":"Las redes sociales est\u00e1n que arden con cr\u00edticas dirigidas al cuerpo t\u00e9cnico de {team} tras una serie de resultados decepcionantes.\n\nLos aficionados piden cambios y cuestionan las decisiones t\u00e1cticas que se est\u00e1n tomando.\n\nLa presi\u00f3n en l\u00ednea puede afectar a veces al vestuario."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_7.json b/data/messages/triggers/media/neg_7.json new file mode 100644 index 000000000..9bbf62ef5 --- /dev/null +++ b/data/messages/triggers/media/neg_7.json @@ -0,0 +1 @@ +{"id":"media_neg_7","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"What's wrong with {team}?\" \u2014 opinion piece","body":"An opinion piece titled \"What's wrong with {team}?\" has been published, analyzing the team's struggles in detail.\n\nThe author suggests that the team's issues run deeper than just tactics, pointing to potential morale problems.\n\nOpinion pieces like this can influence public perception.","translations":{"es":{"subject":"\"\u00bfQu\u00e9 le pasa a {team}?\" \u2014 art\u00edculo de opini\u00f3n","body":"Se ha publicado un art\u00edculo de opini\u00f3n titulado \"\u00bfQu\u00e9 le pasa a {team}?\" que analiza en detalle las dificultades del equipo.\n\nEl autor sugiere que los problemas del equipo van m\u00e1s all\u00e1 de la t\u00e1ctica, se\u00f1alando posibles problemas de moral.\n\nEste tipo de art\u00edculos pueden influir en la percepci\u00f3n p\u00fablica."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_8.json b/data/messages/triggers/media/neg_8.json new file mode 100644 index 000000000..8c2d1cfb4 --- /dev/null +++ b/data/messages/triggers/media/neg_8.json @@ -0,0 +1 @@ +{"id":"media_neg_8","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{player} underperforming, says media report","body":"A media report has highlighted {player}'s recent drop in form, questioning whether the player's potential is being maximized under the current coaching staff.\n\n\"{player} is a talented player who seems to be regressing,\" the report states.\n\nIndividual player form is often attributed to coaching quality.","translations":{"es":{"subject":"{player} rinde por debajo, seg\u00fan informe de prensa","body":"Un informe de prensa ha destacado la reciente ca\u00edda de forma de {player}, cuestionando si se est\u00e1 maximizando su potencial bajo el actual cuerpo t\u00e9cnico.\n\n\"{player} es un jugador talentoso que parece estar retrocediendo,\" afirma el informe.\n\nEl estado de forma individual a menudo se atribuye a la calidad del entrenamiento."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/neg_9.json b/data/messages/triggers/media/neg_9.json new file mode 100644 index 000000000..65279c59e --- /dev/null +++ b/data/messages/triggers/media/neg_9.json @@ -0,0 +1 @@ +{"id":"media_neg_9","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"{team} needs a rebuild\" claims article","body":"A provocative article claims that {team} needs a complete rebuild, starting from the coaching staff down.\n\nThe piece argues that the current project has run its course and fresh leadership is needed.\n\nArticles like this can create unrest if they gain traction.","translations":{"es":{"subject":"\"{team} necesita una reconstrucci\u00f3n\" afirma un art\u00edculo","body":"Un provocador art\u00edculo afirma que {team} necesita una reconstrucci\u00f3n completa, empezando por el cuerpo t\u00e9cnico.\n\nLa pieza argumenta que el proyecto actual ha llegado a su fin y se necesita un liderazgo fresco.\n\nArt\u00edculos como este pueden crear malestar si ganan tracci\u00f3n."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_1.json b/data/messages/triggers/media/pos_1.json new file mode 100644 index 000000000..116ba589e --- /dev/null +++ b/data/messages/triggers/media/pos_1.json @@ -0,0 +1 @@ +{"id":"media_pos_1","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Sports media praises {team}'s turnaround","body":"Local sports media has highlighted {team}'s impressive turnaround this season. The article praises the team's tactical discipline and fighting spirit.\n\n\"{team} looks like a completely different squad under this coaching staff,\" the report states.\n\nKeep up the good work, coach \u2014 the media is taking notice.","translations":{"es":{"subject":"La prensa elogia la recuperaci\u00f3n de {team}","body":"La prensa deportiva local ha destacado la impresionante recuperaci\u00f3n de {team} esta temporada. El art\u00edculo elogia la disciplina t\u00e1ctica y el esp\u00edritu de lucha del equipo.\n\n\"{team} parece una plantilla completamente diferente bajo este cuerpo t\u00e9cnico,\" afirma el reportaje.\n\nSiga as\u00ed, entrenador \u2014 la prensa lo est\u00e1 notando."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_10.json b/data/messages/triggers/media/pos_10.json new file mode 100644 index 000000000..228b5d036 --- /dev/null +++ b/data/messages/triggers/media/pos_10.json @@ -0,0 +1 @@ +{"id":"media_pos_10","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{team}'s coach named coach of the week","body":"You've been named coach of the week by a leading esports publication following {team}'s recent results.\n\nThe award recognizes your tactical decisions and the team's improved coordination on the Rift.\n\nA well-deserved recognition for all the hard work.","translations":{"es":{"subject":"El entrenador de {team} nombrado entrenador de la semana","body":"Ha sido nombrado entrenador de la semana por una importante publicaci\u00f3n de esports tras los recientes resultados de {team}.\n\nEl premio reconoce sus decisiones t\u00e1cticas y la mejora en la coordinaci\u00f3n del equipo en la Grieta.\n\nUn reconocimiento merecido por todo el trabajo duro."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_2.json b/data/messages/triggers/media/pos_2.json new file mode 100644 index 000000000..f3fc0c4cb --- /dev/null +++ b/data/messages/triggers/media/pos_2.json @@ -0,0 +1 @@ +{"id":"media_pos_2","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Esportmaniacos: \"{team} is a serious contender\"","body":"The Esportmaniacos program has named {team} as one of the most improved teams in the league.\n\n\"They've found an identity and they're sticking to it,\" the analyst commented during the show.\n\nYour work is being noticed at the national level.","translations":{"es":{"subject":"Esportmaniacos: \"{team} es un serio candidato\"","body":"El programa Esportmaniacos ha se\u00f1alado a {team} como uno de los equipos m\u00e1s mejorados de la liga.\n\n\"Han encontrado una identidad y se est\u00e1n aferrando a ella,\" coment\u00f3 el analista durante el programa.\n\nSu trabajo est\u00e1 siendo notado a nivel nacional."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_3.json b/data/messages/triggers/media/pos_3.json new file mode 100644 index 000000000..536f873a5 --- /dev/null +++ b/data/messages/triggers/media/pos_3.json @@ -0,0 +1 @@ +{"id":"media_pos_3","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Interview: {team} coach on the rise","body":"In a recent interview, the head coach of {team} discussed the team's philosophy and long-term vision.\n\nThe interview highlights the positive environment you've built and the trust the players have in your methods.\n\nFans are responding well to the new direction.","translations":{"es":{"subject":"Entrevista: el entrenador de {team} en ascenso","body":"En una reciente entrevista, el entrenador de {team} habl\u00f3 sobre la filosof\u00eda del equipo y su visi\u00f3n a largo plazo.\n\nLa entrevista destaca el ambiente positivo que ha construido y la confianza que los jugadores tienen en sus m\u00e9todos.\n\nLos aficionados est\u00e1n respondiendo bien a la nueva direcci\u00f3n."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_4.json b/data/messages/triggers/media/pos_4.json new file mode 100644 index 000000000..6b62f14bb --- /dev/null +++ b/data/messages/triggers/media/pos_4.json @@ -0,0 +1 @@ +{"id":"media_pos_4","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Analyst: {team} exceeding expectations","body":"A well-known league analyst has published a glowing review of {team}'s performance, stating they are exceeding all pre-season expectations.\n\nThe analysis credits the coaching staff with creating a cohesive unit that punches above its weight.\n\nHigh praise from one of the most respected voices in the scene.","translations":{"es":{"subject":"Analista: {team} supera las expectativas","body":"Un conocido analista de la liga ha publicado una cr\u00edtica muy positiva del rendimiento de {team}, afirmando que superan todas las expectativas previas a la temporada.\n\nEl an\u00e1lisis atribuye al cuerpo t\u00e9cnico la creaci\u00f3n de un equipo cohesionado que rinde por encima de su nivel.\n\nGrandes elogios de una de las voces m\u00e1s respetadas de la escena."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_5.json b/data/messages/triggers/media/pos_5.json new file mode 100644 index 000000000..7bd829b15 --- /dev/null +++ b/data/messages/triggers/media/pos_5.json @@ -0,0 +1 @@ +{"id":"media_pos_5","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Fan confidence at all-time high for {team}","body":"A recent fan survey shows that confidence in {team} has reached an all-time high. Supporters are optimistic about the direction of the club.\n\nSeason ticket sales have increased, and social media engagement is up significantly.\n\nThe fans believe in what you're building.","translations":{"es":{"subject":"La confianza de la afici\u00f3n en {team} est\u00e1 en m\u00e1ximos","body":"Una encuesta reciente muestra que la confianza de la afici\u00f3n en {team} ha alcanzado un m\u00e1ximo hist\u00f3rico. Los seguidores son optimistas sobre la direcci\u00f3n del club.\n\nLas ventas de abonos han aumentado y la actividad en redes sociales ha crecido significativamente.\n\nLos aficionados creen en lo que est\u00e1 construyendo."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_6.json b/data/messages/triggers/media/pos_6.json new file mode 100644 index 000000000..36c6bdcef --- /dev/null +++ b/data/messages/triggers/media/pos_6.json @@ -0,0 +1 @@ +{"id":"media_pos_6","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"{team} is the dark horse of the split\"","body":"Multiple analysts are calling {team} the dark horse of the split. The team's recent performances have caught the attention of the entire league.\n\nThe article highlights your tactical flexibility and the squad's depth as key factors.\n\nRespect is earned, and you're earning it.","translations":{"es":{"subject":"\"{team} es la revelaci\u00f3n del split\"","body":"M\u00faltiples analistas est\u00e1n se\u00f1alando a {team} como la revelaci\u00f3n del split. Las recientes actuaciones del equipo han llamado la atenci\u00f3n de toda la liga.\n\nEl art\u00edculo destaca su flexibilidad t\u00e1ctica y la profundidad de la plantilla como factores clave.\n\nEl respeto se gana, y usted lo est\u00e1 ganando."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_7.json b/data/messages/triggers/media/pos_7.json new file mode 100644 index 000000000..fb5a400f4 --- /dev/null +++ b/data/messages/triggers/media/pos_7.json @@ -0,0 +1 @@ +{"id":"media_pos_7","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{team} featured in positive documentary segment","body":"A sports documentary series has featured {team} in a segment about successful team rebuilds. The piece interviews players and staff about the transformation.\n\nThe documentary highlights the culture shift you've implemented since taking charge.\n\nGreat publicity for the club.","translations":{"es":{"subject":"{team} aparece en documental positivo","body":"Una serie documental deportiva ha presentado a {team} en un segmento sobre reconstrucciones exitosas. La pieza entrevista a jugadores y personal sobre la transformaci\u00f3n.\n\nEl documental destaca el cambio cultural que ha implementado desde que asumi\u00f3 el cargo.\n\nGran publicidad para el club."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_8.json b/data/messages/triggers/media/pos_8.json new file mode 100644 index 000000000..0e6078aa1 --- /dev/null +++ b/data/messages/triggers/media/pos_8.json @@ -0,0 +1 @@ +{"id":"media_pos_8","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{player} praised by media for recent form","body":"{player} has received special praise from the media for their outstanding recent performances with {team}.\n\nThe coverage mentions that your coaching has been instrumental in unlocking {player}'s potential.\n\nPlayer development is one of the key measures of a successful coach.","translations":{"es":{"subject":"La prensa elogia a {player} por su forma reciente","body":"{player} ha recibido elogios especiales de la prensa por sus destacadas actuaciones recientes con {team}.\n\nLa cobertura menciona que su entrenamiento ha sido fundamental para desbloquear el potencial de {player}.\n\nEl desarrollo de jugadores es una de las medidas clave de un entrenador exitoso."}}} \ No newline at end of file diff --git a/data/messages/triggers/media/pos_9.json b/data/messages/triggers/media/pos_9.json new file mode 100644 index 000000000..629c5b639 --- /dev/null +++ b/data/messages/triggers/media/pos_9.json @@ -0,0 +1 @@ +{"id":"media_pos_9","trigger":"media_story","weight":1,"sender":"press","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"\"{team} fans have reason to be excited\"","body":"A popular esports news site has published an article titled \"Why {team} fans have reason to be excited.\"\n\nThe article breaks down the team's improved statistics and the positive trajectory under your leadership.\n\nThe wider community is starting to recognize the progress.","translations":{"es":{"subject":"\"Los aficionados de {team} tienen raz\u00f3n para estar emocionados\"","body":"Un popular sitio de noticias de esports ha publicado un art\u00edculo titulado \"Por qu\u00e9 los aficionados de {team} tienen raz\u00f3n para estar emocionados.\"\n\nEl art\u00edculo desglosa las estad\u00edsticas mejoradas del equipo y la trayectoria positiva bajo su liderazgo.\n\nLa comunidad en general est\u00e1 empezando a reconocer el progreso."}}} \ No newline at end of file diff --git a/data/messages/triggers/player_event/bench_complaint_1.json b/data/messages/triggers/player_event/bench_complaint_1.json new file mode 100644 index 000000000..1e08f3bc0 --- /dev/null +++ b/data/messages/triggers/player_event/bench_complaint_1.json @@ -0,0 +1,21 @@ +{ + "id": "bench_complaint_1", + "trigger": "bench_complaint", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "Normal", + "actions": [ + { "type": "chooseoption", "label": "Promise playing time", "label_key": "be.msg.action.promisePlaytime", "options": [{"id": "promise", "label": "Promise more minutes", "label_key": "be.msg.action.promiseMinutes"}] }, + { "type": "chooseoption", "label": "Explain decision", "label_key": "be.msg.action.explainDecision", "options": [{"id": "explain", "label": "Explain your reasoning", "label_key": "be.msg.action.explainReasoning"}] }, + { "type": "dismiss", "label": "Ignore", "label_key": "be.msg.action.ignore" } + ], + "subject": "{player} wants more game time", + "body": "Coach, {player} has expressed frustration about their lack of playing time recently.\n\nThey feel they deserve a spot in the starting lineup. This could become a bigger issue if not managed carefully.\n\nHow would you like to handle this?", + "translations": { + "es": { + "subject": "{player} quiere m\u00e1s minutos", + "body": "Jefe, {player} ha expresado frustraci\u00f3n por su falta de minutos \u00faltimamente.\n\nCree que merece un puesto en el once inicial. Esto podr\u00eda convertirse en un problema mayor si no se maneja con cuidado.\n\n\u00bfC\u00f3mo le gustar\u00eda manejar esto?" + } + } +} diff --git a/data/messages/triggers/player_event/bench_complaint_2.json b/data/messages/triggers/player_event/bench_complaint_2.json new file mode 100644 index 000000000..36652accf --- /dev/null +++ b/data/messages/triggers/player_event/bench_complaint_2.json @@ -0,0 +1,21 @@ +{ + "id": "bench_complaint_2", + "trigger": "bench_complaint", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "Normal", + "actions": [ + { "type": "chooseoption", "label": "Promise playing time", "label_key": "be.msg.action.promisePlaytime", "options": [{"id": "promise", "label": "Promise more minutes", "label_key": "be.msg.action.promiseMinutes"}] }, + { "type": "chooseoption", "label": "Explain decision", "label_key": "be.msg.action.explainDecision", "options": [{"id": "explain", "label": "Explain your reasoning", "label_key": "be.msg.action.explainReasoning"}] }, + { "type": "dismiss", "label": "Ignore", "label_key": "be.msg.action.ignore" } + ], + "subject": "{player} unhappy with squad role", + "body": "{player} came to see me today \u2014 they're unhappy with their current role in the squad and want more opportunities on the Rift.\n\nIf we can't offer them more playtime soon, they may look for a transfer in the next window.\n\nYour call, coach.", + "translations": { + "es": { + "subject": "{player} insatisfecho con su rol", + "body": "{player} vino a verme hoy \u2014 no est\u00e1 contento con su rol actual en el equipo y quiere m\u00e1s oportunidades en la Grieta.\n\nSi no podemos ofrecerle m\u00e1s minutos pronto, podr\u00eda buscar un traspaso en el pr\u00f3ximo mercado.\n\nUsted decide, jefe." + } + } +} diff --git a/data/messages/triggers/player_event/contract_concern_1.json b/data/messages/triggers/player_event/contract_concern_1.json new file mode 100644 index 000000000..1115560be --- /dev/null +++ b/data/messages/triggers/player_event/contract_concern_1.json @@ -0,0 +1,20 @@ +{ + "id": "contract_concern_1", + "trigger": "contract_concern", + "weight": 1, + "sender": "director_of_football", + "category": "Contract", + "priority": "High", + "actions": [ + { "type": "navigateto", "label": "Open Contract", "label_key": "be.msg.action.openContract", "route": "/dashboard?tab=Squad" }, + { "type": "dismiss", "label": "Later", "label_key": "be.msg.action.later" } + ], + "subject": "Contract running down: {player}", + "body": "I wanted to remind you that {player}'s contract is expiring soon ({days} days remaining).\n\nIf we don't act soon, we risk losing them for nothing. We should consider opening renewal negotiations or listing them for transfer.\n\nWhat's your plan for {player}?", + "translations": { + "es": { + "subject": "Contrato por vencer: {player}", + "body": "Quer\u00eda recordarle que el contrato de {player} expira pronto ({days} d\u00edas restantes).\n\nSi no actuamos pronto, corremos el riesgo de perderlo sin compensaci\u00f3n. Deber\u00edamos considerar abrir negociaciones de renovaci\u00f3n o ponerlo en el mercado.\n\n\u00bfQu\u00e9 plan tiene para {player}?" + } + } +} diff --git a/data/messages/triggers/player_event/contract_concern_2.json b/data/messages/triggers/player_event/contract_concern_2.json new file mode 100644 index 000000000..dab24cfd3 --- /dev/null +++ b/data/messages/triggers/player_event/contract_concern_2.json @@ -0,0 +1,20 @@ +{ + "id": "contract_concern_2", + "trigger": "contract_concern", + "weight": 1, + "sender": "director_of_football", + "category": "Contract", + "priority": "High", + "actions": [ + { "type": "navigateto", "label": "Open Contract", "label_key": "be.msg.action.openContract", "route": "/dashboard?tab=Squad" }, + { "type": "dismiss", "label": "Later", "label_key": "be.msg.action.later" } + ], + "subject": "{player} contract expiring in {days} days", + "body": "This is a reminder about {player}'s contract situation. With only {days} days left on their current deal, we need to make a decision.\n\nOptions:\n\u2022 Open renewal negotiations\n\u2022 List them for transfer while they still have value\n\u2022 Let the contract expire\n\nPlease advise on how you'd like to proceed.", + "translations": { + "es": { + "subject": "El contrato de {player} expira en {days} d\u00edas", + "body": "Este es un recordatorio sobre la situaci\u00f3n contractual de {player}. Con solo {days} d\u00edas restantes en su contrato actual, debemos tomar una decisi\u00f3n.\n\nOpciones:\n\u2022 Abrir negociaciones de renovaci\u00f3n\n\u2022 Ponerlo en el mercado mientras tenga valor\n\u2022 Dejar que el contrato expire\n\nPor favor, ind\u00edquenos c\u00f3mo desea proceder." + } + } +} diff --git a/data/messages/triggers/player_event/happy_player_1.json b/data/messages/triggers/player_event/happy_player_1.json new file mode 100644 index 000000000..69a2cf0dd --- /dev/null +++ b/data/messages/triggers/player_event/happy_player_1.json @@ -0,0 +1,19 @@ +{ + "id": "happy_player_1", + "trigger": "happy_player", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "Low", + "actions": [ + { "type": "acknowledge", "label": "Great!", "label_key": "be.msg.action.great" } + ], + "subject": "{player} is feeling great!", + "body": "Good news, coach \u2014 {player} is in high spirits lately (morale: {morale}%).\n\nHappy players perform better, so keep up whatever you're doing with them. A positive squad atmosphere makes a real difference.", + "translations": { + "es": { + "subject": "\u00a1{player} est\u00e1 de buen humor!", + "body": "Buenas noticias, jefe \u2014 {player} est\u00e1 de muy buen humor \u00faltimamente (moral: {morale}%).\n\nLos jugadores contentos rinden mejor, as\u00ed que siga haciendo lo que est\u00e9 haciendo con ellos. Un ambiente positivo en el equipo marca la diferencia." + } + } +} diff --git a/data/messages/triggers/player_event/happy_player_2.json b/data/messages/triggers/player_event/happy_player_2.json new file mode 100644 index 000000000..c2ec657c8 --- /dev/null +++ b/data/messages/triggers/player_event/happy_player_2.json @@ -0,0 +1,19 @@ +{ + "id": "happy_player_2", + "trigger": "happy_player", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "Low", + "actions": [ + { "type": "acknowledge", "label": "Great!", "label_key": "be.msg.action.great" } + ], + "subject": "Positive vibes from {player}", + "body": "Just wanted to share that {player} is really enjoying their time at the club right now (morale: {morale}%).\n\nThey've been training hard and supporting teammates. It's great to see such a positive attitude in the squad.\n\nKeep nurturing that environment!", + "translations": { + "es": { + "subject": "Buenas vibras de {player}", + "body": "Solo quer\u00eda compartir que {player} est\u00e1 disfrutando mucho su tiempo en el club (moral: {morale}%).\n\nHa estado entrenando duro y apoyando a sus compa\u00f1eros. Es genial ver una actitud tan positiva en la plantilla.\n\n\u00a1Siga cultivando ese ambiente!" + } + } +} diff --git a/data/messages/triggers/player_event/low_morale_1.json b/data/messages/triggers/player_event/low_morale_1.json new file mode 100644 index 000000000..c00d6c33a --- /dev/null +++ b/data/messages/triggers/player_event/low_morale_1.json @@ -0,0 +1,21 @@ +{ + "id": "low_morale_1", + "trigger": "low_morale", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "High", + "actions": [ + { "type": "chooseoption", "label": "Talk to player", "label_key": "be.msg.action.talkToPlayer", "options": [{"id": "talk", "label": "Have a conversation", "label_key": "be.msg.action.haveConversation"}] }, + { "type": "chooseoption", "label": "Give time off", "label_key": "be.msg.action.giveTimeOff", "options": [{"id": "rest", "label": "Grant rest days", "label_key": "be.msg.action.grantRest"}] }, + { "type": "dismiss", "label": "Ignore", "label_key": "be.msg.action.ignore" } + ], + "subject": "Morale concern: {player}", + "body": "Coach, we've noticed that {player}'s morale has dropped significantly. Currently at {morale}%.\n\nThis could affect their performance in matches and training. It might be worth having a word with them to understand what's going on.", + "translations": { + "es": { + "subject": "Preocupaci\u00f3n por la moral: {player}", + "body": "Jefe, hemos notado que la moral de {player} ha bajado significativamente. Actualmente en {morale}%.\n\nEsto podr\u00eda afectar su rendimiento en partidos y entrenamientos. Podr\u00eda valer la pena hablar con \u00e9l para entender qu\u00e9 sucede." + } + } +} diff --git a/data/messages/triggers/player_event/low_morale_2.json b/data/messages/triggers/player_event/low_morale_2.json new file mode 100644 index 000000000..9751e959a --- /dev/null +++ b/data/messages/triggers/player_event/low_morale_2.json @@ -0,0 +1,21 @@ +{ + "id": "low_morale_2", + "trigger": "low_morale", + "weight": 1, + "sender": "player_relations", + "category": "PlayerMorale", + "priority": "High", + "actions": [ + { "type": "chooseoption", "label": "Talk to player", "label_key": "be.msg.action.talkToPlayer", "options": [{"id": "talk", "label": "Have a conversation", "label_key": "be.msg.action.haveConversation"}] }, + { "type": "chooseoption", "label": "Give time off", "label_key": "be.msg.action.giveTimeOff", "options": [{"id": "rest", "label": "Grant rest days", "label_key": "be.msg.action.grantRest"}] }, + { "type": "dismiss", "label": "Ignore", "label_key": "be.msg.action.ignore" } + ], + "subject": "{player} seems unhappy", + "body": "I wanted to bring this to your attention \u2014 {player} appears to be unhappy (morale: {morale}%).\n\nIf left unaddressed, this could create tension in the squad. A conversation or some time off might help lift their spirits.", + "translations": { + "es": { + "subject": "{player} parece infeliz", + "body": "Quer\u00eda llamar su atenci\u00f3n sobre esto \u2014 {player} parece estar infeliz (moral: {morale}%).\n\nSi no se aborda, podr\u00eda crear tensi\u00f3n en la plantilla. Una conversaci\u00f3n o un tiempo libre podr\u00edan ayudar a levantar su \u00e1nimo." + } + } +} diff --git a/data/messages/triggers/podcast/podcast_1.json b/data/messages/triggers/podcast/podcast_1.json new file mode 100644 index 000000000..7a18e9350 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_1.json @@ -0,0 +1 @@ +{"id":"podcast_1","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo Podcast talks about {team}","body":"The Al L\u00edo Podcast has dedicated a segment to discuss {team}'s current situation. The panel had mixed opinions about the team's prospects.\n\n\"{team} is an interesting case study,\" one of the hosts commented.\n\nBeing talked about on Al L\u00edo means you're on the radar.","translations":{"es":{"subject":"Al L\u00edo Podcast habla sobre {team}","body":"El Al L\u00edo Podcast ha dedicado un segmento a discutir la situaci\u00f3n actual de {team}. El panel tuvo opiniones encontradas sobre las perspectivas del equipo.\n\n\"{team} es un caso de estudio interesante,\" coment\u00f3 uno de los presentadores.\n\nQue hablen de ti en Al L\u00edo significa que est\u00e1s en el radar."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_10.json b/data/messages/triggers/podcast/podcast_10.json new file mode 100644 index 000000000..663ed7ca3 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_10.json @@ -0,0 +1 @@ +{"id":"podcast_10","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo predice buen futuro para {team}","body":"En el Al L\u00edo Podcast, un conocido analista predijo que {team} tiene un futuro prometedor si mantiene el rumbo actual.\n\n\"Estoy viendo cosas muy interesantes en {team}. Dadles tiempo y dar\u00e1n que hablar,\" pronostic\u00f3.\n\nPredicciones positivas de figuras medi\u00e1ticas pueden aumentar la moral del club.","translations":{"es":{"subject":"Al L\u00edo predice buen futuro para {team}","body":"En el Al L\u00edo Podcast, un conocido analista predijo que {team} tiene un futuro prometedor si mantiene el rumbo actual.\n\n\"Estoy viendo cosas muy interesantes en {team}. Dadles tiempo y dar\u00e1n que hablar,\" pronostic\u00f3.\n\nPredicciones positivas de figuras medi\u00e1ticas pueden aumentar la moral del club."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_2.json b/data/messages/triggers/podcast/podcast_2.json new file mode 100644 index 000000000..e00f4c077 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_2.json @@ -0,0 +1 @@ +{"id":"podcast_2","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo: \"{team} necesita un cambio\"","body":"En el \u00faltimo Al L\u00edo Podcast, varios panelistas coincidieron en que {team} necesita un cambio urgente.\n\n\"No pueden seguir as\u00ed,\" dijo uno de ellos. \"Algo tiene que moverse en ese vestuario.\"\n\nEl programa tuvo bastante audiencia y el tema est\u00e1 dando que hablar.","translations":{"es":{"subject":"Al L\u00edo: \"{team} needs a change\"","body":"In the latest Al L\u00edo Podcast, several panelists agreed that {team} needs an urgent change.\n\n\"They can't go on like this,\" one of them said. \"Something has to move in that locker room.\"\n\nThe show had a significant audience and the topic is generating discussion."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_3.json b/data/messages/triggers/podcast/podcast_3.json new file mode 100644 index 000000000..3185fb70f --- /dev/null +++ b/data/messages/triggers/podcast/podcast_3.json @@ -0,0 +1 @@ +{"id":"podcast_3","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo: {team} protagonista del debate","body":"El \u00faltimo Al L\u00edo Podcast tuvo a {team} como tema principal de debate. Los contertulios analizaron la situaci\u00f3n del equipo desde todos los \u00e1ngulos.\n\n\"Es un equipo que genera mucha opini\u00f3n,\" resumieron.\n\nEl debate fue intenso y dur\u00f3 casi media hora.","translations":{"es":{"subject":"Al L\u00edo: {team} protagonista del debate","body":"El \u00faltimo Al L\u00edo Podcast tuvo a {team} como tema principal de debate. Los contertulios analizaron la situaci\u00f3n del equipo desde todos los \u00e1ngulos.\n\n\"Es un equipo que genera mucha opini\u00f3n,\" resumieron.\n\nEl debate fue intenso y dur\u00f3 casi media hora."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_4.json b/data/messages/triggers/podcast/podcast_4.json new file mode 100644 index 000000000..115cba774 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_4.json @@ -0,0 +1 @@ +{"id":"podcast_4","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo destaca a {player} de {team}","body":"En el Al L\u00edo Podcast destacaron la actuaci\u00f3n de {player}, jugador de {team}, como una de las mejores de la semana.\n\n\"{player} est\u00e1 en un nivel espectacular,\" dijeron. \"Merece estar en la conversaci\u00f3n de mejor jugador.\"\n\nSiempre es buena se\u00f1al que hablen bien de tus jugadores.","translations":{"es":{"subject":"Al L\u00edo destaca a {player} de {team}","body":"En el Al L\u00edo Podcast destacaron la actuaci\u00f3n de {player}, jugador de {team}, como una de las mejores de la semana.\n\n\"{player} est\u00e1 en un nivel espectacular,\" dijeron. \"Merece estar en la conversaci\u00f3n de mejor jugador.\"\n\nSiempre es buena se\u00f1al que hablen bien de tus jugadores."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_5.json b/data/messages/triggers/podcast/podcast_5.json new file mode 100644 index 000000000..feb1f7301 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_5.json @@ -0,0 +1 @@ +{"id":"podcast_5","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo: \"{team} necesita paciencia\"","body":"En el Al L\u00edo Podcast, algunos panelistas defendieron que {team} necesita tiempo y paciencia para que el proyecto funcione.\n\n\"No se puede construir un equipo ganador de la noche a la ma\u00f1ana,\" argumentaron.\n\nOtros no estuvieron tan de acuerdo, generando un animado debate.","translations":{"es":{"subject":"Al L\u00edo: \"{team} needs patience\"","body":"On the Al L\u00edo Podcast, some panelists argued that {team} needs time and patience for the project to work.\n\n\"You can't build a winning team overnight,\" they argued.\n\nOthers disagreed, sparking a lively debate."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_6.json b/data/messages/triggers/podcast/podcast_6.json new file mode 100644 index 000000000..e9d196d80 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_6.json @@ -0,0 +1 @@ +{"id":"podcast_6","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo critica la gesti\u00f3n de {team}","body":"El Al L\u00edo Podcast fue cr\u00edtico con la gesti\u00f3n deportiva de {team}, se\u00f1alando errores en la planificaci\u00f3n de la plantilla.\n\n\"Los fichajes no han funcionado y el estilo de juego no se ve,\" comentaron.\n\nLas cr\u00edticas en programas populares pueden calar en la opini\u00f3n p\u00fablica.","translations":{"es":{"subject":"Al L\u00edo critica la gesti\u00f3n de {team}","body":"El Al L\u00edo Podcast fue cr\u00edtico con la gesti\u00f3n deportiva de {team}, se\u00f1alando errores en la planificaci\u00f3n de la plantilla.\n\n\"Los fichajes no han funcionado y el estilo de juego no se ve,\" comentaron.\n\nLas cr\u00edticas en programas populares pueden calar en la opini\u00f3n p\u00fablica."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_7.json b/data/messages/triggers/podcast/podcast_7.json new file mode 100644 index 000000000..73ead2df7 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_7.json @@ -0,0 +1 @@ +{"id":"podcast_7","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo: \"El proyecto de {team} ilusiona\"","body":"En el Al L\u00edo Podcast se habl\u00f3 con optimismo del proyecto de {team}. Varios contertulios coincidieron en que el equipo va por buen camino.\n\n\"Se est\u00e1n haciendo las cosas bien, aunque los resultados no acompa\u00f1en,\" dijeron.\n\nQue hablen bien en Al L\u00edo es buena publicidad para el club.","translations":{"es":{"subject":"Al L\u00edo: \"El proyecto de {team} ilusiona\"","body":"En el Al L\u00edo Podcast se habl\u00f3 con optimismo del proyecto de {team}. Varios contertulios coincidieron en que el equipo va por buen camino.\n\n\"Se est\u00e1n haciendo las cosas bien, aunque los resultados no acompa\u00f1en,\" dijeron.\n\nQue hablen bien en Al L\u00edo es buena publicidad para el club."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_8.json b/data/messages/triggers/podcast/podcast_8.json new file mode 100644 index 000000000..5702b3353 --- /dev/null +++ b/data/messages/triggers/podcast/podcast_8.json @@ -0,0 +1 @@ +{"id":"podcast_8","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo debate sobre el futuro de {player}","body":"El Al L\u00edo Podcast dedic\u00f3 un segmento a debatir el futuro de {player}, actualmente en {team}.\n\n\"{player} tiene nivel para estar en un equipo mejor,\" opinaron algunos.\n\nEstos rumores pueden afectar la concentraci\u00f3n del jugador.","translations":{"es":{"subject":"Al L\u00edo debate sobre el futuro de {player}","body":"El Al L\u00edo Podcast dedic\u00f3 un segmento a debatir el futuro de {player}, actualmente en {team}.\n\n\"{player} tiene nivel para estar en un equipo mejor,\" opinaron algunos.\n\nEstos rumores pueden afectar la concentraci\u00f3n del jugador."}}} \ No newline at end of file diff --git a/data/messages/triggers/podcast/podcast_9.json b/data/messages/triggers/podcast/podcast_9.json new file mode 100644 index 000000000..3d187689c --- /dev/null +++ b/data/messages/triggers/podcast/podcast_9.json @@ -0,0 +1 @@ +{"id":"podcast_9","trigger":"podcast","weight":1,"sender":"al_lio","category":"Media","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Al L\u00edo: \"{team} me preocupa\"","body":"Uno de los contertulios del Al L\u00edo Podcast expres\u00f3 su preocupaci\u00f3n por la situaci\u00f3n de {team}.\n\n\"Me preocupa {team} porque no veo una reacci\u00f3n,\" dijo. \"Los equipos malos reaccionan, pero {team} parece estancado.\"\n\nComentarios como este pueden generar presi\u00f3n adicional.","translations":{"es":{"subject":"Al L\u00edo: \"{team} me preocupa\"","body":"Uno de los contertulios del Al L\u00edo Podcast expres\u00f3 su preocupaci\u00f3n por la situaci\u00f3n de {team}.\n\n\"Me preocupa {team} porque no veo una reacci\u00f3n,\" dijo. \"Los equipos malos reaccionan, pero {team} parece estancado.\"\n\nComentarios como este pueden generar presi\u00f3n adicional."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_1.json b/data/messages/triggers/rival_interest/rival_1.json new file mode 100644 index 000000000..2f8d61ca4 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_1.json @@ -0,0 +1 @@ +{"id":"rival_1","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} eyeing {player}","body":"I've heard through the grapevine that {rival} is showing interest in {player}. They've been asking questions and may be preparing a bid.\n\nShould we be concerned, or is {player} not for sale?","translations":{"es":{"subject":"{rival} tiene en el punto de mira a {player}","body":"Me han llegado rumores de que {rival} est\u00e1 interesada en {player}. Est\u00e1n haciendo preguntas y podr\u00edan preparar una oferta.\n\n\u00bfDeber\u00edamos preocuparnos o {player} es intransferible?"}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_10.json b/data/messages/triggers/rival_interest/rival_10.json new file mode 100644 index 000000000..947a2e16b --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_10.json @@ -0,0 +1 @@ +{"id":"rival_10","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} ready to move for {player}","body":"Sources indicate that {rival} is ready to make a concrete move for {player}. A formal offer could arrive within days.\n\nWe should prepare our response.","translations":{"es":{"subject":"{rival} lista para moverse por {player}","body":"Fuentes indican que {rival} est\u00e1 lista para hacer un movimiento concreto por {player}. Una oferta formal podr\u00eda llegar en cuesti\u00f3n de d\u00edas.\n\nDeber\u00edamos preparar nuestra respuesta."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_2.json b/data/messages/triggers/rival_interest/rival_2.json new file mode 100644 index 000000000..69344d5d1 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_2.json @@ -0,0 +1 @@ +{"id":"rival_2","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} inquires about {player}","body":"{rival} has made informal inquiries about {player}'s availability. They seem keen on strengthening their roster and see {player} as a target.\n\nNo formal offer yet, but I wanted to keep you informed.","translations":{"es":{"subject":"{rival} pregunta por {player}","body":"{rival} ha hecho consultas informales sobre la disponibilidad de {player}. Parecen estar interesados en reforzar su plantilla y ven a {player} como objetivo.\n\nA\u00fan no hay oferta formal, pero quer\u00eda mantenerle informado."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_3.json b/data/messages/triggers/rival_interest/rival_3.json new file mode 100644 index 000000000..1b71af7e3 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_3.json @@ -0,0 +1 @@ +{"id":"rival_3","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} scouting {player}","body":"Our sources report that {rival} has been scouting {player} in recent matches. This usually precedes a transfer approach.\n\nWe should decide on our stance before they make a move.","translations":{"es":{"subject":"{rival} ojea a {player}","body":"Nuestras fuentes informan que {rival} ha estado ojeando a {player} en partidos recientes. Esto suele preceder a un acercamiento de traspaso.\n\nDeber\u00edamos decidir nuestra postura antes de que se muevan."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_4.json b/data/messages/triggers/rival_interest/rival_4.json new file mode 100644 index 000000000..92b6bbfe1 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_4.json @@ -0,0 +1 @@ +{"id":"rival_4","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} wants {player}","body":"Word around the league is that {rival} wants to sign {player}. Their manager is apparently a big admirer.\n\nThis could be serious \u2014 we may receive a formal offer soon.","translations":{"es":{"subject":"{rival} quiere a {player}","body":"Se rumorea en la liga que {rival} quiere fichar a {player}. Su entrenador es, aparentemente, un gran admirador.\n\nEsto podr\u00eda ser serio \u2014 puede que recibamos una oferta formal pronto."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_5.json b/data/messages/triggers/rival_interest/rival_5.json new file mode 100644 index 000000000..43fe960ca --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_5.json @@ -0,0 +1 @@ +{"id":"rival_5","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} monitors {player}'s contract","body":"I've learned that {rival} is closely monitoring {player}'s contract situation. If we don't extend soon, they may try to capitalize.\n\nSomething to consider in our planning.","translations":{"es":{"subject":"{rival} sigue el contrato de {player}","body":"He sabido que {rival} est\u00e1 siguiendo de cerca la situaci\u00f3n contractual de {player}. Si no renovamos pronto, podr\u00edan intentar aprovecharse.\n\nAlgo a considerar en nuestra planificaci\u00f3n."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_6.json b/data/messages/triggers/rival_interest/rival_6.json new file mode 100644 index 000000000..2fa1cb50f --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_6.json @@ -0,0 +1 @@ +{"id":"rival_6","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} considering bid for {player}","body":"{rival} is reportedly considering a bid for {player}. They see {player} as a key addition to their squad for the upcoming split.\n\nI'll keep you posted if anything develops.","translations":{"es":{"subject":"{rival} valora una oferta por {player}","body":"{rival} est\u00e1 considerando hacer una oferta por {player}. Nos ven como una adici\u00f3n clave para su plantilla de cara al pr\u00f3ximo split.\n\nLe mantendr\u00e9 informado si hay novedades."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_7.json b/data/messages/triggers/rival_interest/rival_7.json new file mode 100644 index 000000000..17ae81965 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_7.json @@ -0,0 +1 @@ +{"id":"rival_7","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"Rumor: {rival} interested in {player}","body":"Transfer rumors are circulating that {rival} is interested in signing {player}. While it's just speculation for now, these rumors often have some truth behind them.\n\nThought you should know.","translations":{"es":{"subject":"Rumor: {rival} interesada en {player}","body":"Circulan rumores de traspaso que {rival} est\u00e1 interesada en fichar a {player}. Aunque por ahora son solo especulaciones, estos rumores suelen tener algo de verdad.\n\nCre\u00ed que deb\u00eda saberlo."}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_8.json b/data/messages/triggers/rival_interest/rival_8.json new file mode 100644 index 000000000..16ed61e06 --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_8.json @@ -0,0 +1 @@ +{"id":"rival_8","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{rival} makes contact about {player}","body":"{rival} has made initial contact regarding {player}. They've requested information about the player's availability and wage demands.\n\nThis could progress quickly. How do you want to handle it?","translations":{"es":{"subject":"{rival} contacta por {player}","body":"{rival} ha contactado para preguntar por {player}. Han solicitado informaci\u00f3n sobre la disponibilidad del jugador y sus demandas salariales.\n\nEsto podr\u00eda avanzar r\u00e1pido. \u00bfC\u00f3mo quiere manejarlo?"}}} \ No newline at end of file diff --git a/data/messages/triggers/rival_interest/rival_9.json b/data/messages/triggers/rival_interest/rival_9.json new file mode 100644 index 000000000..482caa08b --- /dev/null +++ b/data/messages/triggers/rival_interest/rival_9.json @@ -0,0 +1 @@ +{"id":"rival_9","trigger":"rival_interest","weight":1,"sender":"director_of_football","category":"Transfer","priority":"Normal","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"{player} attracting attention from {rival}","body":"{player}'s performances have attracted attention from {rival}. They've been asking around about the player and seem genuinely interested.\n\nWe may need to make a decision on {player}'s future soon.","translations":{"es":{"subject":"{player} atrae la atenci\u00f3n de {rival}","body":"Las actuaciones de {player} han atra\u00eddo la atenci\u00f3n de {rival}. Han estado preguntando y parecen genuinamente interesados.\n\nPuede que tengamos que tomar una decisi\u00f3n sobre el futuro de {player} pronto."}}} \ No newline at end of file diff --git a/data/messages/triggers/scout/potential.json b/data/messages/triggers/scout/potential.json new file mode 100644 index 000000000..84ffa88ef --- /dev/null +++ b/data/messages/triggers/scout/potential.json @@ -0,0 +1,19 @@ +{ + "id": "potential_report", + "trigger": "potential_report", + "weight": 1, + "sender": "scout", + "category": "Training", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Potential report completed: {player}", + "body": "The potential assessment for {player} has been completed.\n\n{player} has a revealed potential of {potential}. This gives us a clearer picture of their long-term development prospects.", + "translations": { + "es": { + "subject": "Informe de potencial completado: {player}", + "body": "La evaluaci\u00f3n de potencial de {player} ha sido completada.\n\n{player} tiene un potencial revelado de {potential}. Esto nos da una imagen m\u00e1s clara de sus perspectivas de desarrollo a largo plazo." + } + } +} diff --git a/data/messages/triggers/scout/report.json b/data/messages/triggers/scout/report.json new file mode 100644 index 000000000..8edce014b --- /dev/null +++ b/data/messages/triggers/scout/report.json @@ -0,0 +1,19 @@ +{ + "id": "scout_report", + "trigger": "scout_report", + "weight": 1, + "sender": "scout", + "category": "ScoutReport", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Scout report: {player}", + "body": "I've completed my assessment of {player}, a {position} currently at {team}.\n\nThe player shows {rating} potential. Further details are available in the report.\n\nRecommendation: Worth monitoring closely.", + "translations": { + "es": { + "subject": "Informe de ojeo: {player}", + "body": "He completado mi evaluaci\u00f3n de {player}, un {position} actualmente en {team}.\n\nEl jugador muestra un potencial {rating}. M\u00e1s detalles disponibles en el informe.\n\nRecomendaci\u00f3n: Vale la pena vigilario de cerca." + } + } +} diff --git a/data/messages/triggers/season/schedule.json b/data/messages/triggers/season/schedule.json new file mode 100644 index 000000000..80ed1b767 --- /dev/null +++ b/data/messages/triggers/season/schedule.json @@ -0,0 +1,19 @@ +{ + "id": "season_schedule", + "trigger": "season_schedule", + "weight": 1, + "sender": "board", + "category": "LeagueInfo", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "{league} season schedule released", + "body": "The schedule for the upcoming {league} season has been released.\n\nThe season begins on {start}. Make sure your squad is ready.\n\nWe'll be facing tough competition this year \u2014 prepare accordingly.", + "translations": { + "es": { + "subject": "Calendario de {league} publicado", + "body": "El calendario de la pr\u00f3xima temporada de {league} ha sido publicado.\n\nLa temporada comienza el {start}. Aseg\u00farese de que su plantilla est\u00e9 lista.\n\nNos enfrentaremos a una competencia dura este a\u00f1o \u2014 prep\u00e1rese en consecuencia." + } + } +} diff --git a/data/messages/triggers/season/schedule_2.json b/data/messages/triggers/season/schedule_2.json new file mode 100644 index 000000000..b02651ea2 --- /dev/null +++ b/data/messages/triggers/season/schedule_2.json @@ -0,0 +1,19 @@ +{ + "id": "schedule_2", + "trigger": "season_schedule", + "weight": 1, + "sender": "board", + "category": "LeagueInfo", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "{league} season confirmed", + "body": "The fixture list for the upcoming {league} season has been confirmed. The action begins on {start}.\n\nStudy the opening fixtures carefully \u2014 a strong start can set the tone for the whole campaign. Make sure your key players are match-fit and ready to go.\n\nGood luck this season!", + "translations": { + "es": { + "subject": "Temporada de {league} confirmada", + "body": "El calendario de la pr\u00f3xima temporada de {league} ha sido confirmado. La acci\u00f3n comienza el {start}.\n\nEstudia los primeros partidos con atenci\u00f3n \u2014 un buen arranque puede marcar el tono de toda la campa\u00f1a. Aseg\u00farate de que tus jugadores clave est\u00e9n en forma.\n\n\u00a1Buena suerte esta temporada!" + } + } +} diff --git a/data/messages/triggers/staff/advice.json b/data/messages/triggers/staff/advice.json new file mode 100644 index 000000000..89835a25b --- /dev/null +++ b/data/messages/triggers/staff/advice.json @@ -0,0 +1,19 @@ +{ + "id": "staff_advice", + "trigger": "staff_advice", + "weight": 1, + "sender": "assistant_coach", + "category": "Training", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Staff vacancies at {team}", + "body": "Coach, I've reviewed the staff situation at {team} and wanted to point out a few things:\n\n\u2022 A good Coach will significantly improve training effectiveness \u2014 your players will develop faster.\n\u2022 A qualified Physio helps with injury prevention and speeds up recovery between matches.\n\u2022 Our Scouts can help identify transfer targets and assess opponents.\n\nI strongly recommend filling these vacancies before the season starts. You can find available staff in the Staff section.\n\nTake a look when you can.", + "translations": { + "es": { + "subject": "Vacantes de personal en {team}", + "body": "Jefe, he revisado la situaci\u00f3n del personal en {team} y quer\u00eda se\u00f1alar algunas cosas:\n\n\u2022 Un buen Entrenador mejorar\u00e1 significativamente la efectividad del entrenamiento \u2014 sus jugadores se desarrollar\u00e1n m\u00e1s r\u00e1pido.\n\u2022 Un Fisioterapeuta cualificado ayuda con la prevenci\u00f3n de lesiones y acelera la recuperaci\u00f3n entre partidos.\n\u2022 Nuestros Ojeadores pueden ayudar a identificar objetivos de fichaje y evaluar rivales.\n\nRecomiendo encarecidamente cubrir las vacantes antes de que comience la temporada. Puede encontrar personal disponible en la secci\u00f3n de Personal.\n\n\u00c9chele un vistazo cuando pueda." + } + } +} diff --git a/data/messages/triggers/stream/neg_1.json b/data/messages/triggers/stream/neg_1.json new file mode 100644 index 000000000..91a83868b --- /dev/null +++ b/data/messages/triggers/stream/neg_1.json @@ -0,0 +1 @@ +{"id":"stream_neg_1","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} no me gusta nada\"","body":"el_yuste ha sido cr\u00edtico con {team} en su \u00faltimo directo: \"{team} no me gusta nada, no s\u00e9 qu\u00e9 le ven.\"\n\n\"Juegan sin alma, sin ideas. Necesitan un cambio ya,\" a\u00f1adi\u00f3.\n\nLas cr\u00edticas de streamers populares llegan a mucha gente.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_10.json b/data/messages/triggers/stream/neg_10.json new file mode 100644 index 000000000..a45ff3ee1 --- /dev/null +++ b/data/messages/triggers/stream/neg_10.json @@ -0,0 +1 @@ +{"id":"stream_neg_10","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} no va a ning\u00fan sitio\"","body":"El streamer ha sentenciado que {team} \"no va a ningun sitio\" con el proyecto actual.\n\n\"{team} no va a ning\u00fan sitio. No veo progresi\u00f3n, no veo ideas, no veo futuro,\" argument\u00f3.\n\nComentarios tan contundentes pueden influir en la moral de la afici\u00f3n.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_2.json b/data/messages/triggers/stream/neg_2.json new file mode 100644 index 000000000..d58382d6d --- /dev/null +++ b/data/messages/triggers/stream/neg_2.json @@ -0,0 +1 @@ +{"id":"stream_neg_2","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste se burla de {team}","body":"El streamer el_yuste se ha burlado del \u00faltimo partido de {team} en su canal.\n\n\"{team} es que no puede ser, cada vez los veo peor. Es para llorar,\" dijo entre risas.\n\nLas burlas en streams virales pueden afectar la imagen del club.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_3.json b/data/messages/triggers/stream/neg_3.json new file mode 100644 index 000000000..9e7a5786b --- /dev/null +++ b/data/messages/triggers/stream/neg_3.json @@ -0,0 +1 @@ +{"id":"stream_neg_3","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} es un desastre\"","body":"el_yuste ha calificado a {team} de \"desastre\" en su \u00faltimo stream.\n\n\"No hay por donde cogerlos. {team} es un desastre de principio a fin,\" sentenci\u00f3.\n\nEste tipo de comentarios pueden calar en la opini\u00f3n p\u00fablica.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_4.json b/data/messages/triggers/stream/neg_4.json new file mode 100644 index 000000000..ce8e7d81b --- /dev/null +++ b/data/messages/triggers/stream/neg_4.json @@ -0,0 +1 @@ +{"id":"stream_neg_4","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} no mejora nunca\"","body":"El streamer ha criticado la falta de progreso de {team}: \"{team} es que no mejora nunca, siempre los mismos errores.\"\n\n\"No aprenden, no cambian, no evolucionan. Es frustrante verlos,\" concluy\u00f3.\n\nLas cr\u00edticas reiteradas pueden afectar la moral del equipo.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_5.json b/data/messages/triggers/stream/neg_5.json new file mode 100644 index 000000000..ef2880b2b --- /dev/null +++ b/data/messages/triggers/stream/neg_5.json @@ -0,0 +1 @@ +{"id":"stream_neg_5","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{player} deber\u00eda salir de {team}\"","body":"el_yuste ha opinado en directo que {player} deber\u00eda buscar salir de {team} para seguir creciendo.\n\n\"{player} tiene talento pero en {team} no va a explotar nunca. Necesita un cambio de aires,\" dijo.\n\nEstos comentarios pueden crear inquietud en el jugador.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_6.json b/data/messages/triggers/stream/neg_6.json new file mode 100644 index 000000000..7494b015e --- /dev/null +++ b/data/messages/triggers/stream/neg_6.json @@ -0,0 +1 @@ +{"id":"stream_neg_6","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"Qu\u00e9 pena de {team}\"","body":"El streamer ha expresado su decepci\u00f3n con {team}: \"Qu\u00e9 pena de {team}, con lo que promet\u00edan.\"\n\n\"Pensaba que este a\u00f1o iban a dar el salto, pero est\u00e1n peor que nunca,\" lament\u00f3.\n\nLa decepci\u00f3n de los seguidores puede contagiar al vestuario.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_7.json b/data/messages/triggers/stream/neg_7.json new file mode 100644 index 000000000..c7f98d276 --- /dev/null +++ b/data/messages/triggers/stream/neg_7.json @@ -0,0 +1 @@ +{"id":"stream_neg_7","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} necesita reset\"","body":"el_yuste ha recomendado en su canal que {team} necesita un reset completo.\n\n\"{team} necesita resetear, cambiar el proyecto entero. Esto no funciona,\" afirm\u00f3.\n\nLos llamados a cambios radicales pueden generar presi\u00f3n en la directiva.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_8.json b/data/messages/triggers/stream/neg_8.json new file mode 100644 index 000000000..75e426e49 --- /dev/null +++ b/data/messages/triggers/stream/neg_8.json @@ -0,0 +1 @@ +{"id":"stream_neg_8","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste se aburre viendo a {team}","body":"El streamer ha dicho en directo que se aburre viendo jugar a {team}.\n\n\"{team} es que es un sopor, no crean nada, no arriesgan, es horrible de ver,\" se quej\u00f3.\n\nLas cr\u00edticas al estilo de juego pueden afectar la percepci\u00f3n del equipo.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/neg_9.json b/data/messages/triggers/stream/neg_9.json new file mode 100644 index 000000000..c5de3cc21 --- /dev/null +++ b/data/messages/triggers/stream/neg_9.json @@ -0,0 +1 @@ +{"id":"stream_neg_9","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} es una verg\u00fcenza\"","body":"el_yuste ha sido muy duro con {team} calific\u00e1ndolos de \"verguenza\" en su \u00faltimo directo.\n\n\"Un equipo con esa plantilla no puede jugar as\u00ed. Es una verg\u00fcenza,\" dijo visiblemente enfadado.\n\nLas cr\u00edticas fuertes pueden escalar y llegar a medios tradicionales.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_1.json b/data/messages/triggers/stream/pos_1.json new file mode 100644 index 000000000..2aa2a9829 --- /dev/null +++ b/data/messages/triggers/stream/pos_1.json @@ -0,0 +1 @@ +{"id":"stream_pos_1","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} est\u00e1 en racha!\"","body":"El streamer el_yuste ha comentado en su \u00faltimo directo que {team} est\u00e1 en una racha impresionante.\n\n\"{team} est\u00e1 jugando muy bien, eh. Ojo con ellos, que van a dar guerra,\" dijo entre risas.\n\nSiempre es buena se\u00f1al cuando el_yuste habla bien de tu equipo.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_10.json b/data/messages/triggers/stream/pos_10.json new file mode 100644 index 000000000..2e9c411ed --- /dev/null +++ b/data/messages/triggers/stream/pos_10.json @@ -0,0 +1 @@ +{"id":"stream_pos_10","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} se ha ganado mi respeto\"","body":"el_yuste ha declarado en su \u00faltimo stream que {team} se ha ganado su respeto esta temporada.\n\n\"Al principio no cre\u00eda en {team}, pero me han callado la boca. Lo est\u00e1n haciendo genial,\" reconoci\u00f3.\n\nGanarse a los cr\u00edticos es una victoria en s\u00ed misma.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_2.json b/data/messages/triggers/stream/pos_2.json new file mode 100644 index 000000000..265a316ce --- /dev/null +++ b/data/messages/triggers/stream/pos_2.json @@ -0,0 +1 @@ +{"id":"stream_pos_2","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste disfruta viendo a {team}","body":"el_yuste ha dicho en stream que est\u00e1 disfrutando mucho viendo jugar a {team} \u00faltimamente.\n\n\"{team} me est\u00e1 dando muchas alegr\u00edas esta temporada. Est\u00e1n haciendo las cosas bien,\" coment\u00f3.\n\nQue un streamer tan popular lo diga es buena publicidad.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_3.json b/data/messages/triggers/stream/pos_3.json new file mode 100644 index 000000000..92d2405d1 --- /dev/null +++ b/data/messages/triggers/stream/pos_3.json @@ -0,0 +1 @@ +{"id":"stream_pos_3","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste alucina con {player} de {team}","body":"En su \u00faltimo directo, el_yuste se qued\u00f3 alucinando con una jugada de {player} de {team}.\n\n\"{player} es que es incre\u00edble, t\u00edo. C\u00f3mo juega este chaval,\" exclam\u00f3.\n\nEl clip se ha hecho viral en las redes del club.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_4.json b/data/messages/triggers/stream/pos_4.json new file mode 100644 index 000000000..eda635afe --- /dev/null +++ b/data/messages/triggers/stream/pos_4.json @@ -0,0 +1 @@ +{"id":"stream_pos_4","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} es mi equipo revelaci\u00f3n\"","body":"el_yuste ha confesado en stream que {team} es su equipo revelaci\u00f3n de la temporada.\n\n\"No me esperaba esto de {team} para nada. Est\u00e1n dando la sorpresa,\" dijo.\n\nCuando un streamer con tanta audiencia lo dice, la gente se fija.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_5.json b/data/messages/triggers/stream/pos_5.json new file mode 100644 index 000000000..c10db5e60 --- /dev/null +++ b/data/messages/triggers/stream/pos_5.json @@ -0,0 +1 @@ +{"id":"stream_pos_5","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste se alegra por {team}","body":"El streamer el_yuste ha mostrado su alegr\u00eda por los \u00faltimos resultados de {team}.\n\n\"Me alegro mucho por {team}, de verdad. Hay buen ambiente en ese equipo,\" coment\u00f3 en directo.\n\nEl apoyo de figuras p\u00fablicas suma moral.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_6.json b/data/messages/triggers/stream/pos_6.json new file mode 100644 index 000000000..bd6902268 --- /dev/null +++ b/data/messages/triggers/stream/pos_6.json @@ -0,0 +1 @@ +{"id":"stream_pos_6","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} est\u00e1 fuerte\"","body":"el_yuste ha comentado en su canal que {team} est\u00e1 \"fuerte, muy fuerte\" esta temporada.\n\n\"No s\u00e9 qu\u00e9 han cambiado en {team} pero funciona. Sigan as\u00ed,\" dijo.\n\nLos comentarios positivos en streams grandes llegan a mucha gente.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_7.json b/data/messages/triggers/stream/pos_7.json new file mode 100644 index 000000000..68e6563c7 --- /dev/null +++ b/data/messages/triggers/stream/pos_7.json @@ -0,0 +1 @@ +{"id":"stream_pos_7","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"Ojito con {team}\"","body":"El streamer ha lanzado un aviso: \"Ojito con {team}, que vienen fuerte.\"\n\n\"{team} est\u00e1 haciendo las cosas bien y nadie est\u00e1 hablando de ello,\" a\u00f1adi\u00f3.\n\nQue el_yuste lo diga hace que m\u00e1s gente se fije en el equipo.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_8.json b/data/messages/triggers/stream/pos_8.json new file mode 100644 index 000000000..228425c2b --- /dev/null +++ b/data/messages/triggers/stream/pos_8.json @@ -0,0 +1 @@ +{"id":"stream_pos_8","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"{team} me est\u00e1 convenciendo\"","body":"el_yuste ha admitido en directo que {team} le est\u00e1 convenciendo esta temporada.\n\n\"No es f\u00e1cil que me guste un equipo, pero {team} me est\u00e1 gustando,\" confes\u00f3.\n\nCuando un cr\u00edtico tan habitual habla bien, es se\u00f1al de que algo se hace bien.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/stream/pos_9.json b/data/messages/triggers/stream/pos_9.json new file mode 100644 index 000000000..15deb8d1e --- /dev/null +++ b/data/messages/triggers/stream/pos_9.json @@ -0,0 +1 @@ +{"id":"stream_pos_9","trigger":"stream","weight":1,"sender":"yuste","category":"Media","priority":"Low","actions":[{"type":"acknowledge","label":"OK","label_key":"be.msg.action.acknowledge"}],"subject":"el_yuste: \"Vaya partidazo de {team}\"","body":"El streamer se emocion\u00f3 viendo el \u00faltimo partido de {team} y lo coment\u00f3 en directo.\n\n\"Vaya partidazo de {team}, por favor. As\u00ed da gusto ver la liga,\" dijo emocionado.\n\nEl clip del momento se ha compartido cientos de veces.","translations":{}} \ No newline at end of file diff --git a/data/messages/triggers/transfer/complete.json b/data/messages/triggers/transfer/complete.json new file mode 100644 index 000000000..71634300d --- /dev/null +++ b/data/messages/triggers/transfer/complete.json @@ -0,0 +1,19 @@ +{ + "id": "transfer_complete", + "trigger": "transfer_complete", + "weight": 1, + "sender": "director_of_football", + "category": "Transfer", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Transfer completed: {player}", + "body": "We have completed the transfer of {player} for a fee of \u20ac{fee}.\n\nThe player will join the squad immediately. Make sure to review their attributes and integrate them into the team.\n\nLet me know if you need anything else regarding this transfer.", + "translations": { + "es": { + "subject": "Fichaje completado: {player}", + "body": "Hemos completado el fichaje de {player} por una cantidad de \u20ac{fee}.\n\nEl jugador se unir\u00e1 a la plantilla de inmediato. Revise sus atributos e int\u00e9grelo en el equipo.\n\nAv\u00edseme si necesita algo m\u00e1s con respecto a este fichaje." + } + } +} diff --git a/data/messages/triggers/transfer/offer.json b/data/messages/triggers/transfer/offer.json new file mode 100644 index 000000000..3b3663871 --- /dev/null +++ b/data/messages/triggers/transfer/offer.json @@ -0,0 +1,19 @@ +{ + "id": "transfer_offer", + "trigger": "transfer_offer", + "weight": 1, + "sender": "director_of_football", + "category": "Transfer", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Transfer offer received for {player}", + "body": "{buyer} has submitted an offer for {player}.\n\nThe proposed fee is \u20ac{fee}. You can accept, negotiate a counter-offer, or reject it outright.\n\nConsider whether the player is essential to your plans before making a decision.", + "translations": { + "es": { + "subject": "Oferta de traspaso recibida por {player}", + "body": "{buyer} ha presentado una oferta por {player}.\n\nLa cantidad propuesta es de \u20ac{fee}. Puede aceptar, negociar una contraoferta o rechazarla directamente.\n\nConsidere si el jugador es esencial para sus planes antes de tomar una decisi\u00f3n." + } + } +} diff --git a/data/messages/triggers/transfer/terminated.json b/data/messages/triggers/transfer/terminated.json new file mode 100644 index 000000000..59143a42c --- /dev/null +++ b/data/messages/triggers/transfer/terminated.json @@ -0,0 +1,19 @@ +{ + "id": "contract_terminated", + "trigger": "contract_terminated", + "weight": 1, + "sender": "director_of_football", + "category": "Contract", + "priority": "High", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Contract terminated: {player}", + "body": "The contract of {player} has been terminated.\n\nA compensation fee of \u20ac{penalty} has been paid to the player. The player is now a free agent and can be signed by any club.\n\nThe wage budget has been adjusted accordingly.", + "translations": { + "es": { + "subject": "Contrato rescindido: {player}", + "body": "El contrato de {player} ha sido rescindido.\n\nSe ha pagado una compensaci\u00f3n de \u20ac{penalty} al jugador. El jugador es ahora agente libre y puede ser fichado por cualquier club.\n\nEl presupuesto salarial ha sido ajustado en consecuencia." + } + } +} diff --git a/data/messages/triggers/welcome/welcome.json b/data/messages/triggers/welcome/welcome.json new file mode 100644 index 000000000..3c77e9deb --- /dev/null +++ b/data/messages/triggers/welcome/welcome.json @@ -0,0 +1,23 @@ +{ + "id": "welcome", + "trigger": "select_team", + "weight": 1, + "sender": "board", + "category": "Welcome", + "priority": "Normal", + "actions": [ + { "type": "acknowledge", "label": "OK", "label_key": "be.msg.action.acknowledge" } + ], + "subject": "Welcome to {team}!", + "body": "The board of directors welcomes you as the new head coach of {team}.\n\nWe have full confidence in your ability to lead this team to success. The upcoming season begins in {days} days.\n\nReview your squad, set your priorities, and prepare for the challenges ahead.\n\nGood luck, coach!", + "translations": { + "es": { + "subject": "¡Bienvenido a {team}!", + "body": "El consejo directivo te da la bienvenida como nuevo entrenador de {team}.\n\nTenemos plena confianza en tu capacidad para llevar a este equipo al éxito. La próxima temporada comienza en {days} días.\n\nRevisa tu plantilla, establece tus prioridades y prepárate para los desafíos que vienen.\n\n¡Buena suerte, entrenador!" + }, + "de": { + "subject": "Willkommen bei {team}!", + "body": "Der Vorstand heißt Sie als neuen Cheftrainer von {team} willkommen.\n\nWir vertrauen auf Ihre Fähigkeit, dieses Team zum Erfolg zu führen. Die Saison beginnt in {days} Tagen.\n\nViel Erfolg, Trainer!" + } + } +} diff --git a/data/news/editorial/title_race.json b/data/news/editorial/title_race.json new file mode 100644 index 000000000..402ebbd53 --- /dev/null +++ b/data/news/editorial/title_race.json @@ -0,0 +1,29 @@ +{ + "id": "title_race", + "category": "Editorial", + "headlines": [ + { + "key": "be.news.storyline.titleRace.headline", + "text": "Top Spot Race Tightens \u2014 {leader} Lead {challenger} by {gap} Point(s)" + } + ], + "body": "{leader} remain in front, but {challenger} are only {gap} point(s) behind as the playoff race takes shape.", + "body_key": "be.news.storyline.titleRace.body", + "sources": [ + { + "key": "be.source.leaguePulse", + "text": "The Shotcaller" + } + ], + "translations": { + "es": { + "headlines": [ + { + "key": "be.news.storyline.titleRace.headline", + "text": "La cima se aprieta \u2014 {leader} lidera, {challenger} a {gap} punto(s)" + } + ], + "body": "{leader} sigue al frente, pero {challenger} est\u00e1 a solo {gap} punto(s) en la lucha por los playoffs." + } + } +} diff --git a/data/news/editorial/unbeaten_streak.json b/data/news/editorial/unbeaten_streak.json new file mode 100644 index 000000000..e27a77ba3 --- /dev/null +++ b/data/news/editorial/unbeaten_streak.json @@ -0,0 +1,29 @@ +{ + "id": "unbeaten_streak", + "category": "Editorial", + "headlines": [ + { + "key": "be.news.storyline.unbeatenStreak.headline", + "text": "{team} Extend Series Run to {runLength}" + } + ], + "body": "{team} have gone {runLength} series without a loss and are building real momentum around drafts and objectives.", + "body_key": "be.news.storyline.unbeatenStreak.body", + "sources": [ + { + "key": "be.source.leaguePulse", + "text": "The Shotcaller" + } + ], + "translations": { + "es": { + "headlines": [ + { + "key": "be.news.storyline.unbeatenStreak.headline", + "text": "{team} extiende su racha a {runLength} series" + } + ], + "body": "{team} lleva {runLength} series sin perder y acumula impulso en drafts y objetivos." + } + } +} diff --git a/data/news/editorial/weekly_digest.json b/data/news/editorial/weekly_digest.json new file mode 100644 index 000000000..15a985717 --- /dev/null +++ b/data/news/editorial/weekly_digest.json @@ -0,0 +1,42 @@ +{ + "id": "weekly_digest", + "category": "Editorial", + "headlines": [ + { + "key": "be.news.weeklyDigest.headline", + "text": "Weekly Digest \u2014 Week of {weekStart}" + } + ], + "body_variants": [ + { + "body_key": "be.news.weeklyDigest.bodyNoTopPerformer", + "text": "The latest weekly power rankings are here. {leader} lead the table, and {storylineCount} storyline(s) are shaping the league this week." + }, + { + "body_key": "be.news.weeklyDigest.bodyWithTopPerformer", + "text": "The latest weekly power rankings are here. {leader} lead the table, while {topPerformer} heads the kill participation charts with {topPerformerPlays} standout play(s). {storylineCount} storyline(s) are shaping the league this week." + } + ], + "sources": [ + { + "key": "be.source.leaguePulse", + "text": "The Shotcaller" + } + ], + "translations": { + "es": { + "headlines": [ + { + "key": "be.news.weeklyDigest.headline", + "text": "Resumen semanal \u2014 Semana del {weekStart}" + } + ], + "body_variants": [ + { + "body_key": "be.news.weeklyDigest.bodyNoTopPerformer", + "text": "{leader} lidera la tabla y {storylineCount} historia(s) marcan la semana en la liga." + } + ] + } + } +} diff --git a/data/news/season_preview/template.json b/data/news/season_preview/template.json new file mode 100644 index 000000000..8cb3cb31a --- /dev/null +++ b/data/news/season_preview/template.json @@ -0,0 +1,46 @@ +{ + "id": "season_preview", + "category": "SeasonPreview", + "headlines": [ + { + "key": "be.news.seasonPreview.headline0", + "text": "Split Preview: {teamCount} Teams Battle for the Top Spot" + }, + { + "key": "be.news.seasonPreview.headline1", + "text": "League Split Set to Begin" + }, + { + "key": "be.news.seasonPreview.headline2", + "text": "Can {favourite} Control the Meta? Split Preview" + } + ], + "body": "The league is set to kick off with {teamCount} teams entering the split.\n\nAnalyst predictions have {favourite} as the early favourites, but {darkHorse} could be the dark horse to watch this campaign.\n\nWith new coaching staffs refining draft prep, this split promises to be one of the most competitive in recent memory. Every map will matter as the playoff race heats up.\n\nTeams: {teamList}", + "body_key": "be.news.seasonPreview.body", + "sources": [ + { + "key": "be.source.riftHerald", + "text": "Riot Games Newsroom" + } + ], + "translations": { + "es": { + "headlines": [ + { + "key": "be.news.seasonPreview.headline0", + "text": "Pretemporada: {teamCount} equipos buscan la cima" + } + ], + "body": "La liga est\u00e1 lista para comenzar con {teamCount} equipos.\n\nLos analistas se\u00f1alan a {favourite} como favorito, pero {darkHorse} podr\u00eda ser la sorpresa.\n\nEquipos: {teamList}" + }, + "pt": { + "headlines": [ + { + "key": "be.news.seasonPreview.headline0", + "text": "Pr\u00e9-temporada: {teamCount} equipes em busca do topo" + } + ], + "body": "A liga est\u00e1 pronta para come\u00e7ar com {teamCount} equipes.\n\nAnalistas apontam {favourite} como favorito, mas {darkHorse} pode ser a surpresa.\n\nEquipes: {teamList}" + } + } +} diff --git a/data/players/al_players.json b/data/players/al_players.json index ceed3f1a6..8b3ffc4f6 100644 --- a/data/players/al_players.json +++ b/data/players/al_players.json @@ -3,2584 +3,1682 @@ "description": "AL - 2026 Season", "players": [ { - "id": "player-99d2b68f", - "match_name": "Dean", - "full_name": "Dean", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 65, - "macro_play": 67, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 66 - }, - "condition": 100, + "id": "player-013a0637", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-74c9710e", - "match_name": "Goliah", - "full_name": "Goliah", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "condition": 100, + "full_name": "Gilbert Chami", "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 68, - "macro_play": 67, + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, "consistency": 66, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Darky (Gilbert Chami)", + "loan_listed": false, + "transfer_listed": false, + "position": "Top", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "DE", + "date_of_birth": "2000-10-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-57db176a", - "match_name": "c0st0m", - "full_name": "c0st0m", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 66, - "macro_play": 64, - "consistency": 65, - "shotcalling": 60, + "mechanics": 67, + "laning": 74, "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 65 + "macro_play": 70, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 67, + "discipline": 66, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e175ded9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-0391f167", + "match_name": "Sayn", + "full_name": "Tarek Djoghlaf", + "position": "Mid", + "team_id": "team-47ce6033", + "nationality": "DZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-5fc23b16", - "match_name": "Maged", - "full_name": "Maged", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-07607645", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Iheb Zaalani", "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 66, - "macro_play": 64, + "mechanics": 67, + "laning": 66, + "teamfighting": 68, + "macro_play": 65, "consistency": 64, "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 64, - "mental_resilience": 65 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "IHEBIC", + "position": "Support", + "team_id": "team-12ea162a", + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/527566f9b12ea05c.webp" }, { - "id": "player-f24f0d23", - "match_name": "Shourdy", - "full_name": "Shourdy", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 68, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 66 - }, - "condition": 100, + "id": "player-097ab16e", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bf6dfe78", - "match_name": "Magic", - "full_name": "Magic", - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "condition": 100, + "full_name": "Ahmad Charif", "attributes": { + "mechanics": 67, "laning": 67, - "mechanics": 66, - "discipline": 66, + "teamfighting": 65, "macro_play": 67, - "consistency": 66, + "consistency": 67, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 64, - "mental_resilience": 65 + "discipline": 62, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6019b0e7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Giyuu", + "position": "Mid", + "team_id": "team-90b5943e", + "nationality": "LB", + "date_of_birth": "2001-11-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a0e8c3cdb3702f74.webp" }, { - "id": "player-3d5087f3", - "match_name": "Random", - "full_name": "Random", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 67, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "condition": 100, + "id": "player-0b62d427", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0b62d427", - "match_name": "Tayron", - "full_name": "Tayron", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "condition": 100, + "full_name": "Uğurcan Doğan", "attributes": { - "laning": 67, "mechanics": 66, - "discipline": 68, + "laning": 67, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 59, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Tayron", + "loan_listed": false, + "transfer_listed": false, + "position": "Top", "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-013a0637", - "match_name": "Darky", - "full_name": "Darky", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0bd317f3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Raphael Alt", "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, "shotcalling": 60, - "teamfighting": 66, "champion_pool": 65, - "mental_resilience": 67 + "discipline": 68, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Peaker", + "loan_listed": false, + "transfer_listed": false, + "position": "Mid", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "AT", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-16ab7931", + "match_name": "Shadow", + "full_name": "Abdou Smati", + "position": "Top", + "team_id": "team-0f68e76a", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6e83d03e", - "match_name": "ShizuOo", - "full_name": "ShizuOo", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 65, - "macro_play": 59, - "consistency": 60, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 65, - "mental_resilience": 63 + "mechanics": 75, + "laning": 72, + "teamfighting": 75, + "macro_play": 72, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e175ded9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "id": "player-1a58b09e", + "match_name": "Koussay", + "full_name": "Koussay Soltani", + "position": "Mid", + "team_id": "team-90b5943e", + "nationality": "TN", + "date_of_birth": "2005-05-03", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/560cf6fb1bf2d3fa.webp" }, { - "id": "player-b1d82fe9", - "match_name": "Raider", - "full_name": "Raider", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1a64d2f6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Abderrahim Khadhraoui", "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 66, + "mechanics": 66, + "laning": 66, + "teamfighting": 66, "macro_play": 67, - "consistency": 68, + "consistency": 67, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 65, - "mental_resilience": 65 + "discipline": 67, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Juggernaut", + "loan_listed": false, + "transfer_listed": false, + "position": "Mid", "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "TN", + "date_of_birth": "1999-05-22", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/e65a53c836f41cbd.webp" }, { - "id": "player-48bdc600", - "match_name": "DANKI", - "full_name": "DANKI", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1ee338aa", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Fares Saidana", "attributes": { + "mechanics": 67, "laning": 68, - "mechanics": 68, - "discipline": 68, + "teamfighting": 67, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 + "champion_pool": 64, + "discipline": 67, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4b8187c4", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Xicor", + "position": "ADC", + "team_id": "team-47ce6033", + "nationality": "TN", + "date_of_birth": "2002-12-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/c733375c76782a95.webp" }, { - "id": "player-6529ff0a", - "match_name": "Zero0o", - "full_name": "Zero0o", - "date_of_birth": null, - "nationality": "JO", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-20dd61cf", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mehdi Abdessalem", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, + "mechanics": 65, + "laning": 64, + "teamfighting": 66, + "macro_play": 66, + "consistency": 64, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, + "champion_pool": 63, + "discipline": 68, "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Sai", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c92c9815", - "match_name": "shibi", - "full_name": "shibi", + "transfer_listed": false, + "position": "Mid", + "team_id": "team-1f166743", + "nationality": "TN", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 67, - "discipline": 60, - "macro_play": 65, - "consistency": 65, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 64, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c648abc2", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/e579c6857f8d12c9.webp" }, { - "id": "player-284963d5", - "match_name": "Exan", - "full_name": "Exan", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2610a77a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Chae Yoon-ho", "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 64, - "macro_play": 65, - "consistency": 64, + "mechanics": 67, + "laning": 66, + "teamfighting": 66, + "macro_play": 67, + "consistency": 67, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 65, + "discipline": 64, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "CoBiT", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-8829d0c3", + "nationality": "KR", + "date_of_birth": "2006-02-27", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-2647fe92", + "match_name": "Wicked", + "full_name": "Fares Bouhajja", + "position": "Mid", + "team_id": "team-47ce6033", + "nationality": "", + "date_of_birth": "2007-04-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-27bbf8e4", - "match_name": "Ajwad", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Ajwad", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 67, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 67, "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Ajwad", + "position": "Jungle", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "SA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-7bf319e9", - "match_name": "Fallen", - "full_name": "Fallen", - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-284963d5", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Safwen Ben Boubaker", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, + "mechanics": 65, + "laning": 64, + "teamfighting": 64, + "macro_play": 65, + "consistency": 64, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, - "mental_resilience": 68 + "discipline": 64, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4b8187c4", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Exan", + "position": "Jungle", + "team_id": "team-1f166743", + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/5ca9780da5334f79.webp" }, { - "id": "player-b7050a20", - "match_name": "Improver", - "full_name": "Improver", - "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-2bc709f6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ghisou", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, + "mechanics": 65, + "laning": 65, + "teamfighting": 65, "macro_play": 64, "consistency": 64, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 64, - "mental_resilience": 66 + "discipline": 65, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c648abc2", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Ghisou", + "position": "ADC", + "team_id": "team-0f68e76a", + "nationality": "MK", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-20dd61cf", - "match_name": "Sai", - "full_name": "Sai", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 65, - "discipline": 68, - "macro_play": 66, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 68 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, + "id": "player-2c998d3b", "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-75cfe595", - "match_name": "NG Shinluv", - "full_name": "NG Shinluv", - "date_of_birth": null, - "nationality": "IR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 67, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 - }, - "condition": 100, "morale": 100, "fitness": 100, - "team_id": "team-6019b0e7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2c998d3b", - "match_name": "Theocacs", - "full_name": "Theocacs", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "condition": 100, + "full_name": "Theo Sauda", "attributes": { - "laning": 63, "mechanics": 67, - "discipline": 59, + "laning": 63, + "teamfighting": 62, "macro_play": 68, "consistency": 67, "shotcalling": 60, - "teamfighting": 62, "champion_pool": 63, + "discipline": 59, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Theocacs", + "position": "Jungle", "team_id": "team-90b5943e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "FR", + "date_of_birth": "2007-04-29", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/8e5d65d834c85d5c.webp" + }, + { + "id": "player-2eba79fa", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Oussama Cherradi", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 65, + "macro_play": 66, + "consistency": 66, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 66, + "mental_resilience": 66 + }, + "match_name": "Akashi", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2028-11-18", + "transfer_listed": false, + "position": "Mid", + "team_id": "team-8829d0c3", + "nationality": "MA", + "date_of_birth": "2007-11-21", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/164d07ef46c976de.webp" }, { "id": "player-35be2288", - "match_name": "MAXI", - "full_name": "MAXI", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Magnus Stenz Kristensen", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 64, + "laning": 66, + "teamfighting": 65, "macro_play": 65, "consistency": 66, "shotcalling": 60, - "teamfighting": 65, "champion_pool": 65, + "discipline": 64, "mental_resilience": 65 }, - "condition": 100, + "match_name": "MAXI", + "position": "Jungle", + "team_id": "team-47ce6033", + "nationality": "DK", + "date_of_birth": "2000-06-24", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/810f60b52f5476e3.webp" + }, + { + "id": "player-3d5087f3", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Adam Grepl", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 67, + "consistency": 65, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 66, + "mental_resilience": 67 + }, + "match_name": "Random", + "position": "Top", "team_id": "team-47ce6033", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": "2001-12-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/59ff321ce20a2ad1.webp" }, { - "id": "player-97cfdbc5", - "match_name": "NG Tricky", - "full_name": "NG Tricky", - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-449baf07", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Damian Bajor", "attributes": { + "mechanics": 66, "laning": 65, - "mechanics": 64, - "discipline": 68, + "teamfighting": 66, "macro_play": 65, - "consistency": 64, + "consistency": 65, "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 67 + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6019b0e7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Choego", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "ADC", + "team_id": "team-c648abc2", + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/d2efb1e3892469ff.webp" }, { - "id": "player-7330adb1", - "match_name": "Silva2", - "full_name": "Silva2", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-461bb545", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ismail Bastoun", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, + "mechanics": 62, + "laning": 65, + "teamfighting": 65, + "macro_play": 62, + "consistency": 59, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, - "mental_resilience": 68 + "discipline": 65, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Frozen", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-e175ded9", + "nationality": "MA", + "date_of_birth": "2002-02-20", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/78dd39461d986f25.webp" }, { - "id": "player-097ab16e", - "match_name": "Giyuu", - "full_name": "Giyuu", - "date_of_birth": null, - "nationality": "LB", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-515a3996", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Darky2", "attributes": { - "laning": 67, "mechanics": 67, - "discipline": 62, - "macro_play": 67, + "laning": 68, + "teamfighting": 66, + "macro_play": 66, "consistency": 67, "shotcalling": 60, - "teamfighting": 65, "champion_pool": 64, - "mental_resilience": 64 + "discipline": 66, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Darky2", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1a64d2f6", - "match_name": "Juggernaut", - "full_name": "Juggernaut", + "transfer_listed": false, + "position": "Top", + "team_id": "team-12ea162a", + "nationality": "LB", "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 67, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-2eba79fa", - "match_name": "Akashi", - "full_name": "Akashi", - "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-54f0bc07", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Sahl Waggass", "attributes": { + "mechanics": 64, "laning": 66, - "mechanics": 66, - "discipline": 66, + "teamfighting": 64, "macro_play": 66, "consistency": 66, "shotcalling": 60, - "teamfighting": 65, "champion_pool": 65, - "mental_resilience": 66 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Sas", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-c648abc2", + "nationality": "SA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-9ffe676d", - "match_name": "Soufiane", - "full_name": "Soufiane", - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-57db176a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alexander Lind", "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 68, - "macro_play": 68, - "consistency": 67, + "mechanics": 65, + "laning": 65, + "teamfighting": 67, + "macro_play": 64, + "consistency": 65, "shotcalling": 60, - "teamfighting": 66, "champion_pool": 65, - "mental_resilience": 67 + "discipline": 66, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "C0st0m", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Mid", + "team_id": "team-e175ded9", + "nationality": "DK", + "date_of_birth": "2005-04-06", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-0bd317f3", - "match_name": "Peaker", - "full_name": "Peaker", - "date_of_birth": null, - "nationality": "AT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-5fc23b16", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Maged Marawan Mohamed", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, + "mechanics": 65, + "laning": 64, + "teamfighting": 62, + "macro_play": 64, + "consistency": 64, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 + "champion_pool": 64, + "discipline": 66, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Maged", + "position": "Top", + "team_id": "team-8829d0c3", + "nationality": "EG", + "date_of_birth": "2001-01-14", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/297744934a0649e8.webp" }, { - "id": "player-9186da05", - "match_name": "Aeru", - "full_name": "Aeru", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-646c5e75", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "John Sicre", "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 64, - "macro_play": 65, - "consistency": 65, + "mechanics": 62, + "laning": 59, + "teamfighting": 64, + "macro_play": 62, + "consistency": 59, "shotcalling": 60, - "teamfighting": 60, - "champion_pool": 64, - "mental_resilience": 64 + "champion_pool": 65, + "discipline": 60, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Sotsy", + "position": "Top", + "team_id": "team-e175ded9", + "nationality": "FR", + "date_of_birth": "1998-10-26", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/c4efb6293683f9c9.webp" }, { - "id": "player-1ee338aa", - "match_name": "Xicor", - "full_name": "Xicor", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-64d3bb1c", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Nguyễn Linh Vương", "attributes": { + "mechanics": 68, "laning": 68, - "mechanics": 67, - "discipline": 67, + "teamfighting": 67, "macro_play": 68, "consistency": 68, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 66 + "shotcalling": 59, + "champion_pool": 65, + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Slayder", + "position": "ADC", + "team_id": "team-8829d0c3", + "nationality": "VN", + "date_of_birth": "2000-11-22", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/c67a2f16d4df27ec.webp" }, { - "id": "player-9a0ec9e1", - "match_name": "Skream", - "full_name": "Skream", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 66, - "consistency": 66, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "condition": 100, + "id": "player-6529ff0a", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ccd8c8d1", - "match_name": "Syzyfek", - "full_name": "Syzyfek", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "condition": 100, + "full_name": "Mohammad Alassaf", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Zero0o", + "position": "Top", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "JO", + "date_of_birth": "2000-03-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/4f8e7c03a8b61d3c.webp" }, { - "id": "player-449baf07", - "match_name": "choego", - "full_name": "choego", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-6af08614", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ala Jalleb", "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 62, - "macro_play": 65, - "consistency": 65, + "mechanics": 65, + "laning": 66, + "teamfighting": 64, + "macro_play": 62, + "consistency": 62, "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 63, + "champion_pool": 65, + "discipline": 60, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c648abc2", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Jalleba", + "position": "ADC", + "team_id": "team-e175ded9", + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/e16917ada3630f05.webp" }, { - "id": "player-b89cfc71", - "match_name": "Jasten", - "full_name": "Jasten", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-6e83d03e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Younis Mahmoud", "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, + "mechanics": 62, + "laning": 64, + "teamfighting": 63, + "macro_play": 59, + "consistency": 60, "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 64, - "mental_resilience": 66 + "champion_pool": 65, + "discipline": 65, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "ShizuOo", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-e175ded9", + "nationality": "EG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-66e64bda", - "match_name": "Rust", - "full_name": "Rust", - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "career": [], "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 67, - "macro_play": 68, - "consistency": 68, - "shotcalling": 60, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 67 + "mechanics": 72, + "laning": 70, + "teamfighting": 73, + "macro_play": 74, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 69, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6019b0e7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "id": "player-6f787638", + "match_name": "Boda", + "full_name": "Mohamed Yahia", + "position": "Top", + "team_id": "team-90b5943e", + "nationality": "EG", + "date_of_birth": "2006-04-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/516ec5bd37b5aed9.webp" }, { - "id": "player-4fd0c8ec", - "match_name": "SS Kuroko", - "full_name": "SS Kuroko", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-7330adb1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Silva2", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4b8187c4", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Silva2", + "position": "Jungle", + "team_id": "team-12ea162a", + "nationality": "EG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-0391f167", - "match_name": "Sayn", - "full_name": "Sayn", - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-74c9710e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Goliah", "attributes": { - "laning": 74, "mechanics": 67, - "discipline": 66, - "macro_play": 70, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 68 + "laning": 67, + "teamfighting": 68, + "macro_play": 67, + "consistency": 66, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-4b8187c4", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Goliah", + "position": "Jungle", + "team_id": "team-12ea162a", + "nationality": "IT", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-6af08614", - "match_name": "Jalleba", - "full_name": "Jalleba", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-7e05eabb", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mo'en Hussein", "attributes": { - "laning": 66, "mechanics": 65, - "discipline": 60, - "macro_play": 62, - "consistency": 62, + "laning": 68, + "teamfighting": 67, + "macro_play": 66, + "consistency": 68, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 65, - "mental_resilience": 62 + "discipline": 67, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e175ded9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Moe", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-8829d0c3", + "nationality": "PS", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-64d3bb1c", - "match_name": "Slayder", - "full_name": "Slayder", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-910c2516", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hashem Baroum", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 62, - "macro_play": 68, - "consistency": 68, - "shotcalling": 59, - "teamfighting": 67, + "mechanics": 63, + "laning": 62, + "teamfighting": 66, + "macro_play": 64, + "consistency": 64, + "shotcalling": 60, "champion_pool": 65, - "mental_resilience": 63 + "discipline": 67, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Handm", + "position": "Top", + "team_id": "team-c648abc2", + "nationality": "SA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/4d9ee44e8a2fe32d.webp" }, { - "id": "player-2bc709f6", - "match_name": "Ghisou", - "full_name": "Ghisou", - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9186da05", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Oussema Ben Amara", "attributes": { + "mechanics": 66, "laning": 65, - "mechanics": 65, - "discipline": 65, - "macro_play": 64, - "consistency": 64, + "teamfighting": 60, + "macro_play": 65, + "consistency": 65, "shotcalling": 60, - "teamfighting": 65, "champion_pool": 64, - "mental_resilience": 65 + "discipline": 64, + "mental_resilience": 64 }, + "match_name": "Aeru", + "position": "ADC", + "team_id": "team-90b5943e", + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/c52f09a78f8c3914.webp" + }, + { + "id": "player-99d2b68f", + "career": [], + "morale": 100, + "fitness": 100, "condition": 100, + "full_name": "Haithem Attia", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 65, + "macro_play": 67, + "consistency": 66, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 65, + "mental_resilience": 66 + }, + "match_name": "Dean", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-0f68e76a", + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b2fa44ddd6c5efbf.webp" + }, + { + "id": "player-9a0ec9e1", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Youssef Abdellatif", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "Skream", + "position": "ADC", "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "TN", + "date_of_birth": "2004-04-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/e4daee200eeb87b2.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-9ff63586", + "match_name": "Insane", + "full_name": "Taieb Kraiem", + "position": "Support", + "team_id": "team-47ce6033", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/11196abf8dd21b19.webp" }, { - "id": "player-f4c6c98b", - "match_name": "Nawaf", - "full_name": "Nawaf", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9ffe676d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Soufiane Ounis", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 66, + "mechanics": 66, + "laning": 67, + "teamfighting": 66, "macro_play": 68, - "consistency": 68, + "consistency": 67, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 64, + "champion_pool": 65, + "discipline": 68, "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Soufiane", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Mid", + "team_id": "team-1f166743", + "nationality": "DZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-646c5e75", - "match_name": "Sotsy", - "full_name": "Sotsy", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-a4f1fae3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Aymen Jadallah", "attributes": { - "laning": 59, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 59, + "mechanics": 66, + "laning": 67, + "teamfighting": 66, + "macro_play": 65, + "consistency": 67, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 65, - "mental_resilience": 60 + "discipline": 67, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e175ded9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Lokmays", + "position": "Support", + "team_id": "team-0f68e76a", + "nationality": "TN", + "date_of_birth": "1997-11-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/ad4e414c7a9fad4c.webp" }, { - "id": "player-7e05eabb", - "match_name": "moe", - "full_name": "moe", - "date_of_birth": null, - "nationality": "PS", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b1d82fe9", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Raider", "attributes": { + "mechanics": 67, "laning": 68, - "mechanics": 65, - "discipline": 67, - "macro_play": 66, + "teamfighting": 67, + "macro_play": 67, "consistency": 68, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 65, - "mental_resilience": 66 + "discipline": 66, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Raider", + "position": "Top", + "team_id": "team-0f68e76a", + "nationality": "HR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-910c2516", - "match_name": "handm", - "full_name": "handm", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-b7050a20", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Imad Assafi", "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 67, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 + "champion_pool": 64, + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Improver", + "loan_listed": false, + "transfer_listed": false, + "position": "Mid", "team_id": "team-c648abc2", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "MA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-515a3996", - "match_name": "1M Darky2", - "full_name": "1M Darky2", - "date_of_birth": null, - "nationality": "LB", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-b842dce1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lorenz", "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 66, - "macro_play": 66, + "mechanics": 64, + "laning": 57, + "teamfighting": 61, + "macro_play": 63, "consistency": 67, "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 + "champion_pool": 63, + "discipline": 67, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Lorenz", + "position": "Support", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "DE", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-6f787638", - "match_name": "Boda", - "full_name": "Boda", - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-b89cfc71", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Anas Abdelsalam", "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 69, - "macro_play": 74, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 68 + "mechanics": 64, + "laning": 66, + "teamfighting": 65, + "macro_play": 64, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 64, + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Jasten", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "ADC", + "team_id": "team-1f166743", + "nationality": "EG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-eaa40d91", - "match_name": "B Butcher", - "full_name": "B Butcher", - "date_of_birth": null, - "nationality": "SY", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-c92c9815", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakub Przybylski", "attributes": { - "laning": 62, "mechanics": 67, - "discipline": 59, - "macro_play": 68, - "consistency": 66, + "laning": 62, + "teamfighting": 63, + "macro_play": 65, + "consistency": 65, "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 63 + "champion_pool": 64, + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, + "match_name": "Shibi", + "position": "Jungle", + "team_id": "team-c648abc2", + "nationality": "PL", + "date_of_birth": "2002-09-14", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/fd5495ff438372cd.webp" + }, + { + "id": "player-ccd8c8d1", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-90b5943e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Syzyfek", + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Syzyfek", + "position": "ADC", + "team_id": "team-12ea162a", + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-da98c898", - "match_name": "Aymen", - "full_name": "Aymen", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Aymen Zeghina", "attributes": { - "laning": 65, "mechanics": 67, - "discipline": 66, + "laning": 65, + "teamfighting": 67, "macro_play": 66, "consistency": 66, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 64, + "discipline": 66, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-47ce6033", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aymen", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a4f1fae3", - "match_name": "Lokmays", - "full_name": "Lokmays", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 67, - "mechanics": 66, - "discipline": 67, - "macro_play": 65, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 67 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0f68e76a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-07607645", - "match_name": "IHEBIC", - "full_name": "IHEBIC", + "position": "Support", + "team_id": "team-47ce6033", + "nationality": "FR", "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-e2c26cc3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Dilan Krnjak", "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 64, - "macro_play": 65, + "mechanics": 65, + "laning": 67, + "teamfighting": 64, + "macro_play": 66, "consistency": 64, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 65, + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Enoch", + "position": "Support", + "team_id": "team-1f166743", + "nationality": "HR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a7a5e86ab82987f7.webp" }, { "id": "player-ea82edeb", - "match_name": "Degla", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Degla", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 60, "mechanics": 62, - "discipline": 59, + "laning": 60, + "teamfighting": 64, "macro_play": 66, "consistency": 59, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 60, + "discipline": 59, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Degla", + "position": "Support", "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "TN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-461bb545", - "match_name": "Frozen", - "full_name": "Frozen", - "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 62, - "discipline": 65, - "macro_play": 62, - "consistency": 59, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-eaa40d91", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-e175ded9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2610a77a", - "match_name": "CoBiT", - "full_name": "CoBiT", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "condition": 100, + "full_name": "Abdulkader Halwani", "attributes": { - "laning": 66, "mechanics": 67, - "discipline": 64, - "macro_play": 67, - "consistency": 67, + "laning": 62, + "teamfighting": 62, + "macro_play": 68, + "consistency": 66, "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 65 + "champion_pool": 63, + "discipline": 59, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8829d0c3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "B Butcher", + "position": "Support", + "team_id": "team-90b5943e", + "nationality": "SY", + "date_of_birth": "2000-01-18", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/84a37d2fcf3e345b.webp" }, { - "id": "player-e2c26cc3", - "match_name": "Enoch", - "full_name": "Enoch", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-f24f0d23", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lucas Santos", "attributes": { - "laning": 67, - "mechanics": 65, - "discipline": 66, - "macro_play": 66, - "consistency": 64, + "mechanics": 66, + "laning": 65, + "teamfighting": 68, + "macro_play": 67, + "consistency": 67, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 65, + "discipline": 68, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Shourdy", + "position": "Top", "team_id": "team-1f166743", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PT", + "date_of_birth": "2005-11-29", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/fe68b908c7ab9abd.webp" }, { - "id": "player-4a5529d3", - "match_name": "Leo s Man", - "full_name": "Leo s Man", - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 62, - "macro_play": 62, - "consistency": 62, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 62, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-f4c6c98b", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-4b8187c4", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-54f0bc07", - "match_name": "sas", - "full_name": "sas", - "date_of_birth": null, - "nationality": "SA", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "condition": 100, + "full_name": "Nawaf", "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 64, - "macro_play": 66, - "consistency": 66, + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 64 + "champion_pool": 64, + "discipline": 66, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c648abc2", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Nawaf", + "position": "ADC", + "team_id": "team-12ea162a", + "nationality": "SA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-f4e49f51", - "match_name": "Însane", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Însane", - "date_of_birth": null, - "nationality": "TN", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 64, "mechanics": 68, - "discipline": 60, + "laning": 64, + "teamfighting": 67, "macro_play": 65, "consistency": 64, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 61, + "discipline": 60, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Însane", + "position": "Support", "team_id": "team-47ce6033", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0b79ef81", - "match_name": "Grèédy", - "full_name": "Grèédy", - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 58, - "discipline": 62, - "macro_play": 59, - "consistency": 59, - "shotcalling": 60, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 61 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6019b0e7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-b842dce1", - "match_name": "Lorenz", - "full_name": "Lorenz", + "nationality": "TN", "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 57, - "mechanics": 64, - "discipline": 67, - "macro_play": 63, - "consistency": 67, - "shotcalling": 60, - "teamfighting": 61, - "champion_pool": 63, - "mental_resilience": 66 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12ea162a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/cblol_players.json b/data/players/cblol_players.json index 222763dcb..222a0cc3e 100644 --- a/data/players/cblol_players.json +++ b/data/players/cblol_players.json @@ -14,19 +14,19 @@ "team_id": "team-a72bf9ea", "position": "Jungle", "condition": 100, - "full_name": "Cariok", + "full_name": "Marcos Santos de Oliveira Junior", "attributes": { - "laning": 74, "mechanics": 76, - "discipline": 74, + "laning": 74, + "teamfighting": 80, "macro_play": 83, "consistency": 68, "shotcalling": 83, - "teamfighting": 80, "champion_pool": 78, + "discipline": 74, "mental_resilience": 77 }, - "match_name": "Marcos Santos de Oliveira Junior", + "match_name": "Cariok", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -39,17 +39,62 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778678509907_vjlbgfno4x.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/456c3e82.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] + }, + { + "id": "player-a670eb4c", + "wage": 107000, + "stats": { + "appearances": 0 + }, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a72bf9ea", + "position": "ADC", + "condition": 100, + "full_name": "Kim Eui-joo", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 74, + "macro_play": 75, + "consistency": 62, + "shotcalling": 72, + "champion_pool": 76, + "discipline": 74, + "mental_resilience": 66 + }, + "match_name": "Trigger ", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-12-20", + "market_value": 1605000, + "birth_country": null, + "date_of_birth": "2000-10-10", + "potential_base": 71, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/35d73c8405cc1aff.png", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { "id": "player-9e2fec49", @@ -63,19 +108,19 @@ "team_id": "team-20461098", "position": "Top", "condition": 100, - "full_name": "Curty", + "full_name": "Pedro Curty", "attributes": { - "laning": 64, "mechanics": 65, - "discipline": 69, + "laning": 64, + "teamfighting": 64, "macro_play": 65, "consistency": 64, "shotcalling": 70, - "teamfighting": 64, "champion_pool": 67, + "discipline": 69, "mental_resilience": 73 }, - "match_name": "Pedro Curty", + "match_name": "Curty", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -89,16 +134,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778432781283_pqn92qbw3or.png", + "profile_image_url": "/player-photos/9d7ccb7e43618043.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-6fa9a0d7", @@ -112,19 +155,19 @@ "team_id": "team-fur2025", "position": "ADC", "condition": 100, - "full_name": "Ayu", + "full_name": "Andrey Saraiva", "attributes": { - "laning": 75, "mechanics": 80, - "discipline": 77, + "laning": 75, + "teamfighting": 80, "macro_play": 76, "consistency": 76, "shotcalling": 72, - "teamfighting": 80, "champion_pool": 76, + "discipline": 77, "mental_resilience": 77 }, - "match_name": "Andrey Saraiva", + "match_name": "Ayu", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -137,17 +180,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778590845390_5mf2ticta88.png", + "natural_position": "Adc", + "profile_image_url": "/player-photos/c319202ab1fdabb5.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-22b06558", @@ -161,19 +202,19 @@ "team_id": "team-fur2025", "position": "Jungle", "condition": 100, - "full_name": "Tatu ", + "full_name": "Pedro Seixas", "attributes": { - "laning": 75, "mechanics": 74, - "discipline": 77, + "laning": 75, + "teamfighting": 78, "macro_play": 81, "consistency": 77, "shotcalling": 82, - "teamfighting": 78, "champion_pool": 76, + "discipline": 77, "mental_resilience": 77 }, - "match_name": "Pedro Seixas", + "match_name": "Tatu ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -186,17 +227,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778426372321_2p6or33cyo.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/49462087fb58a912.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-928899e8", @@ -210,19 +249,19 @@ "team_id": "team-20461098", "position": "Mid", "condition": 100, - "full_name": "Cody", + "full_name": "Cristian Sebastián Quispe Yampara", "attributes": { - "laning": 85, "mechanics": 81, - "discipline": 74, + "laning": 85, + "teamfighting": 78, "macro_play": 77, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 83, + "discipline": 74, "mental_resilience": 72 }, - "match_name": "Cristian Sebastián Quispe Yampara", + "match_name": "Cody", "loan_listed": false, "morale_core": {}, "nationality": "Chile", @@ -236,16 +275,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778426182712_pi8rt1r6vv.webp", + "profile_image_url": "/player-photos/30d52223e9dd94c1.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-cd3e5923", @@ -259,19 +296,19 @@ "team_id": "team-20461098", "position": "Jungle", "condition": 100, - "full_name": "Peach", + "full_name": "Lee Min-gyu", "attributes": { - "laning": 73, "mechanics": 71, - "discipline": 84, + "laning": 73, + "teamfighting": 73, "macro_play": 80, "consistency": 77, "shotcalling": 69, - "teamfighting": 73, "champion_pool": 74, + "discipline": 84, "mental_resilience": 85 }, - "match_name": "Lee Min-gyu", + "match_name": "Peach", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -284,7 +321,7 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", + "natural_position": "Mid", "profile_image_url": "/player-photos/08fe2849.webp", "potential_revealed": null, "alternate_positions": [], @@ -292,9 +329,7 @@ "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-57590b8c", @@ -308,19 +343,19 @@ "team_id": "team-a72bf9ea", "position": "Top", "condition": 100, - "full_name": "Robo", + "full_name": "Leonardo Souza", "attributes": { - "laning": 66, "mechanics": 64, - "discipline": 64, + "laning": 66, + "teamfighting": 65, "macro_play": 66, "consistency": 66, "shotcalling": 70, - "teamfighting": 65, "champion_pool": 72, + "discipline": 64, "mental_resilience": 67 }, - "match_name": "Leonardo Souza", + "match_name": "Robo", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -334,16 +369,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778678522831_tvxxkc7tf3e.webp", + "profile_image_url": "/player-photos/7e633369.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-7c900028", @@ -357,19 +390,19 @@ "team_id": "team-0e114265", "position": "Support", "condition": 100, - "full_name": "Kaiwing", + "full_name": "Ling Kai Wing", "attributes": { - "laning": 80, "mechanics": 82, - "discipline": 80, + "laning": 80, + "teamfighting": 82, "macro_play": 81, "consistency": 81, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 78, + "discipline": 80, "mental_resilience": 81 }, - "match_name": "Ling Kai Wing", + "match_name": "Kaiwing", "loan_listed": false, "morale_core": {}, "nationality": "Hong Kong", @@ -383,16 +416,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/466e3e96.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-8f602374", @@ -406,19 +437,19 @@ "team_id": "team-b3da089b", "position": "Jungle", "condition": 100, - "full_name": "Drakehero", + "full_name": "Luciano Paes Gonçalves Júnior", "attributes": { - "laning": 73, "mechanics": 71, - "discipline": 72, + "laning": 73, + "teamfighting": 71, "macro_play": 73, "consistency": 74, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 70, + "discipline": 72, "mental_resilience": 75 }, - "match_name": "Luciano Paes Gonçalves Júnior", + "match_name": "Drakehero", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -431,17 +462,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778537502186_mnavobw26va.png", + "natural_position": "Mid", + "profile_image_url": "/player-photos/096f11aa.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-1447f616", @@ -455,19 +484,19 @@ "team_id": "team-a72bf9ea", "position": "Support", "condition": 100, - "full_name": "Kuri", + "full_name": "Choi Won-yeong", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 73, - "teamfighting": 78, "champion_pool": 75, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Choi Won-yeong", + "match_name": "Kuri", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -481,16 +510,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778425656244_sq22bn9krlj.webp", + "profile_image_url": "/player-photos/5dfdf016.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-16758120", @@ -504,19 +531,19 @@ "team_id": "team-b3da089b", "position": "ADC", "condition": 100, - "full_name": "Duduhh", + "full_name": "Wallyson Francisco", "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 68, + "laning": 72, + "teamfighting": 72, "macro_play": 69, "consistency": 68, "shotcalling": 68, - "teamfighting": 72, "champion_pool": 70, + "discipline": 68, "mental_resilience": 68 }, - "match_name": "Wallyson Francisco", + "match_name": "Duduhh", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -529,7 +556,7 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", + "natural_position": "Adc", "profile_image_url": "/player-photos/00b09f37.webp", "potential_revealed": null, "alternate_positions": [], @@ -537,55 +564,34 @@ "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 81, + "laning": 82, + "teamfighting": 80, "macro_play": 82, "consistency": 82, "shotcalling": 79, - "teamfighting": 80, "champion_pool": 78, + "discipline": 81, "mental_resilience": 81 }, "potential_base": 94, "id": "player-4bd88040", - "match_name": "José Eduardo Leal Pacheco", - "full_name": "Frosty", - "date_of_birth": "2004-10-13", - "nationality": "Brazil", - "profile_image_url": "/player-photos/1778440746239_y7j7aqvrtc.webp", + "match_name": "Frosty", + "full_name": "José Eduardo Leal Pacheco", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": "team-76137e73", - "traits": [], - "contract_end": null, + "nationality": "Brazil", + "date_of_birth": "2004-10-13", "wage": 128000, "market_value": 1920000, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/72684be461a87398.webp" }, { "id": "player-8e04a8d4", @@ -599,19 +605,19 @@ "team_id": "team-fur2025", "position": "Top", "condition": 100, - "full_name": "Guigo ", + "full_name": "Guilherme Araújo Ruiz", "attributes": { - "laning": 76, "mechanics": 77, - "discipline": 76, + "laning": 76, + "teamfighting": 80, "macro_play": 79, "consistency": 78, "shotcalling": 78, - "teamfighting": 80, "champion_pool": 76, + "discipline": 76, "mental_resilience": 79 }, - "match_name": "Guilherme Araújo Ruiz", + "match_name": "Guigo ", "loan_listed": false, "morale_core": {}, "nationality": "Brasil", @@ -625,16 +631,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778426435534_ick0wf9aoof.webp", + "profile_image_url": "/player-photos/047f43ce.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-21474e7f", @@ -648,19 +652,19 @@ "team_id": "team-loud2025", "position": "Support", "condition": 100, - "full_name": "RedBert", + "full_name": "Ygor Freitas", "attributes": { - "laning": 68, "mechanics": 70, - "discipline": 71, + "laning": 68, + "teamfighting": 68, "macro_play": 70, "consistency": 68, "shotcalling": 71, - "teamfighting": 68, "champion_pool": 69, + "discipline": 71, "mental_resilience": 71 }, - "match_name": "Ygor Freitas", + "match_name": "RedBert", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -674,16 +678,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778678316415_bocqot09416.webp", + "profile_image_url": "/player-photos/7dbbeb7d.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-2413186e", @@ -697,19 +699,19 @@ "team_id": "team-loud2025", "position": "Support", "condition": 100, - "full_name": "UZent", + "full_name": "Matheus Ferreira", "attributes": { - "laning": 62, "mechanics": 67, - "discipline": 66, + "laning": 62, + "teamfighting": 69, "macro_play": 74, "consistency": 68, "shotcalling": 65, - "teamfighting": 69, "champion_pool": 63, + "discipline": 66, "mental_resilience": 66 }, - "match_name": "Matheus Ferreira", + "match_name": "UZent", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -723,16 +725,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778678311718_keonhix8kt.webp", + "profile_image_url": "/player-photos/ba9920eacff669ae.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-7a1102f0", @@ -746,19 +746,19 @@ "team_id": "team-fur2025", "position": "Support", "condition": 100, - "full_name": "JoJo", + "full_name": "Gabriel Dzelme", "attributes": { - "laning": 72, "mechanics": 77, - "discipline": 69, + "laning": 72, + "teamfighting": 77, "macro_play": 74, "consistency": 75, "shotcalling": 75, - "teamfighting": 77, "champion_pool": 71, + "discipline": 69, "mental_resilience": 71 }, - "match_name": "Gabriel Dzelme", + "match_name": "JoJo", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -772,16 +772,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778426307711_fry4kogq9wh.webp", + "profile_image_url": "/player-photos/dcea8c72390f0d51.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-d9d06923", @@ -795,19 +793,19 @@ "team_id": "team-a72bf9ea", "position": "Jungle", "condition": 100, - "full_name": "Samkz", + "full_name": "Samuel Pereira Rosa", "attributes": { - "laning": 75, "mechanics": 81, - "discipline": 69, + "laning": 75, + "teamfighting": 74, "macro_play": 71, "consistency": 66, "shotcalling": 68, - "teamfighting": 74, "champion_pool": 74, + "discipline": 69, "mental_resilience": 70 }, - "match_name": "Samuel Pereira Rosa", + "match_name": "Samkz", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -820,17 +818,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778678529000_8cbsdnriv2a.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/506a95dc.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-9a866225", @@ -844,19 +840,19 @@ "team_id": "team-b3da089b", "position": "Support", "condition": 100, - "full_name": "Ackerman", + "full_name": "Gabriel Aparicio", "attributes": { - "laning": 71, "mechanics": 73, - "discipline": 70, + "laning": 71, + "teamfighting": 73, "macro_play": 72, "consistency": 72, "shotcalling": 66, - "teamfighting": 73, "champion_pool": 71, + "discipline": 70, "mental_resilience": 70 }, - "match_name": "Gabriel Aparicio", + "match_name": "Ackerman", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -870,16 +866,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778678385360_j98vwhidey.webp", + "profile_image_url": "/player-photos/cb477ab7438a5081.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-19022dc4", @@ -893,19 +887,19 @@ "team_id": "team-loud2025", "position": "Top", "condition": 100, - "full_name": "Xyno ", + "full_name": "Carlos Felipe Ferreira", "attributes": { - "laning": 82, "mechanics": 80, - "discipline": 77, + "laning": 82, + "teamfighting": 79, "macro_play": 80, "consistency": 81, "shotcalling": 81, - "teamfighting": 79, "champion_pool": 76, + "discipline": 77, "mental_resilience": 73 }, - "match_name": "Carlos Felipe Ferreira", + "match_name": "Xyno ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -919,16 +913,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778548123590_y295fnom4u.png", + "profile_image_url": "/player-photos/c4ed5d7421771340.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-117ee305", @@ -942,19 +934,19 @@ "team_id": "team-20461098", "position": "Support", "condition": 100, - "full_name": "Momochi", + "full_name": "Gabriel Sousa", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 80, + "laning": 82, + "teamfighting": 80, "macro_play": 80, "consistency": 80, "shotcalling": 83, - "teamfighting": 80, "champion_pool": 83, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Gabriel Sousa", + "match_name": "Momochi", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -968,16 +960,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778677994916_kiv74aglyj.webp", + "profile_image_url": "/player-photos/645c304a.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-8aaf0a80", @@ -991,19 +981,19 @@ "team_id": "team-loud2025", "position": "Mid", "condition": 100, - "full_name": "Envy ", + "full_name": "Bruno Farias", "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 76, + "laning": 72, + "teamfighting": 76, "macro_play": 80, "consistency": 76, "shotcalling": 80, - "teamfighting": 76, "champion_pool": 78, + "discipline": 76, "mental_resilience": 75 }, - "match_name": "Bruno Farias", + "match_name": "Envy ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -1017,16 +1007,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778425988473_0hl225ne9tyv.webp", + "profile_image_url": "/player-photos/e4bedca161650165.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-dad38ae0", @@ -1040,19 +1028,19 @@ "team_id": "team-0e114265", "position": "Jungle", "condition": 100, - "full_name": "Sarolu ", + "full_name": "Victor Satoru Noguchi", "attributes": { - "laning": 71, "mechanics": 76, - "discipline": 71, + "laning": 71, + "teamfighting": 71, "macro_play": 71, "consistency": 67, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 75, + "discipline": 71, "mental_resilience": 66 }, - "match_name": "Victor Satoru Noguchi", + "match_name": "Sarolu ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -1065,17 +1053,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778425773850_gpvofkzjtr.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/13f67e0f22a9d03d.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-721dad66", @@ -1083,99 +1069,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "NS Esports Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DN SOOpers Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-loud2025", - "team_name": "LOUD", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-loud2025", "position": "ADC", "condition": 100, - "full_name": "Bull", + "full_name": "Song Seon-gyu", "attributes": { - "laning": 77, "mechanics": 76, - "discipline": 81, + "laning": 77, + "teamfighting": 76, "macro_play": 76, "consistency": 72, "shotcalling": 70, - "teamfighting": 76, "champion_pool": 74, + "discipline": 81, "mental_resilience": 78 }, - "match_name": "Song Seon-gyu", + "match_name": "Bull", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1188,16 +1101,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", + "natural_position": "Adc", "profile_image_url": "/player-photos/44c10747.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-862561d5", @@ -1205,63 +1116,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0c8be917", "position": "Jungle", "condition": 100, - "full_name": "Booki", + "full_name": "Piero Aldo Medina Herrera", "attributes": { - "laning": 72, "mechanics": 77, - "discipline": 71, + "laning": 72, + "teamfighting": 72, "macro_play": 72, "consistency": 68, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 76, + "discipline": 71, "mental_resilience": 67 }, - "match_name": "Piero Aldo Medina Herrera", + "match_name": "Booki", "loan_listed": false, "morale_core": {}, "nationality": "Peru", @@ -1274,16 +1148,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778441193709_843yue4r4pl.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/1ce68a52.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-64c04cdb", @@ -1297,19 +1169,19 @@ "team_id": "team-b3da089b", "position": "Mid", "condition": 100, - "full_name": "Feisty ", + "full_name": "Jeong Seong-hoon", "attributes": { - "laning": 73, "mechanics": 78, - "discipline": 73, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 68, "shotcalling": 73, - "teamfighting": 73, "champion_pool": 76, + "discipline": 73, "mental_resilience": 68 }, - "match_name": "Jeong Seong-hoon", + "match_name": "Feisty ", "loan_listed": false, "morale_core": {}, "nationality": "Korea", @@ -1330,9 +1202,7 @@ "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-120612ef", @@ -1346,19 +1216,19 @@ "team_id": "team-fur2025", "position": "Mid", "condition": 100, - "full_name": "Tutsz", + "full_name": "Arthur Peixoto Machado", "attributes": { - "laning": 75, "mechanics": 80, - "discipline": 75, + "laning": 75, + "teamfighting": 75, "macro_play": 75, "consistency": 70, "shotcalling": 75, - "teamfighting": 75, "champion_pool": 80, + "discipline": 75, "mental_resilience": 70 }, - "match_name": "Arthur Peixoto Machado", + "match_name": "Tutsz", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -1379,9 +1249,7 @@ "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-e0dce4c2", @@ -1389,144 +1257,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "The Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Coscu Army", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Malvinas Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Eternals Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0c8be917", "position": "Support", "condition": 100, - "full_name": "TopLop", + "full_name": "Nicolás Marinoni", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 82, + "laning": 78, + "teamfighting": 78, "macro_play": 80, "consistency": 78, "shotcalling": 77, - "teamfighting": 78, "champion_pool": 77, + "discipline": 82, "mental_resilience": 80 }, - "match_name": "Nicolás Marinoni", + "match_name": "TopLop", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -1540,15 +1290,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1778441614830_uggperwaxfr.webp", + "profile_image_url": "/player-photos/720d249b.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-6c804ca7", @@ -1556,135 +1304,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Six Karma", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "FURIA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "UC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Furious Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Nocturns Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Valorous", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0c8be917", "position": "ADC", "condition": 100, - "full_name": "Snaker", + "full_name": "Brian Alejo Distefano", "attributes": { - "laning": 75, "mechanics": 77, - "discipline": 72, + "laning": 75, + "teamfighting": 76, "macro_play": 71, "consistency": 71, "shotcalling": 70, - "teamfighting": 76, "champion_pool": 74, + "discipline": 72, "mental_resilience": 73 }, - "match_name": "Brian Alejo Distefano", + "match_name": "Snaker", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -1697,16 +1336,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778441386756_8aat267qfy5.webp", + "natural_position": "Adc", + "profile_image_url": "/player-photos/6d15b400.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-e3d85685", @@ -1720,19 +1357,19 @@ "team_id": "team-a72bf9ea", "position": "Top", "condition": 100, - "full_name": "Boal", + "full_name": "Felipe Boal", "attributes": { - "laning": 46, "mechanics": 48, - "discipline": 51, + "laning": 46, + "teamfighting": 53, "macro_play": 47, "consistency": 53, "shotcalling": 52, - "teamfighting": 53, "champion_pool": 46, + "discipline": 51, "mental_resilience": 53 }, - "match_name": "Felipe Boal", + "match_name": "Boal", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -1753,9 +1390,7 @@ "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-c3083421", @@ -1769,19 +1404,19 @@ "team_id": "team-b3da089b", "position": "Top", "condition": 100, - "full_name": "Zest ", + "full_name": "Kim Dong-min", "attributes": { - "laning": 70, "mechanics": 68, - "discipline": 73, + "laning": 70, + "teamfighting": 67, "macro_play": 69, "consistency": 71, "shotcalling": 67, - "teamfighting": 67, "champion_pool": 72, + "discipline": 73, "mental_resilience": 68 }, - "match_name": "Kim Dong-min", + "match_name": "Zest ", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1795,16 +1430,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778548327291_smst9tfmzpf.png", + "profile_image_url": "/player-photos/13b14af68ece9e08.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-fd6e0115", @@ -1818,19 +1451,19 @@ "team_id": "team-a72bf9ea", "position": "Mid", "condition": 100, - "full_name": "Keine", + "full_name": "Kim Joon-cheol", "attributes": { - "laning": 83, "mechanics": 76, - "discipline": 72, + "laning": 83, + "teamfighting": 73, "macro_play": 72, "consistency": 73, "shotcalling": 66, - "teamfighting": 73, "champion_pool": 76, + "discipline": 72, "mental_resilience": 75 }, - "match_name": "Kim Joon-cheol", + "match_name": "Keine", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1844,16 +1477,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778678516527_61gulok71qs.webp", + "profile_image_url": "/player-photos/4302bcdd.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-5d7c1ebf", @@ -1867,19 +1498,19 @@ "team_id": "team-0e114265", "position": "Mid", "condition": 100, - "full_name": "Mireu", + "full_name": "Jeong Jo-bin", "attributes": { - "laning": 75, "mechanics": 79, - "discipline": 79, + "laning": 75, + "teamfighting": 83, "macro_play": 83, "consistency": 79, "shotcalling": 75, - "teamfighting": 83, "champion_pool": 79, + "discipline": 79, "mental_resilience": 79 }, - "match_name": "Jeong Jo-bin", + "match_name": "Mireu", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1893,16 +1524,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778520987117_pubcxc8mwia.png", + "profile_image_url": "/player-photos/7f7ab447.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-b7001025", @@ -1910,90 +1539,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Gen.G Global Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "KT Rolster Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-loud2025", - "team_name": "LOUD", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-loud2025", "position": "Jungle", "condition": 100, - "full_name": "YoungJae", + "full_name": "Ko Yeong-jae", "attributes": { - "laning": 76, "mechanics": 72, - "discipline": 81, + "laning": 76, + "teamfighting": 73, "macro_play": 81, "consistency": 74, "shotcalling": 70, - "teamfighting": 73, "champion_pool": 79, + "discipline": 81, "mental_resilience": 81 }, - "match_name": "Ko Yeong-jae", + "match_name": "YoungJae", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -2006,16 +1571,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", + "natural_position": "Mid", "profile_image_url": "/player-photos/777bf608.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-649b912e", @@ -2029,19 +1592,19 @@ "team_id": "team-76137e73", "position": "ADC", "condition": 100, - "full_name": "Morttheus ", + "full_name": "Matheus Motta", "attributes": { - "laning": 78, "mechanics": 79, - "discipline": 75, + "laning": 78, + "teamfighting": 77, "macro_play": 74, "consistency": 77, "shotcalling": 72, - "teamfighting": 77, "champion_pool": 74, + "discipline": 75, "mental_resilience": 74 }, - "match_name": "Matheus Motta", + "match_name": "Morttheus ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -2054,17 +1617,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778440552793_ktssd42ra8p.avif", + "natural_position": "Adc", + "profile_image_url": "/player-photos/166b2ae6.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "wage": 35000, @@ -2075,14 +1636,14 @@ "fitness": 100, "condition": 100, "attributes": { - "laning": 69, "mechanics": 74, - "discipline": 69, + "laning": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 65, "shotcalling": 69, - "teamfighting": 69, "champion_pool": 73, + "discipline": 69, "mental_resilience": 64 }, "loan_listed": false, @@ -2091,25 +1652,13 @@ "potential_base": 80, "transfer_listed": false, "id": "player-da3e51c1", - "match_name": "Raí Yamada", - "full_name": "Curse", - "date_of_birth": "2005-05-18", - "nationality": "BR", - "profile_image_url": "/player-photos/1778545803510_jhx1lbv8zw.png", + "match_name": "Curse", + "full_name": "Raí Yamada", "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], "team_id": "team-b3da089b", - "traits": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "BR", + "date_of_birth": "2005-05-18", + "profile_image_url": "/player-photos/50791e728b7b536a.png" }, { "id": "player-220199ce", @@ -2123,19 +1672,19 @@ "team_id": "team-76137e73", "position": "Mid", "condition": 100, - "full_name": "Kaze", + "full_name": " Lucas Sebastian Fé", "attributes": { - "laning": 80, "mechanics": 85, - "discipline": 76, + "laning": 80, + "teamfighting": 83, "macro_play": 80, "consistency": 76, "shotcalling": 80, - "teamfighting": 83, "champion_pool": 80, + "discipline": 76, "mental_resilience": 80 }, - "match_name": " Lucas Sebastian Fé", + "match_name": "Kaze", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -2149,16 +1698,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778440242041_00dz0ld9vxkua.webp", + "profile_image_url": "/player-photos/31c891eb484d7d24.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-1416f1f6", @@ -2172,19 +1719,19 @@ "team_id": "team-76137e73", "position": "Jungle", "condition": 100, - "full_name": "STEPZ", + "full_name": "Eloy Rodríguez", "attributes": { - "laning": 80, "mechanics": 82, - "discipline": 74, + "laning": 80, + "teamfighting": 81, "macro_play": 78, "consistency": 75, "shotcalling": 75, - "teamfighting": 81, "champion_pool": 75, + "discipline": 74, "mental_resilience": 76 }, - "match_name": "Eloy Rodríguez", + "match_name": "STEPZ", "loan_listed": false, "morale_core": {}, "nationality": "Venezuela", @@ -2197,17 +1744,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": "/player-photos/1778432166842_jqvbh4p8b4i.webp", + "natural_position": "Mid", + "profile_image_url": "/player-photos/5b12e4c911848215.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-54acc447", @@ -2215,54 +1760,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-20461098", - "team_name": "Fluxo W7M", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-20461098", "position": "ADC", "condition": 100, - "full_name": "BAO", + "full_name": "Jeong Hyeon-woo", "attributes": { - "laning": 79, "mechanics": 80, - "discipline": 81, + "laning": 79, + "teamfighting": 79, "macro_play": 76, "consistency": 77, "shotcalling": 73, - "teamfighting": 79, "champion_pool": 76, + "discipline": 81, "mental_resilience": 80 }, - "match_name": "Jeong Hyeon-woo", + "match_name": "BAO", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -2275,16 +1792,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778426090776_3ojt0iblt0w.webp", + "natural_position": "Adc", + "profile_image_url": "/player-photos/f4425cdc93473413.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-b3246d66", @@ -2292,144 +1807,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Farenvehn", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PRIMATE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "River Plate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rensga Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rensga Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Feint Gaming\t", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0c8be917", "position": "Mid", "condition": 100, - "full_name": "Enga", + "full_name": "Eneas Tomas Protti", "attributes": { - "laning": 75, "mechanics": 80, - "discipline": 71, + "laning": 75, + "teamfighting": 78, "macro_play": 75, "consistency": 71, "shotcalling": 75, - "teamfighting": 78, "champion_pool": 75, + "discipline": 71, "mental_resilience": 75 }, - "match_name": "Eneas Tomas Protti", + "match_name": "Enga", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -2443,15 +1840,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778441278677_xafux1h8sts.webp", + "profile_image_url": "/player-photos/205f6beb.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-ff590a00", @@ -2459,90 +1854,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0c8be917", - "team_name": "Leviatán", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Aguilas Doradas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Aguilas Doradas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "GeekSide Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Peace Angels", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "R7 Academy", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0c8be917", "position": "Top", "condition": 100, - "full_name": "Devost", + "full_name": "Julian Santiago Orozco Chaves", "attributes": { - "laning": 71, "mechanics": 75, - "discipline": 68, + "laning": 71, + "teamfighting": 72, "macro_play": 69, "consistency": 66, "shotcalling": 68, - "teamfighting": 72, "champion_pool": 70, + "discipline": 68, "mental_resilience": 65 }, - "match_name": "Julian Santiago Orozco Chaves", + "match_name": "Devost", "loan_listed": false, "morale_core": {}, "nationality": "Colombia", @@ -2556,15 +1887,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778441036072_mf4pzf4flyo.avif", + "profile_image_url": "/player-photos/5bd70ee0.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-ec4eec9a", @@ -2578,19 +1907,19 @@ "team_id": "team-0e114265", "position": "ADC", "condition": 100, - "full_name": "Ceo", + "full_name": "Lorenzo Tévez", "attributes": { - "laning": 76, "mechanics": 77, - "discipline": 72, + "laning": 76, + "teamfighting": 76, "macro_play": 72, "consistency": 72, "shotcalling": 70, - "teamfighting": 76, "champion_pool": 73, + "discipline": 72, "mental_resilience": 72 }, - "match_name": "Lorenzo Tévez", + "match_name": "Ceo", "loan_listed": false, "morale_core": {}, "nationality": "Argentina", @@ -2603,17 +1932,15 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778425811815_1gh6zf2rbm6.webp", + "natural_position": "Adc", + "profile_image_url": "/player-photos/0ef60b4224c93258.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-b5bcba20", @@ -2627,19 +1954,19 @@ "team_id": "team-76137e73", "position": "Top", "condition": 100, - "full_name": "Zynts ", + "full_name": "Matheus Emanuel Silva", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 79, + "laning": 80, + "teamfighting": 75, "macro_play": 80, "consistency": 80, "shotcalling": 78, - "teamfighting": 75, "champion_pool": 77, + "discipline": 79, "mental_resilience": 76 }, - "match_name": "Matheus Emanuel Silva", + "match_name": "Zynts ", "loan_listed": false, "morale_core": {}, "nationality": "Brazil", @@ -2653,16 +1980,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778440367374_1z32905jhp.webp", + "profile_image_url": "/player-photos/078caf969c94033b.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] }, { "id": "player-3485cb3b", @@ -2676,19 +2001,19 @@ "team_id": "team-0e114265", "position": "Top", "condition": 100, - "full_name": "Wizer", + "full_name": "Choi Eui-seok ", "attributes": { - "laning": 76, "mechanics": 79, - "discipline": 72, + "laning": 76, + "teamfighting": 80, "macro_play": 75, "consistency": 74, "shotcalling": 77, - "teamfighting": 80, "champion_pool": 78, + "discipline": 72, "mental_resilience": 80 }, - "match_name": "Choi Eui-seok ", + "match_name": "Wizer", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -2702,16 +2027,14 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": "/player-photos/1778425712271_89ghjpvqzx6.webp", + "profile_image_url": "/player-photos/0264eecf.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null + "career": [] } ] } \ No newline at end of file diff --git a/data/players/cd_players.json b/data/players/cd_players.json index 94106fffa..57c648fad 100644 --- a/data/players/cd_players.json +++ b/data/players/cd_players.json @@ -3,2412 +3,2206 @@ "description": "CD - 2026 Season", "players": [ { - "id": "player-44698a83", - "match_name": "Hakari", - "full_name": "Hakari", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 67, - "discipline": 65, - "macro_play": 66, - "consistency": 64, - "shotcalling": 70, - "teamfighting": 64, - "champion_pool": 66, - "mental_resilience": 67 + "id": "player-6abde533", + "wage": 86000, + "stats": { + "appearances": 0 }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-603562ef", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "team-467d253d", + "position": "ADC", + "condition": 100, + "full_name": "Guilherme Rabelo Muniz", + "attributes": { + "mechanics": 72, + "laning": 79, + "teamfighting": 71, + "macro_play": 70, + "consistency": 71, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 74 + }, + "match_name": "Rabelo", + "loan_listed": false, + "morale_core": {}, + "nationality": "Brazil", + "contract_end": "2026-11-16", + "market_value": 1290000, + "birth_country": null, + "date_of_birth": "2004-08-21", + "potential_base": 81, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/02dd434c.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-9971732a", - "match_name": "Eradan", - "full_name": "Eradan", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0a91411d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Guilherme Soares da Silva", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 67, - "macro_play": 64, - "consistency": 63, + "mechanics": 73, + "laning": 73, + "teamfighting": 72, + "macro_play": 71, + "consistency": 72, "shotcalling": 70, - "teamfighting": 63, - "champion_pool": 66, - "mental_resilience": 65 + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, + "match_name": "Guigs", + "contract_end": "2027-11-15", + "position": "Support", + "team_id": "team-53c6789c", + "nationality": "BR", + "date_of_birth": "1999-07-05", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/c973f9e06a267f75.webp" + }, + { + "id": "player-1ee7a224", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "Vinicius Marvin de Souza", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "Marvin", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2005-07-16", + "stats": {}, + "profile_image_url": "/player-photos/f72c4fb3c2de9cbb.webp" }, { - "id": "player-7e026f2b", - "match_name": "Curse", - "full_name": "Curse", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2616e76a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4fec330a", + "condition": 100, + "full_name": "Elvis Vergara", "attributes": { - "laning": 69, "mechanics": 69, - "discipline": 69, - "macro_play": 67, - "consistency": 69, - "shotcalling": 70, + "laning": 63, "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 70 + "macro_play": 64, + "consistency": 65, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 65, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pilot", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-10-10", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "1999-08-20", + "stats": {}, + "profile_image_url": "/player-photos/86c760b7a035d127.webp" }, { - "id": "player-6016bae6", - "match_name": "Disamis", - "full_name": "Disamis", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-28adff2c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, + "full_name": "Filipe Souza Lima Viscardi", "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 69, - "macro_play": 73, - "consistency": 73, + "mechanics": 69, + "laning": 71, + "teamfighting": 73, + "macro_play": 71, + "consistency": 71, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 68, - "mental_resilience": 71 + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Bipi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-10-08", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2003-03-12", + "stats": {}, + "profile_image_url": "/player-photos/21ba601366eebd59.webp" }, { "id": "player-39978a99", - "match_name": "Levizin", - "full_name": "Levizin", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "Levi Adoniram Moura Pedutti", "attributes": { - "laning": 72, "mechanics": 71, - "discipline": 72, + "laning": 72, + "teamfighting": 71, "macro_play": 71, "consistency": 71, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Levizin", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2003-03-30", + "stats": {}, + "profile_image_url": "/player-photos/59303c77aa684a54.webp" }, { - "id": "player-e76aecc6", - "match_name": "Makes", - "full_name": "Makes", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3da17857", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2ec1b6c9", + "condition": 100, + "full_name": "Enzo Candido Ferreira", "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 69, - "macro_play": 65, - "consistency": 64, + "mechanics": 69, + "laning": 67, + "teamfighting": 67, + "macro_play": 69, + "consistency": 69, "shotcalling": 70, - "teamfighting": 63, "champion_pool": 68, - "mental_resilience": 67 + "discipline": 69, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Sinatra", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2007-05-06", + "stats": {}, + "profile_image_url": "/player-photos/cc152a3cf386d538.webp" }, { - "id": "player-44362bb1", - "match_name": "Kiari", - "full_name": "Kiari", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-410c7710", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "Daniel Lisboa Tonelli", "attributes": { - "laning": 69, - "mechanics": 71, - "discipline": 69, - "macro_play": 70, - "consistency": 70, + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, "shotcalling": 70, - "teamfighting": 70, "champion_pool": 70, - "mental_resilience": 70 + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Namiru", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2007-02-06", + "stats": {}, + "profile_image_url": "/player-photos/a9fcf9f0eedba0bb.webp" }, { - "id": "player-d417bba3", - "match_name": "Randal", - "full_name": "Randal", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-435d5f9e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2ec1b6c9", + "condition": 100, + "full_name": "Cleber Nantes", "attributes": { - "laning": 67, "mechanics": 69, - "discipline": 71, + "laning": 69, + "teamfighting": 66, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 70, + "discipline": 69, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SuperCleber", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2003-12-06", + "stats": {}, + "profile_image_url": "/player-photos/c1daf24191bf40d1.webp" }, { - "id": "player-e7ebf5fa", - "match_name": "sarolu", - "full_name": "sarolu", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-44362bb1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-31ca2c75", + "condition": 100, + "full_name": "Thiago Luiz Campos", "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 71, - "macro_play": 69, - "consistency": 69, + "mechanics": 71, + "laning": 69, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 71 + "champion_pool": 70, + "discipline": 69, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Kiari", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2029-11-19", "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "1999-11-30", "stats": {}, + "profile_image_url": "/player-photos/5332ea2ae32e6106.webp" + }, + { + "id": "player-44698a83", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-603562ef", + "condition": 100, + "full_name": "Eron Rodrigues", + "attributes": { + "mechanics": 67, + "laning": 63, + "teamfighting": 64, + "macro_play": 66, + "consistency": 64, + "shotcalling": 70, + "champion_pool": 66, + "discipline": 65, + "mental_resilience": 67 + }, + "match_name": "Hakari", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-05", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2005-03-11", + "stats": {}, + "profile_image_url": "/player-photos/283164e0e813dee3.webp" }, { - "id": "player-e340e76a", - "match_name": "Samkz", - "full_name": "Samkz", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-46934cda", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-369e4620", + "condition": 100, + "full_name": "Qats", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 73, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 70, - "teamfighting": 73, "champion_pool": 70, - "mental_resilience": 73 + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Qats", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-4dadcf3b", - "match_name": "Kisee", - "full_name": "Kisee", - "date_of_birth": null, - "nationality": "AU", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-4872ca17", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-53c6789c", + "condition": 100, + "full_name": "Caio Yuiti Kojima", "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 71, - "macro_play": 69, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 + "mechanics": 73, + "laning": 72, + "teamfighting": 72, + "macro_play": 71, + "consistency": 71, + "shotcalling": 70, + "champion_pool": 68, + "discipline": 67, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Kojima", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2004-06-02", + "stats": {}, + "profile_image_url": "/player-photos/e35f2d2e5da189a8.webp" }, { - "id": "player-435d5f9e", - "match_name": "SuperCleber", - "full_name": "SuperCleber", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-4b6b08c6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-369e4620", + "condition": 100, + "full_name": "César Berteli França", "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, + "mechanics": 73, + "laning": 72, + "teamfighting": 73, + "macro_play": 72, + "consistency": 72, "shotcalling": 70, - "teamfighting": 66, - "champion_pool": 70, - "mental_resilience": 70 + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "ZekaS", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2028-11-20", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2002-06-11", + "stats": {}, + "profile_image_url": "/player-photos/385c6f712792e38e.webp" }, { - "id": "player-c3c7fd31", - "match_name": "Aegis", - "full_name": "Aegis", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-4d968f24", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0dcb5849", + "condition": 100, + "full_name": "Marcelo Leite", "attributes": { - "laning": 67, "mechanics": 69, - "discipline": 70, - "macro_play": 69, - "consistency": 69, + "laning": 71, + "teamfighting": 72, + "macro_play": 71, + "consistency": 71, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 69, + "discipline": 69, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Celo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-10", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2000-07-30", + "stats": {}, + "profile_image_url": "/player-photos/82b64794f6d2ff91.webp" }, { - "id": "player-ecfc91ea", - "match_name": "CarioK", - "full_name": "CarioK", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-4dadcf3b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2ec1b6c9", + "condition": 100, + "full_name": "Ronald Van Bao Vo", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 70, - "macro_play": 73, + "mechanics": 71, + "laning": 71, + "teamfighting": 69, + "macro_play": 69, "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 68, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Kisee", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f12e7160", - "match_name": "lolo", - "full_name": "lolo", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 67, - "mechanics": 64, - "discipline": 72, - "macro_play": 68, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 70, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "AU", + "date_of_birth": "2003-03-07", + "stats": {}, + "profile_image_url": "/player-photos/03d183698d70f093.webp" }, { "id": "player-4e28934b", - "match_name": "Leleko", - "full_name": "Leleko", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-31ca2c75", + "condition": 100, + "full_name": "Leandro Hideki Aihara", "attributes": { - "laning": 67, "mechanics": 67, - "discipline": 69, + "laning": 67, + "teamfighting": 65, "macro_play": 67, "consistency": 67, "shotcalling": 70, - "teamfighting": 65, "champion_pool": 70, + "discipline": 69, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Leleko", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-10-31", + "market_value": 0, "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "1999-12-26", + "stats": {}, + "profile_image_url": "/player-photos/86848742c5b0fc1a.webp" }, { - "id": "player-6ca9f424", - "match_name": "Blacky", - "full_name": "Blacky", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-5484cc9b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "scamber", "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 72, - "macro_play": 69, - "consistency": 69, + "mechanics": 73, + "laning": 73, + "teamfighting": 72, + "macro_play": 73, + "consistency": 73, "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "traits": [], - "contract_end": null, + "match_name": "scamber", + "position": "Support", + "team_id": "team-369e4620", + "nationality": "BR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-46934cda", - "match_name": "Qats", - "full_name": "Qats", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-56a0b4cf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, + "full_name": "Leonardo Pereira", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 71, - "macro_play": 73, - "consistency": 73, + "mechanics": 69, + "laning": 69, + "teamfighting": 71, + "macro_play": 69, + "consistency": 69, "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, + "champion_pool": 69, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Forlin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-10", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2004-10-15", + "stats": {}, + "profile_image_url": "/player-photos/ec199af112594dc3.webp" }, { - "id": "player-869b5840", - "match_name": "Netuno", - "full_name": "Netuno", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-6016bae6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-369e4620", + "condition": 100, + "full_name": "Disamis", "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 65, - "macro_play": 65, - "consistency": 65, + "mechanics": 73, + "laning": 72, + "teamfighting": 71, + "macro_play": 73, + "consistency": 73, "shotcalling": 70, - "teamfighting": 65, "champion_pool": 68, - "mental_resilience": 67 + "discipline": 69, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Disamis", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/a453e3df69d9df1a.png" }, { - "id": "player-75946705", - "match_name": "Yupps", - "full_name": "Yupps", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-63cb1341", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-467d253d", + "condition": 100, + "full_name": "zynts", "attributes": { - "laning": 69, - "mechanics": 70, - "discipline": 67, - "macro_play": 69, - "consistency": 69, + "mechanics": 73, + "laning": 73, + "teamfighting": 71, + "macro_play": 71, + "consistency": 73, "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 69 + "champion_pool": 68, + "discipline": 69, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "zynts", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/078caf969c94033b.webp" }, { - "id": "player-f9ec8b51", - "match_name": "cRa", - "full_name": "cRa", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-6ca9f424", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0dcb5849", + "condition": 100, + "full_name": "Matheus Lessa", "attributes": { + "mechanics": 69, "laning": 69, - "mechanics": 70, - "discipline": 70, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 70, + "discipline": 72, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Blacky", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-10", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2000-04-22", + "stats": {}, + "profile_image_url": "/player-photos/d13ef7e851d5f0ac.webp" }, { "id": "player-6fff6949", - "match_name": "Zoen", - "full_name": "Zoen", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "Enzo Ganino", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 73, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 70, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Zoen", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3da17857", - "match_name": "Sinatra", - "full_name": "Sinatra", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 67, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 68, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AR", + "date_of_birth": "2005-10-01", + "stats": {}, + "profile_image_url": "/player-photos/4282d4d2b1db4f7b.webp" }, { - "id": "player-7ef4d09d", - "match_name": "jmz", - "full_name": "jmz", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-705ea0c9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-53c6789c", + "condition": 100, + "full_name": "Artur Queiroz Scalabrini", "attributes": { - "laning": 69, "mechanics": 70, - "discipline": 71, + "laning": 69, + "teamfighting": 67, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 70, "champion_pool": 68, - "mental_resilience": 72 + "discipline": 67, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SCARY", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-56a0b4cf", - "match_name": "Forlin", - "full_name": "Forlin", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 73, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2027-11-15", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/f96492720b63bb07.webp" }, { "id": "player-70c82ac0", - "match_name": "Nero", - "full_name": "Nero", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-603562ef", + "condition": 100, + "full_name": "Octavio Augusto Moura Ribeiro", "attributes": { - "laning": 67, "mechanics": 65, - "discipline": 63, + "laning": 67, + "teamfighting": 62, "macro_play": 65, "consistency": 65, "shotcalling": 70, - "teamfighting": 62, "champion_pool": 68, + "discipline": 63, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Nero", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-05", + "market_value": 0, "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2004-07-25", + "stats": {}, + "profile_image_url": "/player-photos/51d52dc7e85f5287.webp" }, { - "id": "player-992fac47", - "match_name": "StineR", - "full_name": "StineR", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-75946705", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-53c6789c", + "condition": 100, + "full_name": "Yuri Gabriel Petermann", "attributes": { - "laning": 66, - "mechanics": 67, - "discipline": 66, - "macro_play": 66, - "consistency": 66, + "mechanics": 70, + "laning": 69, + "teamfighting": 68, + "macro_play": 69, + "consistency": 69, "shotcalling": 70, - "teamfighting": 65, - "champion_pool": 68, + "champion_pool": 70, + "discipline": 67, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Yupps", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2002-12-23", + "stats": {}, + "profile_image_url": "/player-photos/4722acdd47f21feb.webp" }, { - "id": "player-63cb1341", - "match_name": "zynts", - "full_name": "zynts", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-76f194bb", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Vitor Leopoldo de Souza", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, - "macro_play": 71, - "consistency": 73, + "mechanics": 67, + "laning": 67, + "teamfighting": 67, + "macro_play": 67, + "consistency": 67, "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 68, - "mental_resilience": 71 + "champion_pool": 67, + "discipline": 67, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, + "match_name": "Gatovisck", + "loan_listed": false, + "contract_end": "2027-11-15", + "transfer_listed": false, + "position": "Support", + "team_id": "team-408c21b2", + "nationality": "BR", + "date_of_birth": "2006-11-22", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/f70f2b1c12ce0c88.webp" }, { - "id": "player-4b6b08c6", - "match_name": "ZekaS", - "full_name": "ZekaS", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-79d3f261", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2ec1b6c9", + "condition": 100, + "full_name": "Diego Amaral", "attributes": { + "mechanics": 72, "laning": 72, - "mechanics": 73, - "discipline": 72, + "teamfighting": 70, "macro_play": 72, "consistency": 72, "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 73 + "champion_pool": 70, + "discipline": 64, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Brance", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2004-02-25", + "stats": {}, + "profile_image_url": "/player-photos/7b37b6e53c3496c5.webp" }, { - "id": "player-7f6f8e4d", - "match_name": "Dizin", - "full_name": "Dizin", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-7e026f2b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-467d253d", + "condition": 100, + "full_name": "Curse", "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 69, - "macro_play": 61, - "consistency": 63, + "mechanics": 69, + "laning": 69, + "teamfighting": 67, + "macro_play": 67, + "consistency": 69, "shotcalling": 70, - "teamfighting": 64, "champion_pool": 68, - "mental_resilience": 67 + "discipline": 69, + "mental_resilience": 70 }, - "condition": 100, + "match_name": "Curse", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/50791e728b7b536a.png" + }, + { + "id": "player-7e6099ca", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "uZent", + "attributes": { + "mechanics": 82, + "laning": 84, + "teamfighting": 82, + "macro_play": 84, + "consistency": 84, + "shotcalling": 83, + "champion_pool": 79, + "discipline": 84, + "mental_resilience": 84 + }, + "match_name": "uZent", + "potential_base": 91, + "position": "Support", + "team_id": "team-467d253d", + "nationality": "BR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/ba9920eacff669ae.webp" }, { - "id": "player-705ea0c9", - "match_name": "SCARY", - "full_name": "SCARY", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-7ef4d09d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-467d253d", + "condition": 100, + "full_name": "João Loureiro", "attributes": { - "laning": 69, "mechanics": 70, - "discipline": 67, + "laning": 69, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 67, "champion_pool": 68, - "mental_resilience": 69 + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Jmz", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-07-06", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2005-01-19", + "stats": {}, + "profile_image_url": "/player-photos/e801fb2d6ceac77b.webp" }, { - "id": "player-2616e76a", - "match_name": "Pilot", - "full_name": "Pilot", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-7f15b292", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ighor Treiss", "attributes": { - "laning": 63, - "mechanics": 69, - "discipline": 65, - "macro_play": 64, - "consistency": 65, + "mechanics": 70, + "laning": 71, + "teamfighting": 72, + "macro_play": 69, + "consistency": 68, "shotcalling": 70, - "teamfighting": 67, - "champion_pool": 70, - "mental_resilience": 67 + "champion_pool": 68, + "discipline": 69, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "contract_end": null, + "match_name": "Konseki", + "contract_end": "2029-11-19", + "position": "Support", + "team_id": "team-31ca2c75", + "nationality": "BR", + "date_of_birth": "2004-09-25", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/55701693b644554d.webp" + }, + { + "id": "player-7f6f8e4d", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4fec330a", + "condition": 100, + "full_name": "Ronald Silva de Paula", + "attributes": { + "mechanics": 64, + "laning": 65, + "teamfighting": 64, + "macro_play": 61, + "consistency": 63, + "shotcalling": 70, + "champion_pool": 68, + "discipline": 69, + "mental_resilience": 67 + }, + "match_name": "Dizin", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-10-27", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2002-11-13", + "stats": {}, + "profile_image_url": "/player-photos/52e1109eb69c6955.webp" }, { - "id": "player-ff994c1c", - "match_name": "Grevthar", - "full_name": "Grevthar", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-80d12f93", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-603562ef", + "condition": 100, + "full_name": "Pedro Lucas Rodrigues", "attributes": { - "laning": 69, - "mechanics": 73, - "discipline": 65, - "macro_play": 70, - "consistency": 69, - "shotcalling": 70, + "mechanics": 69, + "laning": 65, "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 + "macro_play": 67, + "consistency": 67, + "shotcalling": 70, + "champion_pool": 64, + "discipline": 65, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Beenie", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-05", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2001-12-28", + "stats": {}, + "profile_image_url": "/player-photos/1f734091b780485d.webp" }, { "id": "player-82d2724d", - "match_name": "Aithusa", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, "full_name": "Aithusa", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 69, "mechanics": 69, - "discipline": 73, + "laning": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 68, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aithusa", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-410c7710", - "match_name": "Namiru", - "full_name": "Namiru", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-79d3f261", - "match_name": "Brance", - "full_name": "Brance", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-862dabc1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lucas Adriel", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 64, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, + "mechanics": 67, + "laning": 71, "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 69 + "macro_play": 65, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 66, + "discipline": 69, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "traits": [], - "contract_end": null, + "match_name": "Bulas", + "contract_end": "2026-11-05", + "position": "Support", + "team_id": "team-603562ef", + "nationality": "BR", + "date_of_birth": "2003-10-02", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/5f78f2736491f20a.webp" }, { - "id": "player-c1447ae7", - "match_name": "Fuuu", - "full_name": "Fuuu", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-869b5840", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4fec330a", + "condition": 100, + "full_name": "Lucas Flores Fensterseifer", "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 67, - "macro_play": 70, - "consistency": 72, + "mechanics": 67, + "laning": 66, + "teamfighting": 65, + "macro_play": 65, + "consistency": 65, "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 + "champion_pool": 68, + "discipline": 65, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Netuno", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-10-10", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2003-02-12", + "stats": {}, + "profile_image_url": "/player-photos/09b92a94e4202d0d.webp" }, { "id": "player-89230297", - "match_name": "Dioge", - "full_name": "Dioge", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, + "full_name": "Diogenes Barbosa Bispo", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 71, + "laning": 70, + "teamfighting": 71, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 68, + "discipline": 71, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dioge", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-80d12f93", - "match_name": "Beenie", - "full_name": "Beenie", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 69, - "discipline": 65, - "macro_play": 67, - "consistency": 67, - "shotcalling": 70, - "teamfighting": 69, - "champion_pool": 64, - "mental_resilience": 67 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2026-10-08", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2002-07-18", + "stats": {}, + "profile_image_url": "/player-photos/66991c00efdde243.webp" }, { "id": "player-8e637bba", - "match_name": "scuro", - "full_name": "scuro", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-31ca2c75", + "condition": 100, + "full_name": "Gabriel Scuro", "attributes": { - "laning": 65, "mechanics": 71, - "discipline": 69, + "laning": 65, + "teamfighting": 71, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, + "discipline": 69, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Scuro", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2029-11-19", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4d968f24", - "match_name": "Celo", - "full_name": "Celo", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": "2001-02-24", + "stats": {}, + "profile_image_url": "/player-photos/717eb17e79125e85.webp" + }, + { + "id": "player-992fac47", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-31ca2c75", + "condition": 100, + "full_name": "Vinicius Dias", "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 69, - "macro_play": 71, - "consistency": 71, + "mechanics": 67, + "laning": 66, + "teamfighting": 65, + "macro_play": 66, + "consistency": 66, "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 70 + "champion_pool": 68, + "discipline": 66, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0dcb5849", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "StineR", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2005-03-09", + "stats": {}, + "profile_image_url": "/player-photos/db7eb690df4fb3d8.webp" }, { - "id": "player-db1578e8", - "match_name": "Buero", - "full_name": "Buero", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9971732a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-31ca2c75", + "condition": 100, + "full_name": "André Aparecido dos Santos", "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, + "mechanics": 64, + "laning": 64, + "teamfighting": 63, + "macro_play": 64, + "consistency": 63, "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 73 + "champion_pool": 66, + "discipline": 67, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Eradan", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-06-30", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "1999-06-28", + "stats": {}, + "profile_image_url": "/player-photos/5aea5bad86b88bf3.webp" }, { - "id": "player-4872ca17", - "match_name": "Kojima", - "full_name": "Kojima", + "career": [], + "contract_end": "2026-06-15", + "id": "player-9c516f6f", + "match_name": "Guizzy", + "full_name": "Guilherme Bergamaschi", + "position": "Jungle", + "team_id": "team-467d253d", + "nationality": "", "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 67, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 69 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-53c6789c", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a8c855deb202de56.webp" }, { - "id": "player-f71b94d0", - "match_name": "Gru", - "full_name": "Gru", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9f7081b4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alexandre Fernandes", "attributes": { - "laning": 69, "mechanics": 69, - "discipline": 70, + "laning": 70, + "teamfighting": 71, "macro_play": 71, "consistency": 71, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 69, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Cavalo", + "contract_end": "2026-11-10", + "position": "Support", "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, + "nationality": "BR", + "date_of_birth": "2001-03-10", "wage": 0, "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/2e59f3ba7539aadc.webp" + }, + { + "wage": 62, "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 78, + "laning": 74, + "teamfighting": 77, + "macro_play": 74, + "consistency": 71, + "shotcalling": 74, + "champion_pool": 74, + "discipline": 70, + "mental_resilience": 74 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 930, + "potential_base": 82, + "transfer_listed": false, + "id": "player-a98bf259", + "match_name": "Disamis", + "full_name": "Pedro Arthur Gonçalves", + "position": "Jungle", + "team_id": "team-369e4620", + "nationality": "BR", + "date_of_birth": "2003-08-03", + "profile_image_url": "/player-photos/a453e3df69d9df1a.png" }, { - "id": "player-1ee7a224", - "match_name": "Marvin", - "full_name": "Marvin", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "career": [], + "contract_end": "2026-10-27", + "id": "player-abac4e86", + "match_name": "Damage", + "full_name": "Yan Sales Neves", + "position": "Support", + "team_id": "team-4fec330a", + "nationality": "", + "date_of_birth": "1997-06-20", + "wage": 0, + "market_value": 0, + "potential_base": 0, "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/36107ba88791768f.webp" + }, + { + "career": [], + "contract_end": "2026-06-02", + "id": "player-ad1f94b3", + "match_name": "Houndin", + "full_name": "Regis de Abreu Soares", + "position": "Support", + "team_id": "team-467d253d", + "nationality": "", + "date_of_birth": "2005-07-10", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/2ff2fdcb2fe4fe7b.webp" + }, + { + "id": "player-add0c86a", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-408c21b2", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Vinicius Argolo Viana", + "attributes": { + "mechanics": 65, + "laning": 67, + "teamfighting": 68, + "macro_play": 64, + "consistency": 65, + "shotcalling": 70, + "champion_pool": 66, + "discipline": 69, + "mental_resilience": 67 + }, + "match_name": "Zay", + "contract_end": "2026-06-27", + "position": "Support", + "team_id": "team-4fec330a", + "nationality": "BR", + "date_of_birth": "2004-09-06", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/32e70686cbd94271.webp" }, { "id": "player-b753c79c", - "match_name": "Rabelo", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-467d253d", + "condition": 100, "full_name": "Rabelo", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 73, "mechanics": 70, - "discipline": 71, + "laning": 73, + "teamfighting": 69, "macro_play": 73, "consistency": 73, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 68, + "discipline": 71, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Rabelo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/7396f03da9da5547.webp" }, { - "id": "player-28adff2c", - "match_name": "bipi", - "full_name": "bipi", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-c1447ae7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-467d253d", + "condition": 100, + "full_name": "Gabriel Toshio Furuuti", "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 73, - "macro_play": 71, - "consistency": 71, + "mechanics": 71, + "laning": 73, + "teamfighting": 70, + "macro_play": 70, + "consistency": 72, "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 68, - "mental_resilience": 72 + "champion_pool": 69, + "discipline": 67, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Fuuu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-862dabc1", - "match_name": "bulas", - "full_name": "bulas", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", + "champion_mastery": [], "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 67, - "discipline": 69, - "macro_play": 65, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 66, - "mental_resilience": 67 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-603562ef", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2003-07-31", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d4832dca95060eff.webp" }, { - "id": "player-7f15b292", - "match_name": "konseki", - "full_name": "konseki", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-c3c7fd31", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, + "full_name": "Gabirel Vinicius Saes de Lemos", "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 69, + "mechanics": 69, + "laning": 67, + "teamfighting": 69, "macro_play": 69, - "consistency": 68, + "consistency": 69, "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 69 + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31ca2c75", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aegis ", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-10", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "1999-09-09", + "stats": {}, + "profile_image_url": "/player-photos/914a9d45ad3edc7f.webp" }, { "id": "player-d2a32e35", - "match_name": "Manel", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Manel", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 69, "mechanics": 69, - "discipline": 69, + "laning": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 70, - "teamfighting": 69, "champion_pool": 69, + "discipline": 69, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Manel", + "position": "Support", "team_id": "team-0dcb5849", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "BR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-7e6099ca", - "match_name": "uZent", - "full_name": "uZent", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 84, - "mechanics": 82, - "discipline": 84, - "macro_play": 84, - "consistency": 84, - "shotcalling": 83, - "teamfighting": 82, - "champion_pool": 79, - "mental_resilience": 84 - }, - "condition": 100, + "id": "player-d417bba3", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-467d253d", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "team_id": "team-0dcb5849", + "condition": 100, + "full_name": "Lucas Mateus Gondim", + "attributes": { + "mechanics": 69, + "laning": 67, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 71, + "mental_resilience": 70 + }, + "match_name": "Randal", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 91, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-10", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": "2004-01-02", + "stats": {}, + "profile_image_url": "/player-photos/cdf30e91057d1de2.webp" }, { - "id": "player-f041a4f2", - "match_name": "Telas", - "full_name": "Telas", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-db1578e8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-369e4620", + "condition": 100, + "full_name": "Buero", "attributes": { - "laning": 69, - "mechanics": 71, - "discipline": 69, - "macro_play": 70, + "mechanics": 73, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, "consistency": 72, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, - "mental_resilience": 70 + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2ec1b6c9", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Buero", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-5484cc9b", - "match_name": "scamber", - "full_name": "scamber", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-e340e76a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "Samkz", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 71, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-369e4620", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Samkz", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/56657ff393bc432c.webp" }, { - "id": "player-add0c86a", - "match_name": "zay", - "full_name": "zay", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-e76aecc6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4fec330a", + "condition": 100, + "full_name": "Gabriel Nemeth Ramos", "attributes": { - "laning": 67, "mechanics": 65, - "discipline": 69, - "macro_play": 64, - "consistency": 65, + "laning": 66, + "teamfighting": 63, + "macro_play": 65, + "consistency": 64, "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 66, + "champion_pool": 68, + "discipline": 69, "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4fec330a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Makes", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-10-10", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2004-11-05", "stats": {}, + "profile_image_url": "/player-photos/69f010d9488a7345.webp" + }, + { + "id": "player-e7ebf5fa", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-369e4620", + "condition": 100, + "full_name": "sarolu", + "attributes": { + "mechanics": 69, + "laning": 71, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 71 + }, + "match_name": "sarolu", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/13f67e0f22a9d03d.webp" }, { - "id": "player-0a91411d", - "match_name": "Guigs", - "full_name": "Guigs", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-ecfc91ea", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-408c21b2", + "condition": 100, + "full_name": "CarioK", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 70, - "macro_play": 71, - "consistency": 72, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 69, + "champion_pool": 68, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, + "match_name": "CarioK", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/c5b36f95a2873413.webp" + }, + { + "id": "player-f041a4f2", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-53c6789c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Luis Gustavo de Lima Drumond", + "attributes": { + "mechanics": 71, + "laning": 69, + "teamfighting": 71, + "macro_play": 70, + "consistency": 72, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 69, + "mental_resilience": 70 + }, + "match_name": "Telas", + "contract_end": "2026-11-16", + "position": "Support", + "team_id": "team-2ec1b6c9", + "nationality": "BR", + "date_of_birth": "2004-07-05", + "wage": 0, + "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/045b6ef04b19ccdd.webp" + }, + { + "id": "player-f12e7160", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-603562ef", + "condition": 100, + "full_name": "Lorenzo Mariano Almeida Cortes Felix", + "attributes": { + "mechanics": 64, + "laning": 67, + "teamfighting": 67, + "macro_play": 68, + "consistency": 67, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 70 + }, + "match_name": "Lolo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-05", + "market_value": 0, + "potential_base": 75, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2004-09-22", + "stats": {}, + "profile_image_url": "/player-photos/ef8fa5b6d0a1fea6.webp" }, { - "id": "player-9f7081b4", - "match_name": "Cavalo", - "full_name": "Cavalo", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-f71b94d0", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a49fd9c6", + "condition": 100, + "full_name": "Gru", "attributes": { - "laning": 70, "mechanics": 69, - "discipline": 71, + "laning": 69, + "teamfighting": 69, "macro_play": 71, "consistency": 71, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, + "match_name": "Gru", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-f9ec8b51", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-a49fd9c6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "team_id": "team-0dcb5849", + "condition": 100, + "full_name": "Cauã Rios Abreu", + "attributes": { + "mechanics": 70, + "laning": 69, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "CRa", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-10", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BR", + "date_of_birth": "2005-06-30", "stats": {}, + "profile_image_url": null + }, + { + "id": "player-ff994c1c", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-53c6789c", + "condition": 100, + "full_name": "Daniel Xavier Ferreira", + "attributes": { + "mechanics": 73, + "laning": 69, + "teamfighting": 69, + "macro_play": 70, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 65, + "mental_resilience": 69 + }, + "match_name": "Grevthar", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2027-11-15", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "1999-08-24", + "stats": {}, + "profile_image_url": "/player-photos/9fdefa214a41b68f.webp" } ] } \ No newline at end of file diff --git a/data/players/ebl_players.json b/data/players/ebl_players.json index fa40b59d3..538cb74d6 100644 --- a/data/players/ebl_players.json +++ b/data/players/ebl_players.json @@ -3,1853 +3,1887 @@ "description": "EBL - 2026 Season", "players": [ { - "id": "player-8ba0cead", - "match_name": "Danilo", - "full_name": "Danilo", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, - "macro_play": 59, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 58 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, + "id": "player-07206a0d", "wage": 0, - "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-26720a69", - "match_name": "Bala", - "full_name": "Bala", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 64, - "macro_play": 61, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-429357ce", - "match_name": "Chan", - "full_name": "Chan", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "team_id": "team-dc2f50f2", + "condition": 100, + "full_name": "Lee Sol-min", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 61, + "laning": 63, + "teamfighting": 62, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, + "champion_pool": 61, + "discipline": 62, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ruby", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-41572139", - "match_name": "Krasito", - "full_name": "Krasito", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 62, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "1998-08-11", + "stats": {}, + "profile_image_url": "/player-photos/5be3f3c39e10eea2.webp" }, { - "id": "player-a7cb44fc", - "match_name": "Sikterr", - "full_name": "Sikterr", - "date_of_birth": null, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-08d1b7b0", + "match_name": "Sintax", + "full_name": "Damir Galovac", + "position": "Mid", + "team_id": "team-b09886df", "nationality": "HR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 61, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 57 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, + "date_of_birth": "1998-06-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a9e998bf69226945.webp" }, { - "id": "player-79eb4eac", - "match_name": "PatkicaA", - "full_name": "PatkicaA", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-0b38b027", + "match_name": "Krisimaru", + "full_name": "Kristian Hoang", + "position": "Mid", + "team_id": "team-3359999b", + "nationality": "BG", "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 60 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/aa63b4116233a7c0.webp" }, { "id": "player-0cb1fcb0", - "match_name": "Kaylem", - "full_name": "Kaylem", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd386f74", + "condition": 100, + "full_name": "Melik Erdogan", "attributes": { - "laning": 64, "mechanics": 63, - "discipline": 62, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 62, "mental_resilience": 61 }, - "condition": 100, + "match_name": "Kaylem", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RO", + "date_of_birth": "2004-03-29", + "stats": {}, + "profile_image_url": "/player-photos/73c00cbaa13852b9.webp" + }, + { + "id": "player-0da4dd16", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-cd386f74", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Asen Popov", + "attributes": { + "mechanics": 62, + "laning": 63, + "teamfighting": 62, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "FloreNNNz", + "position": "Support", + "team_id": "team-3359999b", + "nationality": "BG", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/7b43953d7e98655f.webp" }, { - "id": "player-903ddddc", - "match_name": "Falleo", - "full_name": "Falleo", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-10d0fa24", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-500fa635", + "condition": 100, + "full_name": "Dzoni", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dzoni", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RS", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/51d9ad4ae7a94969.webp" }, { - "id": "player-c66563ef", - "match_name": "Blueboar", - "full_name": "Blueboar", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-1274ebc8", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Vencel Urbin", "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 63, - "macro_play": 56, - "consistency": 56, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": null, + "match_name": "Passzi", + "position": "Support", + "team_id": "team-b09886df", + "nationality": "HU", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/cd7b7ed97e04516e.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-14618541", + "match_name": "YoPoopU", + "full_name": "Dimitar Atanasov", + "position": "Support", + "team_id": "team-3359999b", + "nationality": "BG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/8c669fb18fea7efa.webp" }, { - "id": "player-7eb7b384", - "match_name": "Ferret", - "full_name": "Ferret", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-184b4bb4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-aa50d684", + "condition": 100, + "full_name": "Ozan Tunalı", "attributes": { + "mechanics": 63, "laning": 64, - "mechanics": 64, - "discipline": 61, + "teamfighting": 63, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 61, + "champion_pool": 60, + "discipline": 61, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Crem", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/99617a86ad7bb922.webp" }, { - "id": "player-a1fde612", - "match_name": "Samanan", - "full_name": "Samanan", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 62, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, + "id": "player-23a8eb1a", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-3359999b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-10d0fa24", - "match_name": "Dzoni", - "full_name": "Dzoni", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "condition": 100, + "full_name": "Lyuboslav Nedelev", "attributes": { + "mechanics": 62, "laning": 64, - "mechanics": 64, - "discipline": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Death (Lyuboslav Nedelev)", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BG", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/4c4b84027c5c7181.webp" }, { - "id": "player-61b2b1ba", - "match_name": "Lotuss", - "full_name": "Lotuss", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-26720a69", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1103bd5e", + "condition": 100, + "full_name": "Áron Balogh", "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 58, + "mechanics": 59, + "laning": 58, + "teamfighting": 62, "macro_play": 61, - "consistency": 62, + "consistency": 58, "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 58 + "champion_pool": 59, + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Bala", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "HU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/37cb22dc186aecbd.webp" }, { - "id": "player-71491fba", - "match_name": "Ryuzaki", - "full_name": "Ryuzaki", - "date_of_birth": null, - "nationality": "PR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-29ad6a1d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Samet Can Akıllı", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, + "mechanics": 63, + "laning": 63, + "teamfighting": 63, + "macro_play": 63, + "consistency": 63, + "shotcalling": 55, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "traits": [], - "contract_end": null, + "match_name": "Justcan", + "position": "Support", + "team_id": "team-aa50d684", + "nationality": "TR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/96ac9f58bd87eb2c.webp" }, { - "id": "player-ca46bcf7", - "match_name": "Lagolinas", - "full_name": "Lagolinas", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": null, + "id": "player-2c37e982", "wage": 0, - "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-07206a0d", - "match_name": "Ruby", - "full_name": "Ruby", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-de9656fe", + "condition": 100, + "full_name": "Fran Mumelas", "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 56, + "consistency": 56, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 + "champion_pool": 60, + "discipline": 59, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Blankk", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/7617d29a1d728124.webp" }, { "id": "player-30f598ac", - "match_name": "Metroflox", - "full_name": "Metroflox", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-aa50d684", + "condition": 100, + "full_name": "Florent Broucke", "attributes": { - "laning": 64, "mechanics": 63, - "discipline": 60, + "laning": 64, + "teamfighting": 60, "macro_play": 63, "consistency": 64, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 61, + "discipline": 60, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Metroflox", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-23a8eb1a", - "match_name": "Death", - "full_name": "Death", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/1b66a48026c4d8e8.webp" }, { - "id": "player-5bd073ec", - "match_name": "Pivolj", - "full_name": "Pivolj", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-389f8828", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Robert Nowak", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, - "macro_play": 64, + "laning": 61, + "teamfighting": 63, + "macro_play": 62, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "traits": [], - "contract_end": null, + "match_name": "Erdote", + "position": "Support", + "team_id": "team-dc2f50f2", + "nationality": "PL", + "date_of_birth": "1999-07-19", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/8d9bd24ff3bd182f.webp" }, { - "id": "player-6f5cd930", - "match_name": "Pesho", - "full_name": "Pesho", - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-391a94d0", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Máté Pintér", "attributes": { - "laning": 62, "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 61, + "laning": 60, + "teamfighting": 61, + "macro_play": 58, + "consistency": 56, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "traits": [], - "contract_end": null, + "match_name": "Mood", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-1103bd5e", + "nationality": "HU", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/98d737aec4cedf54.webp" }, { "id": "player-3d233408", - "match_name": "VeRu", - "full_name": "VeRu", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd386f74", + "condition": 100, + "full_name": "Veljko Rutešić", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 64, + "laning": 62, + "teamfighting": 63, "macro_play": 63, "consistency": 62, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 61, + "discipline": 64, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "VeRu", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "RS", + "date_of_birth": "2006-06-19", + "stats": {}, + "profile_image_url": "/player-photos/78ae679d4958eba9.webp" }, { - "id": "player-b18cd1f9", - "match_name": "KURBAX", - "full_name": "KURBAX", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-41572139", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8b9502f1", + "condition": 100, + "full_name": "Krasimir Staykov", "attributes": { + "mechanics": 63, "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, "teamfighting": 64, + "macro_play": 63, + "consistency": 62, + "shotcalling": 56, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Krasito", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-68c63be5", - "match_name": "Endless", - "full_name": "Endless", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 58, - "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 61 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1103bd5e", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BG", + "date_of_birth": "2009-02-10", + "stats": {}, + "profile_image_url": "/player-photos/9ec2af3b66b68558.webp" }, { - "id": "player-7dbbe959", - "match_name": "Partyfosil", - "full_name": "Partyfosil", - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-429357ce", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dc2f50f2", + "condition": 100, + "full_name": "Jang Chan-ho", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 62, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 60, - "mental_resilience": 63 + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Chan", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2003-12-19", + "stats": {}, + "profile_image_url": "/player-photos/d2615708d6f598ad.webp" }, { - "id": "player-f8a5c3f7", - "match_name": "CROmpir", - "full_name": "CROmpir", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "id": "player-4e77d11d", + "match_name": "Paresz", + "full_name": "Bálint Paksai", + "position": "Jungle", + "team_id": "team-1103bd5e", + "nationality": "", + "date_of_birth": "2000-09-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 61, - "mechanics": 56, - "discipline": 64, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 60 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/9a3f0939a5efc7a2.webp" + }, + { + "id": "player-59b340bf", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Igor Radusinović", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "Tasteless", + "position": "Support", + "team_id": "team-db2b783a", + "nationality": "RS", + "date_of_birth": "1997-11-02", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/bdddf4b215afa74b.webp" }, { - "id": "player-8e44aeb5", - "match_name": "FSZ", - "full_name": "FSZ", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-5bd073ec", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-500fa635", + "condition": 100, + "full_name": "Pivolj", "attributes": { + "mechanics": 64, "laning": 64, - "mechanics": 63, - "discipline": 62, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 61, - "mental_resilience": 62 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pivolj", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "RS", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/24e123446a95d7e8.webp" }, { - "id": "player-bff5d3d6", - "match_name": "Neczo", - "full_name": "Neczo", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-5fd405de", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-500fa635", + "condition": 100, + "full_name": "Baki", "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 64, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, + "mechanics": 64, + "laning": 64, "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, "champion_pool": 61, - "mental_resilience": 63 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Baki", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RS", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ca8c9d405b596d2d.webp" }, { - "id": "player-2c37e982", - "match_name": "Blankk", - "full_name": "Blankk", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-61b2b1ba", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-db2b783a", + "condition": 100, + "full_name": "Dušan Nedeljković", "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 59, - "macro_play": 56, - "consistency": 56, + "mechanics": 62, + "laning": 63, + "teamfighting": 63, + "macro_play": 61, + "consistency": 62, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 60, - "mental_resilience": 59 + "discipline": 58, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lotuss", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "RS", + "date_of_birth": "2001-12-23", + "stats": {}, + "profile_image_url": "/player-photos/8519f17d32d82acf.webp" }, { - "id": "player-bf910d1d", - "match_name": "Rayito", - "full_name": "Rayito", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-64abdffe", + "match_name": "Velchev", + "full_name": "Ivan Velchev", + "position": "ADC", + "team_id": "team-3359999b", + "nationality": "BG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 63, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/03b43fa14ba8fe9f.webp" + }, + { + "id": "player-68c63be5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-db2b783a", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-1103bd5e", + "condition": 100, + "full_name": "Bence Tóth-Szeles", + "attributes": { + "mechanics": 60, + "laning": 58, + "teamfighting": 61, + "macro_play": 58, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "Endless", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ca8926a71b770911.webp" }, { - "id": "player-95719ea9", - "match_name": "vladichich", - "full_name": "vladichich", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-6f5cd930", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-db2b783a", + "condition": 100, + "full_name": "Nikola Peshevski", "attributes": { + "mechanics": 60, "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 63 + "macro_play": 60, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd386f74", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pesho", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "MK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/4ed18976f94fede0.webp" }, { - "id": "player-97c9ae0a", - "match_name": "STANIK", - "full_name": "STANIK", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-71491fba", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b09886df", + "condition": 100, + "full_name": "Dušan Petković", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ryuzaki", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PR", + "date_of_birth": "1999-06-05", + "stats": {}, + "profile_image_url": "/player-photos/f60d05d2fee5de1d.webp" }, { - "id": "player-89d836d2", - "match_name": "Yuki", - "full_name": "Yuki", - "date_of_birth": null, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-763d6923", + "match_name": "Igloodan", + "full_name": "Lovre Bilić", + "position": "Support", + "team_id": "team-de9656fe", "nationality": "HR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 58, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 57, - "mental_resilience": 58 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/af71cbd059d0fad0.webp" + }, + { + "id": "player-793b651d", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-cd386f74", + "condition": 100, + "full_name": "Andrei Popa", + "attributes": { + "mechanics": 60, + "laning": 62, + "teamfighting": 58, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 62, + "mental_resilience": 60 + }, + "match_name": "Exile1", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "RO", + "date_of_birth": "2005-10-30", + "stats": {}, + "profile_image_url": "/player-photos/826d9282957e11ac.webp" }, { - "id": "player-184b4bb4", - "match_name": "Crem", - "full_name": "Crem", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-79eb4eac", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-db2b783a", + "condition": 100, + "full_name": "Aleksandar Stefanović", "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 63, + "mechanics": 58, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 62 + "discipline": 63, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-aa50d684", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "PatkicaA", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RS", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/4f08e1e569aa34de.webp" }, { - "id": "player-3839f9d0", - "match_name": "mirza", - "full_name": "mirza", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-7dbbe959", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8b9502f1", + "condition": 100, + "full_name": "Borjan Nikolovski", "attributes": { + "mechanics": 64, "laning": 64, - "mechanics": 63, - "discipline": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, - "shotcalling": 55, - "teamfighting": 62, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 64 + "discipline": 64, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Partyfosil", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "MK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/669fe8dd2bffa7d4.webp" }, { - "id": "player-5fd405de", - "match_name": "Baki", - "full_name": "Baki", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-7eb7b384", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dc2f50f2", + "condition": 100, + "full_name": "Hakan Mert Çakmak", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 62, "macro_play": 64, "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, + "shotcalling": 55, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-500fa635", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Ferret", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "TR", + "date_of_birth": "2001-11-24", + "stats": {}, + "profile_image_url": "/player-photos/3a633ee94828c5fc.webp" }, { "id": "player-80e82644", - "match_name": "Shy Carry", - "full_name": "Shy Carry", - "date_of_birth": null, - "nationality": "PR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dc2f50f2", + "condition": 100, + "full_name": "Đorđe Stišović", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 60, + "laning": 64, + "teamfighting": 63, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 60, + "discipline": 60, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dc2f50f2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Shy Carry", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PR", + "date_of_birth": "2004-04-21", + "stats": {}, + "profile_image_url": "/player-photos/c898a4bdef8180df.webp" }, { "id": "player-8508fc02", - "match_name": "Ludas Matyi", - "full_name": "Ludas Matyi", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8b9502f1", + "condition": 100, + "full_name": "Mário Molnár", "attributes": { - "laning": 63, "mechanics": 64, - "discipline": 64, + "laning": 63, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 60, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8b9502f1", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ludas Matyi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "SK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/b8f107e3bdeef087.webp" }, { - "id": "player-b1125bfa", - "match_name": "Mihai", - "full_name": "Mihai", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-89d836d2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-de9656fe", + "condition": 100, + "full_name": "Lovro Jukić", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, + "mechanics": 63, + "laning": 63, "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 58, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b09886df", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Yuki", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/7dfe367fe1665613.webp" }, { - "id": "player-59b340bf", - "match_name": "Tasteless", - "full_name": "Tasteless", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-8ba0cead", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-de9656fe", + "condition": 100, + "full_name": "Deni Prtenjača", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 60, + "laning": 62, + "teamfighting": 62, + "macro_play": 59, + "consistency": 62, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-db2b783a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Danilo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/0070f7a9bafefee3.webp" }, { - "id": "player-342042f9", - "match_name": "Yuki", - "full_name": "Yuki", - "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-8e44aeb5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-aa50d684", + "condition": 100, + "full_name": "Simar Nashidov", "attributes": { - "laning": 59, - "mechanics": 56, - "discipline": 64, - "macro_play": 60, - "consistency": 59, + "mechanics": 63, + "laning": 64, + "teamfighting": 61, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 60 + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-de9656fe", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "FSZ", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-29ad6a1d", - "match_name": "justcan", - "full_name": "justcan", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Mid", + "nationality": "BG", + "date_of_birth": "2003-10-29", + "stats": {}, + "profile_image_url": "/player-photos/306c0e95b4fd1386.webp" + }, + { + "id": "player-903ddddc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b09886df", + "condition": 100, + "full_name": "Karlo Kovačić", "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 61, - "macro_play": 63, - "consistency": 63, - "shotcalling": 55, - "teamfighting": 63, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, "champion_pool": 61, - "mental_resilience": 62 + "discipline": 64, + "mental_resilience": 64 }, + "match_name": "Falleo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "HR", + "date_of_birth": "1998-03-10", + "stats": {}, + "profile_image_url": "/player-photos/2dcd1047768c3a4a.webp" + }, + { + "id": "player-95719ea9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd386f74", "condition": 100, + "full_name": "Matej Vladić", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 62, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Vladichich", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HR", + "date_of_birth": "2006-06-16", + "stats": {}, + "profile_image_url": "/player-photos/022ab238fbe353df.webp" + }, + { + "id": "player-97c9ae0a", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-aa50d684", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "team_id": "team-b09886df", + "condition": 100, + "full_name": "Stanislav Hynk", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "STANIK", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CZ", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/aa49d64f6b80f7ba.webp" + }, + { "career": [], - "training_focus": null, + "loan_listed": false, "transfer_listed": false, + "id": "player-9ebaddac", + "match_name": "Draxo5", + "full_name": "Denis Borisov", + "position": "Top", + "team_id": "team-3359999b", + "nationality": "BG", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/21fffaee482f0a9a.webp" + }, + { + "id": "player-a7cb44fc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-de9656fe", + "condition": 100, + "full_name": "Roko Karamatić", + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 56, + "macro_play": 61, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 57 + }, + "match_name": "Sikterr", "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/5dec29574d3e3f47.webp" + }, + { + "id": "player-b1125bfa", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b09886df", + "condition": 100, + "full_name": "Alexandru Mihai Zamfirache", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Mihai", + "loan_listed": false, "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RO", + "date_of_birth": "2000-07-03", + "stats": {}, + "profile_image_url": "/player-photos/3cbab6c23edf6d29.webp" }, { - "id": "player-0da4dd16", - "match_name": "floreNNNz", - "full_name": "floreNNNz", + "id": "player-b18cd1f9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-500fa635", + "condition": 100, + "full_name": "KURBAX", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "KURBAX", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "RS", "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", + "stats": {}, + "profile_image_url": "/player-photos/ad152bff6b1c7ab3.webp" + }, + { + "id": "player-bf910d1d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-db2b783a", + "condition": 100, + "full_name": "Michael Curtet Jaimes", + "attributes": { + "mechanics": 58, + "laning": 60, + "teamfighting": 60, + "macro_play": 61, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Rayito", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/f776c7a91765db19.webp" + }, + { + "id": "player-bfbaf7d3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lukáš Soukup", "attributes": { + "mechanics": 64, "laning": 63, - "mechanics": 62, - "discipline": 63, + "teamfighting": 64, + "macro_play": 63, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Luknom", + "position": "Support", + "team_id": "team-8b9502f1", + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/5e4894cb3a031a47.webp" + }, + { + "id": "player-bff5d3d6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8b9502f1", + "condition": 100, + "full_name": "Anargyros Papaioannou", + "attributes": { + "mechanics": 63, + "laning": 63, + "teamfighting": 64, "macro_play": 63, "consistency": 63, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, + "champion_pool": 61, + "discipline": 64, "mental_resilience": 63 }, - "condition": 100, + "match_name": "Neczo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/189af624d688f5ff.webp" + }, + { + "id": "player-c66563ef", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-3359999b", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "team_id": "team-1103bd5e", + "condition": 100, + "full_name": "Tibor Jobban", + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Blueboar", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HU", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/0e9cb448cfb87843.webp" + }, + { + "id": "player-ca46bcf7", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1103bd5e", + "condition": 100, + "full_name": "Márton Petrucz", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 64, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "Lagolinas", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "HU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/f769256c7a734dc6.webp" }, { "id": "player-e0fdf973", - "match_name": "Undertaker", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Undertaker", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Undertaker", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-500fa635", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "RS", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/7caa8dc27622cf39.webp" + }, + { + "id": "player-e7622951", "career": [], - "training_focus": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Nenad Jovanovic", + "attributes": { + "mechanics": 62, + "laning": 63, + "teamfighting": 61, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Candy", + "loan_listed": false, "transfer_listed": false, + "position": "Support", + "team_id": "team-cd386f74", + "nationality": "RS", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/8d60d42c29f7de3c.webp" + }, + { + "id": "player-f3b7db20", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-aa50d684", + "condition": 100, + "full_name": "Anthony Petkov", + "attributes": { + "mechanics": 60, + "laning": 54, + "teamfighting": 60, + "macro_play": 61, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 58, + "discipline": 60, + "mental_resilience": 59 + }, + "match_name": "Archfiend", "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "BG", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/bb035f0a7363aa6f.webp" + }, + { + "id": "player-f8a5c3f7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-de9656fe", + "condition": 100, + "full_name": "Nikola Jagustin", + "attributes": { + "mechanics": 56, + "laning": 61, + "teamfighting": 58, + "macro_play": 62, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 64, + "mental_resilience": 60 + }, + "match_name": "CROmpir", + "loan_listed": false, "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/6567aee892b5d197.webp" } ] } \ No newline at end of file diff --git a/data/players/free_agents.json b/data/players/free_agents.json index b16a5686e..df057194d 100644 --- a/data/players/free_agents.json +++ b/data/players/free_agents.json @@ -1,313 +1,35 @@ { - "name": "Free Agents Players", - "description": "Free Agents - 2026 Season", + "name": "Free Agent Players", + "description": "Free Agent - 2026 Season", "players": [ { - "id": "player-70fdb65d", - "wage": 125000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "Jungle", - "condition": 100, - "full_name": "Aki ", - "attributes": { - "laning": 79, - "mechanics": 78, - "discipline": 83, - "macro_play": 76, - "consistency": 78, - "shotcalling": 76, - "teamfighting": 72, - "champion_pool": 82, - "mental_resilience": 75 - }, - "match_name": "Mao An", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1875000, - "birth_country": null, - "date_of_birth": "2000-04-09", - "potential_base": 82, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-038a68be", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "e-Champ Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RAMPAGE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Reload Ragnarok", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Peco", - "attributes": { - "laning": 56, - "mechanics": 54, - "discipline": 54, - "macro_play": 54, - "consistency": 56, - "shotcalling": 50, - "teamfighting": 56, - "champion_pool": 52, - "mental_resilience": 54 - }, - "match_name": "Bernardo Reis", - "loan_listed": false, - "morale_core": {}, - "contract_end": "2026-11-16", - "market_value": 0, - "potential_base": 57, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-02-24", - "nationality": "BR", - "profile_image_url": "/player-photos/1779873535541_Peco__Bernardo_Reis_.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Pegasus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Stade Tunisien", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Belfast Storm", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Black Lion", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-0652df30", - "match_name": "Haroun Ben Hadj Lakhal", - "full_name": "Sundax", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, + "match_name": "Sundax", + "full_name": "Haroun Ben Hadj Lakhal", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-06a2fd60", @@ -317,43 +39,27 @@ "condition": 100, "full_name": "chico", "attributes": { - "laning": 71, "mechanics": 70, - "discipline": 73, + "laning": 71, + "teamfighting": 71, "macro_play": 71, "consistency": 71, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 70, + "discipline": 73, "mental_resilience": 72 }, "match_name": "chico", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "JP", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/b548400af31ccee8.webp" }, { "loan_listed": false, @@ -361,45 +67,28 @@ "id": "fa-0332500c", "match_name": "Bengi", "full_name": "Bengi", - "date_of_birth": "1993-06-21", - "nationality": "South Korea", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "South Korea", + "date_of_birth": "1993-06-21", "wage": 51000, "market_value": 765000, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b408f005841cc8fd.png" }, { "id": "player-0b79ef81", @@ -409,306 +98,61 @@ "condition": 100, "full_name": "Grèédy", "attributes": { - "laning": 65, "mechanics": 58, - "discipline": 62, + "laning": 65, + "teamfighting": 61, "macro_play": 59, "consistency": 59, "shotcalling": 60, - "teamfighting": 61, "champion_pool": 61, + "discipline": 62, "mental_resilience": 61 }, "match_name": "Grèédy", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "AE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-0bcc6889", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Frost Aura", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Kings of Uganda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Mirage Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Aqualix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Issue is Critical", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Noble Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "XTGN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Dignitas Mirage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Mirage Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Team Ambition", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Immortals AOE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "100 Thieves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CLG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Disguised", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NRG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Team Fish Taco", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "100 Thieves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NTMR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NTMR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Nine Lives", - "appearances": 0 - } - ], + "career": [], "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Meech", + "full_name": "Brandon Choi", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 74, + "laning": 70, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, + "discipline": 74, "mental_resilience": 72 }, - "match_name": "Brandon Choi", + "match_name": "Meech", "loan_listed": false, "transfer_listed": false, - "date_of_birth": "2001-09-19", - "nationality": "CA", - "profile_image_url": "/player-photos/1779778010920_73elf4z81td.webp", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": "2001-09-19", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/35fc72bd4169ac58.webp" }, { "id": "player-b928fdbc", @@ -716,63 +160,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "BNK FEARX Youth", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "ADC", "condition": 100, - "full_name": "Envyy", + "full_name": "Lee Myeong-joon", "attributes": { - "laning": 80, "mechanics": 77, - "discipline": 79, + "laning": 80, + "teamfighting": 71, "macro_play": 78, "consistency": 80, "shotcalling": 73, - "teamfighting": 71, "champion_pool": 75, + "discipline": 79, "mental_resilience": 75 }, - "match_name": "Lee Myeong-joon", + "match_name": "Envyy", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -785,16 +192,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/6a27dcc06effeeb1.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-0c53c37a", @@ -803,224 +208,65 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "barça esports", "condition": 100, - "full_name": "Sergio Vicente Gisbert", + "full_name": "Legolas", "attributes": { - "laning": 74, "mechanics": 73, - "discipline": 66, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 66, "mental_resilience": 68 }, - "match_name": "Legolas", + "match_name": "Sergio Vicente Gisbert", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 73, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-12-20", - "nationality": "ES", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "ES", + "date_of_birth": "2000-12-20", + "stats": {}, + "profile_image_url": null }, { - "id": "player-a670eb4c", - "wage": 107000, - "stats": { - "appearances": 0 - }, - "injury": null, + "id": "player-12a97609", + "career": [], "morale": 100, "fitness": 100, - "team_id": null, - "position": "ADC", "condition": 100, - "full_name": "Trigger ", + "full_name": "Retrozing", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 74, - "macro_play": 75, - "consistency": 62, - "shotcalling": 72, - "teamfighting": 74, - "champion_pool": 76, - "mental_resilience": 66 - }, - "match_name": "Kim Eui-joo", - "loan_listed": false, - "morale_core": {}, - "nationality": "South Korea", - "contract_end": "2026-12-20", - "market_value": 1605000, - "birth_country": null, - "date_of_birth": "2000-10-10", - "potential_base": 71, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": "/player-photos/1778592289987_m44791rv6y.png", - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "career": [], - "can_be_transferred_until": null - }, - { - "id": "player-10d041d2", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Vasco E-Sports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Warsor", - "attributes": { - "laning": 65, "mechanics": 65, - "discipline": 64, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 64 - }, - "match_name": "Milton Mendoza", - "loan_listed": false, - "morale_core": {}, - "contract_end": null, - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-05-04", - "nationality": "AR", - "profile_image_url": "/player-photos/1779873358190_Warsor.webp", - "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-12a97609", - "career": [], - "morale": 100, - "fitness": 100, - "condition": 100, - "full_name": "Retrozing", - "attributes": { "laning": 68, - "mechanics": 65, - "discipline": 64, + "teamfighting": 67, "macro_play": 64, "consistency": 65, "shotcalling": 71, - "teamfighting": 67, "champion_pool": 69, + "discipline": 64, "mental_resilience": 64 }, "match_name": "Retrozing", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-1315d803", @@ -1030,89 +276,56 @@ "condition": 100, "full_name": "Spica", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 65, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, "match_name": "Spica", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 74, "mechanics": 66, - "discipline": 65, + "laning": 74, + "teamfighting": 68, "macro_play": 73, "consistency": 73, "shotcalling": 68, - "teamfighting": 68, "champion_pool": 73, + "discipline": 65, "mental_resilience": 68 }, "id": "player-1514a755", "match_name": "looki", "full_name": "looki", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "DE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-a4e6ac37", @@ -1120,90 +333,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-623eeecd", "position": "Support", "condition": 100, - "full_name": "Ppgod", + "full_name": "Guo Peng", "attributes": { - "laning": 66, "mechanics": 68, - "discipline": 76, + "laning": 66, + "teamfighting": 82, "macro_play": 79, "consistency": 81, "shotcalling": 70, - "teamfighting": 82, "champion_pool": 69, + "discipline": 76, "mental_resilience": 80 }, - "match_name": "Guo Peng", + "match_name": "Ppgod", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -1217,15 +366,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/e77090550e883fd9.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-ab399967", @@ -1233,63 +380,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Top", "condition": 100, - "full_name": "shanji", + "full_name": "Deng Zi-Jian", "attributes": { - "laning": 62, "mechanics": 63, - "discipline": 71, + "laning": 62, + "teamfighting": 62, "macro_play": 66, "consistency": 67, "shotcalling": 68, - "teamfighting": 62, "champion_pool": 62, + "discipline": 71, "mental_resilience": 72 }, - "match_name": "Deng Zi-Jian", + "match_name": "shanji", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -1303,309 +413,96 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/61b5d828873be4d1.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c2cb48f", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Movistar Optix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Eclipse Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Evermeet", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Meta Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "DCT eSports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Naitz", - "attributes": { - "laning": 65, - "mechanics": 63, - "discipline": 64, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 62, - "mental_resilience": 63 - }, - "match_name": "Claudio Ignacio Fuentealba Oliva", - "loan_listed": false, - "morale_core": {}, - "contract_end": null, - "market_value": 0, - "potential_base": 67, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2004-01-23", - "nationality": "CL", - "profile_image_url": "/player-photos/1779873702582_Naitz.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 76, "mechanics": 72, - "discipline": 76, + "laning": 76, + "teamfighting": 75, "macro_play": 73, "consistency": 74, "shotcalling": 68, - "teamfighting": 75, "champion_pool": 71, + "discipline": 76, "mental_resilience": 74 }, "id": "player-1d5a506c", "match_name": "Frost", "full_name": "Frost", - "date_of_birth": null, - "nationality": "HU", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "HU", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 74, "mechanics": 73, - "discipline": 72, + "laning": 74, + "teamfighting": 66, "macro_play": 75, "consistency": 74, "shotcalling": 68, - "teamfighting": 66, "champion_pool": 73, + "discipline": 72, "mental_resilience": 71 }, "id": "player-41c05b1e", "match_name": "NattyNatt", "full_name": "NattyNatt", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": "/player-photos/1778856696653_2arw92ke2ck.webp", "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "SE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/61d96bacd1a5d1bc.webp" }, { "loan_listed": false, "transfer_listed": false, "id": "fa-c45e5ff7", - "match_name": "Elm Cherto Gallostra", - "full_name": "Elmillor", - "date_of_birth": "1997-09-30", - "nationality": "Spain", - "profile_image_url": null, + "match_name": "Elmillor", + "full_name": "Elm Cherto Gallostra", "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "Spain", + "date_of_birth": "1997-09-30", "wage": 38000, "market_value": 570000, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/133a800918e9caf9.png" }, { "id": "player-c4e99ed6", @@ -1613,99 +510,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-6481a859", - "team_name": "JD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-3bd486ec", - "team_name": "Anyone's Legend", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-a028a9d5", "position": "Top", "condition": 100, - "full_name": "Ale", + "full_name": "Hu Jia-Le", "attributes": { - "laning": 69, "mechanics": 77, - "discipline": 74, + "laning": 69, + "teamfighting": 77, "macro_play": 75, "consistency": 72, "shotcalling": 76, - "teamfighting": 77, "champion_pool": 76, + "discipline": 74, "mental_resilience": 83 }, - "match_name": "Hu Jia-Le", + "match_name": "Ale", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -1719,61 +543,40 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/48980594.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 73, + "laning": 70, + "teamfighting": 75, "macro_play": 71, "consistency": 70, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 69, + "discipline": 73, "mental_resilience": 73 }, "id": "player-24c61a67", "match_name": "Kallesyn", "full_name": "Kallesyn", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "FR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-c4470cc8", @@ -1781,108 +584,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Qiao Gu Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Qiao Gu Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "team-6481a859", - "team_name": "JD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Mid", "condition": 100, - "full_name": "Doinb", + "full_name": "Kim Tae-sang", "attributes": { - "laning": 97, "mechanics": 99, - "discipline": 99, + "laning": 97, + "teamfighting": 95, "macro_play": 99, "consistency": 99, "shotcalling": 88, - "teamfighting": 95, "champion_pool": 90, + "discipline": 99, "mental_resilience": 88 }, - "match_name": "Kim Tae-sang", + "match_name": "Doinb", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1896,225 +617,69 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/645f4211.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 73, + "laning": 70, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 68, - "teamfighting": 71, "champion_pool": 70, + "discipline": 73, "mental_resilience": 70 }, "id": "player-29727685", "match_name": "Avarice", "full_name": "Avarice", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "BG", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Team Hex", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Osh-Tekk Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Divine Vendetta", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "RA'AD", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Geekay Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Team Falcons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Victorious Demons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Victorious Demons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], + "stats": {}, + "profile_image_url": null + }, + { + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-2ae06219", - "match_name": "Rami Al-Kasbi", - "full_name": "Her0", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779867458693_Fr0m_0_2_Her0.webp", + "match_name": "Her0", + "full_name": "Rami Al-Kasbi", "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/87076fcd24fa5af1.webp" }, { "id": "player-39577f83", @@ -2122,81 +687,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-dig2025", - "team_name": "Dignitas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-3a61434a", "position": "Mid", "condition": 100, - "full_name": "Dove", + "full_name": "Kim Jae-yeon", "attributes": { - "laning": 80, "mechanics": 81, - "discipline": 78, + "laning": 80, + "teamfighting": 75, "macro_play": 80, "consistency": 78, "shotcalling": 77, - "teamfighting": 75, "champion_pool": 75, + "discipline": 78, "mental_resilience": 79 }, - "match_name": "Kim Jae-yeon", + "match_name": "Dove", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -2210,15 +720,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/7d29adbe.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-2f6c69cc", @@ -2226,91 +734,56 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Feather", + "full_name": "Wang Tian-ci-fu", "attributes": { - "laning": 83, "mechanics": 87, - "discipline": 81, + "laning": 83, + "teamfighting": 88, "macro_play": 82, "consistency": 88, "shotcalling": 86, - "teamfighting": 88, "champion_pool": 81, + "discipline": 81, "mental_resilience": 83 }, - "match_name": "Wang Tian-ci-fu", + "match_name": "Feather", "potential_base": 86, - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/b4312f2cc69ebcee.webp" }, { "attributes": { - "laning": 71, "mechanics": 76, - "discipline": 70, + "laning": 71, + "teamfighting": 73, "macro_play": 70, "consistency": 70, "shotcalling": 72, - "teamfighting": 73, "champion_pool": 68, + "discipline": 70, "mental_resilience": 72 }, "id": "player-2f6e4806", "match_name": "Yen", "full_name": "Yen", - "date_of_birth": null, - "nationality": "CH", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CH", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "loan_listed": false, @@ -2318,45 +791,28 @@ "id": "fa-8ff005a4", "match_name": "Werlyb", "full_name": "Werlyb", - "date_of_birth": "1997-12-19", - "nationality": "Spain", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "Spain", + "date_of_birth": "1997-12-19", "wage": 42000, "market_value": 630000, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/8d7cbab59722751d.png" }, { "id": "player-34cec2b3", @@ -2366,332 +822,81 @@ "condition": 100, "full_name": "Don Ponk", "attributes": { - "laning": 61, "mechanics": 62, - "discipline": 64, + "laning": 61, + "teamfighting": 62, "macro_play": 62, "consistency": 61, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 59, + "discipline": 64, "mental_resilience": 63 }, "match_name": "Don Ponk", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "SE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { - "id": "player-ddb2ac55", - "wage": 128000, + "match_name": "sorrow", + "id": "player-38a4e6a6", + "full_name": "Li De-Ming", + "position": "Jungle", + "team_id": null, + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-9214f267", + "wage": 86000, "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, - "position": "Support", + "team_id": "team-1441fb99", + "position": "ADC", "condition": 100, - "full_name": "Niket", + "full_name": "Wang Guang-Yu", "attributes": { - "laning": 70, - "mechanics": 77, - "discipline": 83, - "macro_play": 76, - "consistency": 81, - "shotcalling": 76, - "teamfighting": 83, - "champion_pool": 73, - "mental_resilience": 82 - }, - "match_name": "Ying Xin-Yuan", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1920000, - "birth_country": null, - "date_of_birth": "2003-11-26", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "match_name": "Li De-Ming", - "id": "player-38a4e6a6", - "full_name": "sorrow", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": null, - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3b989f7a", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Hnb", - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 63, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Kevin Andrés Santana Caballero", - "loan_listed": false, - "morale_core": {}, - "contract_end": null, - "market_value": 0, - "potential_base": 66, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2006-07-10", - "nationality": "UY", - "profile_image_url": "/player-photos/1779833210424_Hnb.webp", - "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9214f267", - "wage": 86000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "ADC", - "condition": 100, - "full_name": "Light ", - "attributes": { - "laning": 78, - "mechanics": 82, - "discipline": 76, + "mechanics": 82, + "laning": 78, + "teamfighting": 74, "macro_play": 76, "consistency": 78, "shotcalling": 77, - "teamfighting": 74, "champion_pool": 84, + "discipline": 76, "mental_resilience": 77 }, - "match_name": "Wang Guang-Yu", + "match_name": "Light ", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -2704,16 +909,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/0f7ba41ab3519e11.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-cd3c47f0", @@ -2721,99 +924,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-6481a859", - "team_name": "JD Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-6b8be626", "position": "Support", "condition": 100, - "full_name": "Wink", + "full_name": "Zhang Rui", "attributes": { - "laning": 71, "mechanics": 67, - "discipline": 77, + "laning": 71, + "teamfighting": 81, "macro_play": 74, "consistency": 77, "shotcalling": 72, - "teamfighting": 81, "champion_pool": 71, + "discipline": 77, "mental_resilience": 77 }, - "match_name": "Zhang Rui", + "match_name": "Wink", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -2827,15 +957,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/5d3f7df0.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-7a01e751", @@ -2843,99 +971,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-e449c211", "position": "Support", "condition": 100, - "full_name": "BeryL", + "full_name": "Cho Geon-hee", "attributes": { - "laning": 82, "mechanics": 88, - "discipline": 92, + "laning": 82, + "teamfighting": 95, "macro_play": 99, "consistency": 94, "shotcalling": 92, - "teamfighting": 95, "champion_pool": 85, + "discipline": 92, "mental_resilience": 98 }, - "match_name": "Cho Geon-hee", + "match_name": "BeryL", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -2949,134 +1004,42 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/1710b766.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Crvena zvezda", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ankora Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Partizan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Footprint Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SNOOZE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "SPIKE Syndicate", - "appearances": 0 - } - ], + "potential_research_started_on": null + }, + { + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-48923d32", - "match_name": "Luka Janković", - "full_name": "MegaJ", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/1779867450778_MegaJ.webp", + "match_name": "MegaJ", + "full_name": "Luka Janković", "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/412b4079142bedf8.webp" }, { "id": "player-48bdc600", @@ -3086,89 +1049,56 @@ "condition": 100, "full_name": "DANKI", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, "match_name": "DANKI", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "EG", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "EG", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { - "match_name": "Li Yang", + "match_name": "Mio7", "id": "player-49ce0250", - "full_name": "Mio7", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-mio7.png", + "full_name": "Li Yang", "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/169f6604f1288f5c.png" }, { "id": "player-4a5529d3", @@ -3178,43 +1108,29 @@ "condition": 100, "full_name": "Leo s Man", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 62, + "laning": 62, + "teamfighting": 62, "macro_play": 62, "consistency": 62, "shotcalling": 60, - "teamfighting": 62, "champion_pool": 62, + "discipline": 62, "mental_resilience": 62 }, "match_name": "Leo s Man", "loan_listed": false, "potential_base": 70, "transfer_listed": false, - "date_of_birth": null, - "nationality": "DZ", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "DZ", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": null }, { "id": "player-4c358336", @@ -3223,45 +1139,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "arneb", "condition": 100, "full_name": "Daemi", "attributes": { - "laning": 73, "mechanics": 72, - "discipline": 68, + "laning": 73, + "teamfighting": 73, "macro_play": 67, "consistency": 73, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 69, + "discipline": 68, "mental_resilience": 66 }, "match_name": "Daemi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 77, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779564228190_2yva3q92mgt.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/dbbe8283c87baa8f.webp" }, { "id": "player-4fd0c8ec", @@ -3271,111 +1177,29 @@ "condition": 100, "full_name": "Kuroko", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, "match_name": "Kuroko", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "PL", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-517bd222", - "wage": 110000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "Mid", - "condition": 100, - "full_name": "Xiaofang", - "attributes": { - "laning": 81, - "mechanics": 86, - "discipline": 83, - "macro_play": 82, - "consistency": 84, - "shotcalling": 75, - "teamfighting": 80, - "champion_pool": 78, - "mental_resilience": 83 - }, - "match_name": "Fang Zhe-Yu", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1650000, - "birth_country": null, - "date_of_birth": "2004-07-06", - "potential_base": 90, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-4ff57da1", @@ -3385,43 +1209,27 @@ "condition": 100, "full_name": "Pleata", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 86, + "laning": 86, + "teamfighting": 86, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 83, + "discipline": 86, "mental_resilience": 86 }, "match_name": "Pleata", "potential_base": 87, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/97a133ddc746bd4d.png" }, { "id": "player-511cc3a8", @@ -3430,91 +1238,62 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "nongshim esports academy", "condition": 100, "full_name": "SeTab", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 76, "mental_resilience": 75 }, "match_name": "SeTab", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/035c5fe5.webp" }, { - "match_name": "Gong Jia-Hao", + "match_name": "Chips", "id": "player-52b45ae7", - "full_name": "Chips", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-chips.png", + "full_name": "Gong Jia-Hao", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/4404f28785f3abf7.png" }, { "id": "player-53d6bc32", @@ -3524,43 +1303,27 @@ "condition": 100, "full_name": "Bluffing", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 73, + "laning": 74, + "teamfighting": 75, "macro_play": 73, "consistency": 72, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 72, + "discipline": 73, "mental_resilience": 73 }, "match_name": "Bluffing", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/09ed512e.webp" }, { "id": "player-54033ec2", @@ -3570,239 +1333,58 @@ "condition": 100, "full_name": "Sushee", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, "match_name": "Sushee", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-111b72d7", - "wage": 122000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "Support", - "condition": 100, - "full_name": "Iwandy", - "attributes": { - "laning": 72, - "mechanics": 77, - "discipline": 80, - "macro_play": 82, - "consistency": 80, - "shotcalling": 77, - "teamfighting": 77, - "champion_pool": 68, - "mental_resilience": 83 - }, - "match_name": "Liao Ding-Yang", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1830000, - "birth_country": null, - "date_of_birth": "2000-08-27", - "potential_base": 82, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Support", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Slash Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "RevenGa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Victorious Demons", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "JSK Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], - "loan_listed": false, - "transfer_listed": false, - "id": "player-57a5114e", - "match_name": "Firas Mahdhi", - "full_name": "BipolarXD", - "date_of_birth": "2003-08-05", - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-57a5114e", + "match_name": "BipolarXD", + "full_name": "Firas Mahdhi", + "position": "ADC", "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2003-08-05", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "loan_listed": false, @@ -3810,91 +1392,55 @@ "id": "fa-58ec1270", "match_name": "Odoamne", "full_name": "Odoamne", - "date_of_birth": "1995-02-15", - "nationality": "Romania", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "Romania", + "date_of_birth": "1995-02-15", "wage": 48000, "market_value": 720000, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/355df93f0b5e2097.png" }, { "attributes": { - "laning": 69, "mechanics": 71, - "discipline": 68, + "laning": 69, + "teamfighting": 68, "macro_play": 74, "consistency": 70, "shotcalling": 67, - "teamfighting": 68, "champion_pool": 68, + "discipline": 68, "mental_resilience": 71 }, "id": "player-63b929c9", "match_name": "Jeykup", "full_name": "Jeykup", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "TR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-663c95d8", @@ -3904,43 +1450,27 @@ "condition": 100, "full_name": "Minous", "attributes": { - "laning": 75, "mechanics": 74, - "discipline": 75, + "laning": 75, + "teamfighting": 75, "macro_play": 74, "consistency": 75, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, + "discipline": 75, "mental_resilience": 74 }, "match_name": "Minous", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/01bf1a1e.webp" }, { "id": "player-66e64bda", @@ -3950,43 +1480,29 @@ "condition": 100, "full_name": "Rust", "attributes": { - "laning": 66, "mechanics": 67, - "discipline": 67, + "laning": 66, + "teamfighting": 67, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 64, + "discipline": 67, "mental_resilience": 67 }, "match_name": "Rust", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "AE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-68113276", @@ -3994,45 +1510,29 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Oscure", + "full_name": "Víctor Guzmán Fernández", "attributes": { - "laning": 72, "mechanics": 73, - "discipline": 71, + "laning": 72, + "teamfighting": 72, "macro_play": 70, "consistency": 71, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 70, + "discipline": 71, "mental_resilience": 70 }, - "match_name": "Víctor Guzmán Fernández", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, + "match_name": "Oscure", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "ES", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/414bda37d5ab3c5c.webp" }, { "id": "player-0934f636", @@ -4040,63 +1540,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Support", "condition": 100, - "full_name": "yaoyao", + "full_name": "Bi Hao-tian", "attributes": { - "laning": 61, "mechanics": 63, - "discipline": 66, + "laning": 61, + "teamfighting": 75, "macro_play": 74, "consistency": 69, "shotcalling": 68, - "teamfighting": 75, "champion_pool": 66, + "discipline": 66, "mental_resilience": 71 }, - "match_name": "Bi Hao-tian", + "match_name": "yaoyao", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -4110,107 +1573,67 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/c2222fbc5caad9e1.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 78, "mechanics": 76, - "discipline": 76, + "laning": 78, + "teamfighting": 76, "macro_play": 74, "consistency": 71, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 77, + "discipline": 76, "mental_resilience": 74 }, "id": "player-6a16629c", "match_name": "Sunfry", "full_name": "Sunfry", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "FR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 68, + "laning": 76, + "teamfighting": 73, "macro_play": 75, "consistency": 75, "shotcalling": 68, - "teamfighting": 73, "champion_pool": 69, + "discipline": 68, "mental_resilience": 70 }, "id": "player-6aba5c37", "match_name": "Panda2", "full_name": "Panda2", - "date_of_birth": null, - "nationality": "LB", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "LB", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-6db70add", @@ -4220,43 +1643,29 @@ "condition": 100, "full_name": "Kisno", "attributes": { - "laning": 74, "mechanics": 73, - "discipline": 74, + "laning": 74, + "teamfighting": 73, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 73, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, "match_name": "Kisno", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-70bcc2ae", @@ -4266,272 +1675,113 @@ "condition": 100, "full_name": "YSDS", "attributes": { - "laning": 70, "mechanics": 71, - "discipline": 73, + "laning": 70, + "teamfighting": 72, "macro_play": 71, "consistency": 73, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 69, + "discipline": 73, "mental_resilience": 71 }, "match_name": "YSDS", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "JP", + "date_of_birth": null, "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "market_value": 0, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { - "match_name": "Liu Yu-Xuan", + "match_name": "Yxl", "id": "player-72c8f566", - "full_name": "Yxl", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-yxl.png", + "full_name": "Liu Yu-Xuan", "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/1042294051c3577c.png" }, { "id": "player-7409e684", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "RED Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "KaBuM! Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "LØS Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "RAMPAGE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Seven Dark", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Tu Papá Esports", - "appearances": 0 - } - ], + "career": [], "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Stoneses", + "full_name": "Rafael Rocha Pinto", "attributes": { - "laning": 63, "mechanics": 64, - "discipline": 62, + "laning": 63, + "teamfighting": 62, "macro_play": 63, "consistency": 63, "shotcalling": 59, - "teamfighting": 62, "champion_pool": 60, + "discipline": 62, "mental_resilience": 63 }, - "match_name": "Rafael Rocha Pinto", + "match_name": "Stoneses", "loan_listed": false, "potential_base": 68, "transfer_listed": false, - "date_of_birth": "2006-05-30", - "nationality": "BR", - "profile_image_url": "/player-photos/1779873910571_Stoneses.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "BR", + "date_of_birth": "2006-05-30", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/54bdf88012b4f340.webp" }, { - "match_name": "Zhang Yu-Fan", + "match_name": "Today", "id": "player-7422547b", - "full_name": "Today", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-today.png", + "full_name": "Zhang Yu-Fan", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/5be759ed80d4a32e.png" }, { "id": "player-75a90c7a", @@ -4539,54 +1789,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "J Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PSG Talon", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-a38b3abe", "position": "Mid", "condition": 100, - "full_name": "Uniboy", + "full_name": "Chen Chang-Chu", "attributes": { - "laning": 80, "mechanics": 77, - "discipline": 83, + "laning": 80, + "teamfighting": 76, "macro_play": 81, "consistency": 81, "shotcalling": 72, - "teamfighting": 76, "champion_pool": 75, + "discipline": 83, "mental_resilience": 78 }, - "match_name": "Chen Chang-Chu", + "match_name": "Uniboy", "loan_listed": false, "morale_core": {}, "nationality": "Taiwan", @@ -4600,15 +1822,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/24c5ad80.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-75cfe595", @@ -4618,207 +1838,58 @@ "condition": 100, "full_name": "Shinluv", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 68, + "laning": 66, + "teamfighting": 66, "macro_play": 67, "consistency": 66, "shotcalling": 60, - "teamfighting": 66, "champion_pool": 64, + "discipline": 68, "mental_resilience": 67 }, "match_name": "Shinluv", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "IR", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "IR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Warthox", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ahg Gentlemen's Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "LDLC OL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Lunary", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Omerix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "LDLC OL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LDLC OL", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "French Flair", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Karmine Corp Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "French Flair", - "appearances": 0 - } - ], + "stats": {}, + "profile_image_url": null + }, + { + "career": [], "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 66, + "laning": 74, + "teamfighting": 68, "macro_play": 71, "consistency": 71, "shotcalling": 73, - "teamfighting": 68, "champion_pool": 71, + "discipline": 66, "mental_resilience": 69 }, "loan_listed": false, "transfer_listed": false, "id": "player-0fd06788", - "match_name": "Thomas Foucou", - "full_name": "3XA", - "date_of_birth": "2003-09-28", - "nationality": "FR", - "profile_image_url": "/player-photos/1779885992445_3XA.webp", + "match_name": "3XA", + "full_name": "Thomas Foucou", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "FR", + "date_of_birth": "2003-09-28", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/13f43cc34f284253.webp" }, { "id": "player-e30bad71", @@ -4826,166 +1897,30 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Tu Papá Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Neon Vibes", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ARAWAK ESPORTS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "ODD Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DSC3V", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Peace Angels", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ramo Awake Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Vandals Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mad Kings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-5ea4aa54", "position": "Jungle", "condition": 100, - "full_name": "Mitir", + "full_name": "Juan Diego Orozco Orozco", "attributes": { - "laning": 65, "mechanics": 65, - "discipline": 65, + "laning": 65, + "teamfighting": 66, "macro_play": 66, "consistency": 63, "shotcalling": 68, - "teamfighting": 66, "champion_pool": 63, + "discipline": 65, "mental_resilience": 65 }, - "match_name": "Juan Diego Orozco Orozco", + "match_name": "Mitir", "loan_listed": false, "morale_core": {}, "nationality": "Colombia", - "contract_end": null, + "contract_end": "", "market_value": 1380000, "birth_country": null, "date_of_birth": "2000-01-01", @@ -4994,401 +1929,97 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", + "natural_position": "Mid", "profile_image_url": "/player-photos/41686f45.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 74, "mechanics": 72, - "discipline": 76, + "laning": 74, + "teamfighting": 74, "macro_play": 72, "consistency": 73, "shotcalling": 68, - "teamfighting": 74, "champion_pool": 71, + "discipline": 76, "mental_resilience": 74 }, "id": "player-77f60781", "match_name": "UniqueCORN", "full_name": "UniqueCORN", - "date_of_birth": null, - "nationality": "AT", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "AT", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-780c1a54", - "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Bring It On", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Furious Gaming Red", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "UC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "UC Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Rebirth eSports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "All Knights", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "KRÜ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Leviatan", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Pampas", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "INFINITY", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Sicar Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Undead Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "The New Kings", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Kiefer", - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 61, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "match_name": "Nicolás Gerardo Rivero Kiefer", - "loan_listed": false, - "morale_core": {}, - "contract_end": null, - "market_value": 0, - "potential_base": 69, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2001-02-27", - "nationality": "CL", - "profile_image_url": "/player-photos/1779884016972_Kiefer.webp", - "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 75, "mechanics": 76, - "discipline": 68, + "laning": 75, + "teamfighting": 76, "macro_play": 72, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 72, + "discipline": 68, "mental_resilience": 69 }, "id": "player-84d390b0", "match_name": "Adam", "full_name": "Adam", - "date_of_birth": "December 30, 2001", - "nationality": "FR", - "profile_image_url": "/player-photos/1778856676275_8jn3an6d4z.webp", "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "FR", + "date_of_birth": "December 30, 2001", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "QLASH Egypt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "QLASH Egypt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "QLASH Egypt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "3BL Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], + "stats": {}, + "profile_image_url": "/player-photos/8789006884a7321b.webp" + }, + { + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-792f026c", - "match_name": "Omar Essam", - "full_name": "Poro", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, + "match_name": "Poro", + "full_name": "Omar Essam", "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-3fa3fbbc", @@ -5396,36 +2027,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Mid", "condition": 100, - "full_name": "Xiaocaobao", + "full_name": "Liang Jian", "attributes": { - "laning": 55, "mechanics": 53, - "discipline": 57, + "laning": 55, + "teamfighting": 47, "macro_play": 50, "consistency": 52, "shotcalling": 46, - "teamfighting": 47, "champion_pool": 49, + "discipline": 57, "mental_resilience": 48 }, - "match_name": "Liang Jian", + "match_name": "Xiaocaobao", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -5439,26 +2060,24 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/d105a68a7859a6eb.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 72, "mechanics": 70, - "discipline": 75, + "laning": 72, + "teamfighting": 69, "macro_play": 67, "consistency": 67, "shotcalling": 68, - "teamfighting": 69, "champion_pool": 70, + "discipline": 75, "mental_resilience": 71 }, "loan_listed": false, @@ -5467,33 +2086,16 @@ "id": "player-7b65db57", "match_name": "Alaric", "full_name": "Alaric", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "SE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": null }, { "id": "player-7bf319e9", @@ -5503,159 +2105,62 @@ "condition": 100, "full_name": "Fallen", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 60, - "teamfighting": 68, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, "match_name": "Fallen", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "MK", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "MK", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Malvinas Gaming", - "appearances": 0 - } - ], + "stats": {}, + "profile_image_url": null + }, + { + "career": [], "injury": null, "morale": 100, "fitness": 100, "condition": 100, "attributes": { - "laning": 57, "mechanics": 62, - "discipline": 54, + "laning": 57, + "teamfighting": 56, "macro_play": 55, "consistency": 56, "shotcalling": 55, - "teamfighting": 56, "champion_pool": 55, + "discipline": 54, "mental_resilience": 53 }, "loan_listed": false, "potential_base": 68, "transfer_listed": false, "id": "player-7cd412e1", - "match_name": "Joel Romero", - "full_name": "Joff", - "date_of_birth": "2007-02-11", - "nationality": "PE", - "profile_image_url": "/player-photos/1779823293617_Joff.webp", + "match_name": "Joff", + "full_name": "Joel Romero", "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "PE", + "date_of_birth": "2007-02-11", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-03f44849", - "wage": 101000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "Mid", - "condition": 100, - "full_name": "Xqw", - "attributes": { - "laning": 80, - "mechanics": 84, - "discipline": 81, - "macro_play": 81, - "consistency": 84, - "shotcalling": 77, - "teamfighting": 81, - "champion_pool": 79, - "mental_resilience": 77 - }, - "match_name": "Zheng Xia-Jian", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1515000, - "birth_country": null, - "date_of_birth": "2003-04-02", - "potential_base": 90, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Mid", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/ff2eefa1962f8c81.webp" }, { "id": "player-7f224978", @@ -5663,72 +2168,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Suning", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Suning", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "ADC", "condition": 100, - "full_name": "huanfeng", + "full_name": "Tang Huan-Feng", "attributes": { - "laning": 55, "mechanics": 54, - "discipline": 57, + "laning": 55, + "teamfighting": 47, "macro_play": 54, "consistency": 51, "shotcalling": 48, - "teamfighting": 47, "champion_pool": 53, + "discipline": 57, "mental_resilience": 53 }, - "match_name": "Tang Huan-Feng", + "match_name": "huanfeng", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -5741,126 +2200,46 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/4b61c964641877c6.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-80ab7e4f", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Bencheados", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Santiago Wanderers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Supay Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Los Mapaches", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Wild Esports", - "appearances": 0 - } - ], + "career": [], "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Makishy", + "full_name": "Maximiliano David Sánchez Paredes", "attributes": { - "laning": 63, "mechanics": 63, - "discipline": 64, + "laning": 63, + "teamfighting": 64, "macro_play": 64, "consistency": 63, "shotcalling": 60, - "teamfighting": 64, "champion_pool": 60, + "discipline": 64, "mental_resilience": 63 }, - "match_name": "Maximiliano David Sánchez Paredes", + "match_name": "Makishy", "loan_listed": false, "potential_base": 68, "transfer_listed": false, - "date_of_birth": "2002-10-11", - "nationality": "CL", - "profile_image_url": "/player-photos/1779833066116_Makishy.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CL", + "date_of_birth": "2002-10-11", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/ab78bd2e3837f5d7.webp" }, { "id": "player-99920360", @@ -5868,81 +2247,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-3bd486ec", - "team_name": "Anyone's Legend", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-e7903388", "position": "Support", "condition": 100, - "full_name": "QiuQiu ", + "full_name": "Zhang Ming", "attributes": { - "laning": 74, "mechanics": 70, - "discipline": 81, + "laning": 74, + "teamfighting": 82, "macro_play": 81, "consistency": 80, "shotcalling": 77, - "teamfighting": 82, "champion_pool": 74, + "discipline": 81, "mental_resilience": 81 }, - "match_name": "Zhang Ming", + "match_name": "QiuQiu ", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -5956,15 +2280,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/1935ffd1792eecc8.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-846e9361", @@ -5974,43 +2296,27 @@ "condition": 100, "full_name": "Lilipp", "attributes": { - "laning": 74, "mechanics": 73, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, "match_name": "Lilipp", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "DE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/d322eb9907355ecd.webp" }, { "id": "player-84a16c5b", @@ -6018,91 +2324,58 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Zamudo", + "full_name": "Frankie Lin", "attributes": { - "laning": 74, "mechanics": 72, - "discipline": 72, + "laning": 74, + "teamfighting": 73, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 73, "champion_pool": 71, + "discipline": 72, "mental_resilience": 73 }, - "match_name": "Frankie Lin", + "match_name": "Zamudo", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "match_name": "Xiaorui", - "id": "player-866a300a", - "full_name": "Xiaorui", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, + "stats": {}, + "profile_image_url": null + }, + { + "match_name": "Xiaorui", + "id": "player-866a300a", + "full_name": "Xiaorui", + "position": "ADC", "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-868f16b9", @@ -6111,45 +2384,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "arneb", "condition": 100, "full_name": "leaf", "attributes": { - "laning": 66, "mechanics": 68, - "discipline": 70, + "laning": 66, + "teamfighting": 66, "macro_play": 66, "consistency": 66, "shotcalling": 71, - "teamfighting": 66, "champion_pool": 70, + "discipline": 70, "mental_resilience": 70 }, "match_name": "leaf", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 75, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779564215016_veza7qzd9v.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/24875188d5854ad1.webp" }, { "id": "player-d3c98c84", @@ -6157,45 +2420,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-3a61434a", "position": "Jungle", "condition": 100, - "full_name": "OnFleek", + "full_name": "Kim Jang-gyeom", "attributes": { - "laning": 78, "mechanics": 75, - "discipline": 82, + "laning": 78, + "teamfighting": 73, "macro_play": 84, "consistency": 86, "shotcalling": 70, - "teamfighting": 73, "champion_pool": 77, + "discipline": 82, "mental_resilience": 78 }, - "match_name": "Kim Jang-gyeom", + "match_name": "OnFleek", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -6208,62 +2452,41 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/4032004a.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 67, + "laning": 72, + "teamfighting": 74, "macro_play": 72, "consistency": 72, "shotcalling": 72, - "teamfighting": 74, "champion_pool": 73, + "discipline": 67, "mental_resilience": 69 }, "id": "player-0b3afc8c", "match_name": "Targamas", "full_name": "Targamas", - "date_of_birth": "June 30, 2000", - "nationality": "Belgium", - "profile_image_url": "/player-photos/1778856673186_hzs25remj3t.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "Belgium", + "date_of_birth": "June 30, 2000", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/cf7caa30ac8621e6.webp" }, { "id": "player-70aa8b53", @@ -6271,72 +2494,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Rare Atom", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-8626be2d", "position": "Support", "condition": 100, - "full_name": "Yuyanjia", + "full_name": "Liang Jia-Yuan", "attributes": { - "laning": 69, "mechanics": 77, - "discipline": 81, + "laning": 69, + "teamfighting": 81, "macro_play": 80, "consistency": 78, "shotcalling": 78, - "teamfighting": 81, "champion_pool": 76, + "discipline": 81, "mental_resilience": 75 }, - "match_name": "Liang Jia-Yuan", + "match_name": "Yuyanjia", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -6350,15 +2527,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/fef9cea68450367c.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-8dd48146", @@ -6367,92 +2542,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "barça esports", "condition": 100, - "full_name": "Sergio Bouzende Rodriguez", + "full_name": "Macaquinho", "attributes": { - "laning": 67, "mechanics": 70, - "discipline": 68, + "laning": 67, + "teamfighting": 67, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 67, "champion_pool": 66, + "discipline": 68, "mental_resilience": 68 }, - "match_name": "Macaquinho", + "match_name": "Sergio Bouzende Rodriguez", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 72, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-07-30", - "nationality": "ES", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-8e84f39e", - "wage": 0, - "career": [], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "condition": 100, - "full_name": "Eric Lozano Gutiérrez", - "attributes": { - "laning": 66, - "mechanics": 70, - "discipline": 66, - "macro_play": 72, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 63, - "champion_pool": 67, - "mental_resilience": 68 - }, - "match_name": "selenex", - "loan_listed": false, - "morale_core": {}, - "contract_end": null, - "market_value": 0, - "potential_base": 71, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "alternate_positions": [], - "date_of_birth": "2003-01-01", "nationality": "ES", - "profile_image_url": null, - "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "date_of_birth": "2003-07-30", + "stats": {}, + "profile_image_url": null }, { "id": "player-8f28a0b2", @@ -6461,45 +2579,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "barça esports", "condition": 100, - "full_name": "Luis Pérez García", + "full_name": "Koldo", "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 65, + "laning": 72, + "teamfighting": 71, "macro_play": 68, "consistency": 70, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 69, + "discipline": 65, "mental_resilience": 68 }, - "match_name": "Koldo", + "match_name": "Luis Pérez García", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 71, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-11-07", - "nationality": "ES", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "ES", + "date_of_birth": "2000-11-07", + "stats": {}, + "profile_image_url": null }, { "id": "player-8f2edb06", @@ -6509,43 +2617,29 @@ "condition": 100, "full_name": "Taiyaki", "attributes": { - "laning": 72, "mechanics": 70, - "discipline": 65, + "laning": 72, + "teamfighting": 70, "macro_play": 71, "consistency": 69, "shotcalling": 71, - "teamfighting": 70, "champion_pool": 70, + "discipline": 65, "mental_resilience": 67 }, "match_name": "Taiyaki", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "JP", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-1f80b231", @@ -6553,54 +2647,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Top", "condition": 100, - "full_name": "Decade", + "full_name": "Zhang Hua-Xin", "attributes": { - "laning": 71, "mechanics": 74, - "discipline": 77, + "laning": 71, + "teamfighting": 71, "macro_play": 76, "consistency": 78, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 71, + "discipline": 77, "mental_resilience": 75 }, - "match_name": "Zhang Hua-Xin", + "match_name": "Decade", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -6614,61 +2680,40 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/66345b3b.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { - "match_name": "Ni Hao-Jie", + "match_name": "Ninefog", "id": "player-90529482", - "full_name": "Ninefog", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-ninefog.png", + "full_name": "Ni Hao-Jie", "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/ba162def827288bb.png" }, { "id": "player-4d2227a8", @@ -6676,90 +2721,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dc1429f2", - "team_name": "LGD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-6eabcfe3", "position": "Support", "condition": 100, - "full_name": "Mark", + "full_name": "Ling Xu", "attributes": { - "laning": 73, "mechanics": 77, - "discipline": 76, + "laning": 73, + "teamfighting": 83, "macro_play": 84, "consistency": 83, "shotcalling": 76, - "teamfighting": 83, "champion_pool": 70, + "discipline": 76, "mental_resilience": 76 }, - "match_name": "Ling Xu", + "match_name": "Mark", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -6773,15 +2754,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/1506fefda9b5513d.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-97cfdbc5", @@ -6791,43 +2770,29 @@ "condition": 100, "full_name": "Tricky", "attributes": { - "laning": 65, "mechanics": 64, - "discipline": 68, + "laning": 65, + "teamfighting": 67, "macro_play": 65, "consistency": 64, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 64, + "discipline": 68, "mental_resilience": 67 }, "match_name": "Tricky", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "AE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-88bcdf1b", @@ -6835,54 +2800,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-a91d2a1a", "position": "Top", "condition": 100, - "full_name": "Invincible", + "full_name": "Li Xiao-Bing", "attributes": { - "laning": 75, "mechanics": 71, - "discipline": 78, + "laning": 75, + "teamfighting": 74, "macro_play": 77, "consistency": 72, "shotcalling": 78, - "teamfighting": 74, "champion_pool": 71, + "discipline": 78, "mental_resilience": 82 }, - "match_name": "Li Xiao-Bing", + "match_name": "Invincible", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -6896,15 +2833,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/7a5072c6.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-5e939328", @@ -6912,63 +2847,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-3f714e0d", - "team_name": "Liiv SANDBOX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Mid", "condition": 100, - "full_name": "FATE", + "full_name": "Yoo Su-hyeok", "attributes": { - "laning": 77, "mechanics": 82, - "discipline": 77, + "laning": 77, + "teamfighting": 73, "macro_play": 78, "consistency": 86, "shotcalling": 72, - "teamfighting": 73, "champion_pool": 75, + "discipline": 77, "mental_resilience": 80 }, - "match_name": "Yoo Su-hyeok", + "match_name": "FATE", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -6982,15 +2880,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/9b721b5673ade864.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-9a72c514", @@ -6999,45 +2895,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "nongshim esports academy", "condition": 100, "full_name": "Lucy", "attributes": { - "laning": 75, "mechanics": 76, - "discipline": 74, + "laning": 75, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 74, "mental_resilience": 75 }, "match_name": "Lucy", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/a0ed30f392c97045.png" }, { "id": "player-8cd3908d", @@ -7045,90 +2931,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "HANJIN BRION CHALLENGERS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Astralis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Astralis", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-3f714e0d", - "team_name": "BNK FEARX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "BNK FEARX Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-4ce0e81d", "position": "Support", "condition": 100, - "full_name": "Execute", + "full_name": "Lee Jeong-hoon", "attributes": { - "laning": 69, "mechanics": 76, - "discipline": 78, + "laning": 69, + "teamfighting": 81, "macro_play": 77, "consistency": 83, "shotcalling": 78, - "teamfighting": 81, "champion_pool": 69, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Lee Jeong-hoon", + "match_name": "Execute", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -7142,361 +2964,74 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/4b68a040.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-9fe817df", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Arizona State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "100 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Arizona State", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Dramatik Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "100 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "ANEW Blaze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "C9 Amateur", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "CLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "AOE Gold", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CCG Futures", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CLG Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CLG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "NRG Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "AOE Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "NTMR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CCG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "NTMR", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Supernova", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Contingent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Conviction", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Dignitas", - "appearances": 0 - } - ], + "career": [], "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Breezy", + "full_name": "Brindon Keesey", "attributes": { - "laning": 73, "mechanics": 71, - "discipline": 73, + "laning": 73, + "teamfighting": 72, "macro_play": 73, "consistency": 71, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 70, + "discipline": 73, "mental_resilience": 72 }, - "match_name": "Brindon Keesey", + "match_name": "Breezy", "loan_listed": false, "transfer_listed": false, - "date_of_birth": "1999-08-20", - "nationality": "US", - "profile_image_url": "/player-photos/1779777984353_ex2wj2ai2p.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": "1999-08-20", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "spongecord prime", - "appearances": 0 - } - ], + "stats": {}, + "profile_image_url": "/player-photos/accf3d719d5371de.webp" + }, + { + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-a020f702", - "match_name": "Achileas Marios Karagiannis", - "full_name": "CHIMP", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, + "match_name": "CHIMP", + "full_name": "Achileas Marios Karagiannis", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-401019e2", @@ -7504,117 +3039,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-3bd486ec", - "team_name": "Anyone's Legend", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rogue Warriors", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Flash Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Flash Wolves", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Flash Wolves", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-91d72732", "position": "ADC", "condition": 100, - "full_name": "Betty", + "full_name": "Lu Yu-Hung", "attributes": { - "laning": 83, "mechanics": 81, - "discipline": 76, + "laning": 83, + "teamfighting": 73, "macro_play": 76, "consistency": 73, "shotcalling": 76, - "teamfighting": 73, "champion_pool": 77, + "discipline": 76, "mental_resilience": 73 }, - "match_name": "Lu Yu-Hung", + "match_name": "Betty", "loan_listed": false, "morale_core": {}, "nationality": "Taiwan", @@ -7627,16 +3071,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/3cb24db7.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-ac92e7a5", @@ -7646,43 +3088,29 @@ "condition": 100, "full_name": "Siroinai", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 72, + "laning": 73, + "teamfighting": 72, "macro_play": 74, "consistency": 73, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 70, + "discipline": 72, "mental_resilience": 72 }, "match_name": "Siroinai", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-ac9ea657", @@ -7692,43 +3120,27 @@ "condition": 100, "full_name": "Protos", "attributes": { - "laning": 72, "mechanics": 66, - "discipline": 71, + "laning": 72, + "teamfighting": 69, "macro_play": 68, "consistency": 67, "shotcalling": 71, - "teamfighting": 69, "champion_pool": 71, + "discipline": 71, "mental_resilience": 68 }, "match_name": "Protos", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-444eeed6", @@ -7736,81 +3148,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-6b8be626", "position": "ADC", "condition": 100, - "full_name": "Able", + "full_name": "Dai Zhi-Chun", "attributes": { - "laning": 84, "mechanics": 80, - "discipline": 79, + "laning": 84, + "teamfighting": 75, "macro_play": 81, "consistency": 80, "shotcalling": 74, - "teamfighting": 75, "champion_pool": 81, + "discipline": 79, "mental_resilience": 79 }, - "match_name": "Dai Zhi-Chun", + "match_name": "Able", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -7823,16 +3180,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/098fdd67.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-06953b00", @@ -7840,63 +3195,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-83d3342f", - "team_name": "CTBC Flying Oyster", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-623eeecd", "position": "Mid", "condition": 100, - "full_name": "Gori", + "full_name": "Kim Tae-woo", "attributes": { - "laning": 79, "mechanics": 75, - "discipline": 77, + "laning": 79, + "teamfighting": 75, "macro_play": 84, "consistency": 81, "shotcalling": 72, - "teamfighting": 75, "champion_pool": 78, + "discipline": 77, "mental_resilience": 81 }, - "match_name": "Kim Tae-woo", + "match_name": "Gori", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -7910,15 +3228,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/fcea43420133897a.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-f17d6bb0", @@ -7926,90 +3242,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-623eeecd", "position": "Jungle", "condition": 100, - "full_name": "Beichuan", + "full_name": "Yang Ling", "attributes": { - "laning": 81, "mechanics": 83, - "discipline": 78, + "laning": 81, + "teamfighting": 73, "macro_play": 81, "consistency": 82, "shotcalling": 74, - "teamfighting": 73, "champion_pool": 82, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Yang Ling", + "match_name": "Beichuan", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -8022,148 +3274,41 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/624a1255.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "attributes": { - "laning": 74, - "mechanics": 76, - "discipline": 65, - "macro_play": 74, - "consistency": 75, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 69 - }, - "id": "player-b45177e7", - "match_name": "SAKEN", - "full_name": "SAKEN", - "date_of_birth": "November 5, 1998", - "nationality": "FR", - "profile_image_url": "/player-photos/1778856682392_xeqgo6ugw9g.webp", - "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": null, - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { - "id": "player-76424bd8", - "wage": 131000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "ADC", - "condition": 100, - "full_name": "LP", - "attributes": { - "laning": 82, - "mechanics": 80, - "discipline": 79, - "macro_play": 76, - "consistency": 77, - "shotcalling": 77, - "teamfighting": 72, - "champion_pool": 84, - "mental_resilience": 77 - }, - "match_name": "Li Fei", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1965000, - "birth_country": null, - "date_of_birth": "2002-08-04", - "potential_base": 87, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 76, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 75, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 65, + "mental_resilience": 69 + }, + "id": "player-b45177e7", + "match_name": "SAKEN", + "full_name": "SAKEN", + "position": "Mid", + "team_id": null, + "nationality": "FR", + "date_of_birth": "November 5, 1998", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/a3624e6803ad262a.webp" }, { "id": "player-6f844ede", @@ -8171,45 +3316,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Jungle", "condition": 100, - "full_name": "Grizzly", + "full_name": "Jo Seung-hoon", "attributes": { - "laning": 79, "mechanics": 82, - "discipline": 81, + "laning": 79, + "teamfighting": 74, "macro_play": 82, "consistency": 78, "shotcalling": 69, - "teamfighting": 74, "champion_pool": 80, + "discipline": 81, "mental_resilience": 75 }, - "match_name": "Jo Seung-hoon", + "match_name": "Grizzly", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -8222,16 +3348,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/3961aa8f.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-bcb2c72b", @@ -8241,43 +3365,27 @@ "condition": 100, "full_name": "Duro", "attributes": { - "laning": 88, "mechanics": 89, - "discipline": 84, + "laning": 88, + "teamfighting": 88, "macro_play": 89, "consistency": 89, "shotcalling": 87, - "teamfighting": 88, "champion_pool": 86, + "discipline": 84, "mental_resilience": 86 }, "match_name": "Duro", "potential_base": 94, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/abdcdfd583a4fcc5.png" }, { "id": "player-bcf22a52", @@ -8286,45 +3394,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "arneb", "condition": 100, "full_name": "dresscode", "attributes": { - "laning": 66, "mechanics": 70, - "discipline": 65, + "laning": 66, + "teamfighting": 65, "macro_play": 66, "consistency": 66, "shotcalling": 71, - "teamfighting": 65, "champion_pool": 70, + "discipline": 65, "mental_resilience": 67 }, "match_name": "dresscode", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 73, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": "/player-photos/1779564234183_osiesswx73.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/33cbeefe32e00acd.webp" }, { "id": "player-be5ec549", @@ -8334,43 +3432,27 @@ "condition": 100, "full_name": "ATA ErPirotBlue", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 67, + "laning": 73, + "teamfighting": 73, "macro_play": 71, "consistency": 73, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 65, + "discipline": 67, "mental_resilience": 67 }, "match_name": "ATA ErPirotBlue", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "IT", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-bf6dfe78", @@ -8380,43 +3462,29 @@ "condition": 100, "full_name": "Magic", "attributes": { - "laning": 67, "mechanics": 66, - "discipline": 66, + "laning": 67, + "teamfighting": 67, "macro_play": 67, "consistency": 66, "shotcalling": 60, - "teamfighting": 67, "champion_pool": 64, + "discipline": 66, "mental_resilience": 65 }, "match_name": "Magic", "loan_listed": false, "transfer_listed": false, - "date_of_birth": null, - "nationality": "AE", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "AE", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-c4af25b7", @@ -8426,89 +3494,54 @@ "condition": 100, "full_name": "Bio", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 74, + "laning": 66, + "teamfighting": 66, "macro_play": 66, "consistency": 66, "shotcalling": 71, - "teamfighting": 66, "champion_pool": 70, + "discipline": 74, "mental_resilience": 68 }, "match_name": "Bio", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "US", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 73, "mechanics": 68, - "discipline": 72, + "laning": 73, + "teamfighting": 73, "macro_play": 74, "consistency": 72, "shotcalling": 73, - "teamfighting": 73, "champion_pool": 69, + "discipline": 72, "mental_resilience": 72 }, "id": "player-c617af88", "match_name": "Bambi", "full_name": "Bambi", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-500d9978", @@ -8516,45 +3549,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-623eeecd", "position": "Jungle", "condition": 100, - "full_name": "Moyan", + "full_name": "Wang Xin", "attributes": { - "laning": 75, "mechanics": 73, - "discipline": 74, + "laning": 75, + "teamfighting": 74, "macro_play": 73, "consistency": 75, "shotcalling": 69, - "teamfighting": 74, "champion_pool": 79, + "discipline": 74, "mental_resilience": 74 }, - "match_name": "Wang Xin", + "match_name": "Moyan", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -8567,16 +3581,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/149639d5.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-4fc7abc3", @@ -8584,72 +3596,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-tl2025", - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-tl2025", - "team_name": "Team Liquid", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-8c046ae8", "position": "Jungle", "condition": 100, - "full_name": "UmTi", + "full_name": "Um Sung-hyeon", "attributes": { - "laning": 80, "mechanics": 77, - "discipline": 79, + "laning": 80, + "teamfighting": 78, "macro_play": 76, "consistency": 81, "shotcalling": 72, - "teamfighting": 78, "champion_pool": 81, + "discipline": 79, "mental_resilience": 81 }, - "match_name": "Um Sung-hyeon", + "match_name": "UmTi", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -8662,16 +3628,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/1ad9d0f0.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-32510998", @@ -8679,36 +3643,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "ADC", "condition": 100, - "full_name": "Baiye", + "full_name": "Liu Wen-Xue", "attributes": { - "laning": 80, "mechanics": 76, - "discipline": 81, + "laning": 80, + "teamfighting": 76, "macro_play": 74, "consistency": 78, "shotcalling": 76, - "teamfighting": 76, "champion_pool": 80, + "discipline": 81, "mental_resilience": 74 }, - "match_name": "Liu Wen-Xue", + "match_name": "Baiye", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -8721,16 +3675,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/24afe5e4.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-d648135c", @@ -8740,43 +3692,27 @@ "condition": 100, "full_name": "Bazz", "attributes": { - "laning": 66, "mechanics": 64, - "discipline": 68, + "laning": 66, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 70, - "teamfighting": 64, "champion_pool": 71, + "discipline": 68, "mental_resilience": 67 }, "match_name": "Bazz", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-b3df5aaa", @@ -8784,63 +3720,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-a8b5d41c", "position": "Top", "condition": 100, - "full_name": "ADD", + "full_name": "Kang Geon-mo", "attributes": { - "laning": 70, "mechanics": 77, - "discipline": 77, + "laning": 70, + "teamfighting": 75, "macro_play": 72, "consistency": 78, "shotcalling": 78, - "teamfighting": 75, "champion_pool": 73, + "discipline": 77, "mental_resilience": 77 }, - "match_name": "Kang Geon-mo", + "match_name": "ADD", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -8854,15 +3753,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/19a610ba.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-34782c24", @@ -8870,99 +3767,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Qiao Gu Reapers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "team-6481a859", - "team_name": "JD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "team-6481a859", - "team_name": "JD Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "SK Telecom T1", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "FunPlus Phoenix", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-623eeecd", "position": "Jungle", "condition": 100, - "full_name": "Clid", + "full_name": "Kim Tae-min", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 84, + "laning": 80, + "teamfighting": 79, "macro_play": 78, "consistency": 82, "shotcalling": 78, - "teamfighting": 79, "champion_pool": 77, + "discipline": 84, "mental_resilience": 80 }, - "match_name": "Kim Tae-min", + "match_name": "Clid", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -8975,16 +3799,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/137b521d.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-da52e4d6", @@ -8992,45 +3814,29 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "CloudStrikee", + "full_name": "Michele Andonaia", "attributes": { - "laning": 65, "mechanics": 67, - "discipline": 68, + "laning": 65, + "teamfighting": 69, "macro_play": 65, "consistency": 65, "shotcalling": 65, - "teamfighting": 69, "champion_pool": 66, + "discipline": 68, "mental_resilience": 68 }, - "match_name": "Michele Andonaia", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, + "match_name": "CloudStrikee", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "nationality": "IT", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-f4450941", @@ -9038,45 +3844,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0a33a07d", - "team_name": "Ninjas in Pyjamas", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-f6e39d2f", "position": "Top", "condition": 100, - "full_name": "Solokill", + "full_name": "Mak Fu Keung", "attributes": { - "laning": 69, "mechanics": 71, - "discipline": 76, + "laning": 69, + "teamfighting": 80, "macro_play": 77, "consistency": 73, "shotcalling": 72, - "teamfighting": 80, "champion_pool": 69, + "discipline": 76, "mental_resilience": 80 }, - "match_name": "Mak Fu Keung", + "match_name": "Solokill", "loan_listed": false, "morale_core": {}, "nationality": "Hong Kong", @@ -9090,61 +3877,40 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/21b7ac42.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 68, + "laning": 72, + "teamfighting": 74, "macro_play": 72, "consistency": 72, "shotcalling": 68, - "teamfighting": 74, "champion_pool": 71, + "discipline": 68, "mental_resilience": 70 }, "id": "player-dce3f428", "match_name": "Doss", "full_name": "Doss", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "DK", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-ddba39bb", @@ -9154,138 +3920,27 @@ "condition": 100, "full_name": "Vsta", "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 76, + "laning": 76, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 69, - "teamfighting": 74, "champion_pool": 74, + "discipline": 76, "mental_resilience": 74 }, "match_name": "Vsta", "potential_base": 80, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9d232f5f", - "wage": 26000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-75263716", - "team_name": "Oh My God", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "Jungle", - "condition": 100, - "full_name": "Beishang", - "attributes": { - "laning": 82, - "mechanics": 78, - "discipline": 86, - "macro_play": 85, - "consistency": 84, - "shotcalling": 76, - "teamfighting": 80, - "champion_pool": 77, - "mental_resilience": 76 - }, - "match_name": "Jiang Zhi-Peng", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 390000, - "birth_country": null, - "date_of_birth": "2000-10-15", - "potential_base": 85, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/b75c85a476c389f3.webp" }, { "id": "player-9a7061df", @@ -9293,81 +3948,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-96232407", "position": "Top", "condition": 100, - "full_name": "Rascal", + "full_name": "Kim Kwang-hee", "attributes": { - "laning": 83, "mechanics": 75, - "discipline": 80, + "laning": 83, + "teamfighting": 77, "macro_play": 78, "consistency": 80, "shotcalling": 77, - "teamfighting": 77, "champion_pool": 80, + "discipline": 80, "mental_resilience": 73 }, - "match_name": "Kim Kwang-hee", + "match_name": "Rascal", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -9380,16 +3980,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Top", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/de2d48a91a340c28.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-12a6585b", @@ -9397,99 +3995,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Suning", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Suning", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-a324dc9d", - "team_name": "Weibo Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-ec9ab429", - "team_name": "LNG Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Jungle", "condition": 100, - "full_name": "Weiwei", + "full_name": "Wei Bo-Han", "attributes": { - "laning": 83, "mechanics": 77, - "discipline": 79, + "laning": 83, + "teamfighting": 75, "macro_play": 76, "consistency": 85, "shotcalling": 72, - "teamfighting": 75, "champion_pool": 79, + "discipline": 79, "mental_resilience": 79 }, - "match_name": "Wei Bo-Han", + "match_name": "Weiwei", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -9502,108 +4027,68 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/4bb5484e.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 75, + "laning": 74, + "teamfighting": 68, "macro_play": 72, "consistency": 73, "shotcalling": 68, - "teamfighting": 68, "champion_pool": 71, + "discipline": 75, "mental_resilience": 74 }, "id": "player-e2dc7061", "match_name": "Oleg", "full_name": "Oleg", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "RU", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 73, + "laning": 70, + "teamfighting": 70, "macro_play": 70, "consistency": 68, "shotcalling": 73, - "teamfighting": 70, "champion_pool": 71, + "discipline": 73, "mental_resilience": 73 }, "id": "player-e3ffccd9", "match_name": "Louis", "full_name": "Louis", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "FR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-0b76f4a0", @@ -9611,72 +4096,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Royal Never Give Up", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-d6ad5a14", - "team_name": "Invictus Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-5f40fca8", "position": "Mid", "condition": 100, - "full_name": "Cryin", + "full_name": "Yuan Cheng-Wei", "attributes": { - "laning": 81, "mechanics": 78, - "discipline": 85, + "laning": 81, + "teamfighting": 74, "macro_play": 79, "consistency": 83, "shotcalling": 77, - "teamfighting": 74, "champion_pool": 80, + "discipline": 85, "mental_resilience": 79 }, - "match_name": "Yuan Cheng-Wei", + "match_name": "Cryin", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -9690,15 +4129,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/73370697.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-e51c5ca8", @@ -9707,91 +4144,62 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "arneb", "condition": 100, "full_name": "Kania", "attributes": { - "laning": 73, "mechanics": 71, - "discipline": 66, + "laning": 73, + "teamfighting": 72, "macro_play": 70, "consistency": 71, "shotcalling": 65, - "teamfighting": 72, "champion_pool": 69, + "discipline": 66, "mental_resilience": 68 }, "match_name": "Kania", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 76, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": "/player-photos/1779564221521_t6utls1ows.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/b72647a8384669c4.webp" }, { "attributes": { - "laning": 71, "mechanics": 72, - "discipline": 75, + "laning": 71, + "teamfighting": 67, "macro_play": 72, "consistency": 69, "shotcalling": 73, - "teamfighting": 67, "champion_pool": 69, + "discipline": 75, "mental_resilience": 73 }, "id": "player-e94fb6b9", "match_name": "Koala", "full_name": "Koala", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-ebeaa4a9", @@ -9799,36 +4207,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "ADC", "condition": 100, - "full_name": "Xing", + "full_name": "Liu Jia-Xing", "attributes": { - "laning": 82, "mechanics": 75, - "discipline": 75, + "laning": 82, + "teamfighting": 74, "macro_play": 73, "consistency": 76, "shotcalling": 75, - "teamfighting": 74, "champion_pool": 80, + "discipline": 75, "mental_resilience": 75 }, - "match_name": "Liu Jia-Xing", + "match_name": "Xing", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -9841,16 +4239,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/6750116e2fbfb585.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-ef68eb0e", @@ -9860,43 +4256,27 @@ "condition": 100, "full_name": "Lehends", "attributes": { - "laning": 88, "mechanics": 88, - "discipline": 89, + "laning": 88, + "teamfighting": 89, "macro_play": 88, "consistency": 88, "shotcalling": 86, - "teamfighting": 89, "champion_pool": 86, + "discipline": 89, "mental_resilience": 89 }, "match_name": "Lehends", "potential_base": 89, - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/b54406c28cc7c803.webp" }, { "id": "player-f1be496e", @@ -9906,43 +4286,27 @@ "condition": 100, "full_name": "arbrio", "attributes": { - "laning": 65, "mechanics": 64, - "discipline": 71, + "laning": 65, + "teamfighting": 64, "macro_play": 64, "consistency": 65, "shotcalling": 65, - "teamfighting": 64, "champion_pool": 69, + "discipline": 71, "mental_resilience": 68 }, "match_name": "arbrio", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { "id": "player-f286ef9c", @@ -9950,91 +4314,58 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Asilah", + "full_name": "Ez-zejjari Amine", "attributes": { - "laning": 68, "mechanics": 70, - "discipline": 72, + "laning": 68, + "teamfighting": 69, "macro_play": 68, "consistency": 70, "shotcalling": 66, - "teamfighting": 69, "champion_pool": 67, + "discipline": 72, "mental_resilience": 70 }, - "match_name": "Ez-zejjari Amine", + "match_name": "Asilah", "loan_listed": false, - "contract_end": null, + "contract_end": "2027-01-01", "transfer_listed": false, - "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], + "nationality": "MA", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": null }, { - "match_name": "Pan Xin", + "match_name": "XBY", "id": "player-f5ab7f49", - "full_name": "XBY", - "date_of_birth": null, - "nationality": "", - "profile_image_url": "/player-photos/ldl-xby.png", + "full_name": "Pan Xin", "position": "Jungle", - "natural_position": "Jungle", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, "career": [], - "champion_mastery": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/1cb27b300a4b6a33.png" }, { "id": "player-f5de6fb7", @@ -10043,45 +4374,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "nongshim esports academy", "condition": 100, "full_name": "Mihawk", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 76, "mental_resilience": 75 }, "match_name": "Mihawk", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/18afab7dc5233a33.png" }, { "id": "player-cde38d88", @@ -10089,135 +4410,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Taipei Assassins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Taipei Assassins", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "J Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "J Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "J Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "J Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rare Atom", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-dd4bc6a5", - "team_name": "Bilibili Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-ca28739d", - "team_name": "EDward Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "PSG Talon", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "team-99eedd9f", "position": "Mid", "condition": 100, - "full_name": "FoFo", + "full_name": "Chu Chun-Lan", "attributes": { - "laning": 78, "mechanics": 79, - "discipline": 81, + "laning": 78, + "teamfighting": 78, "macro_play": 81, "consistency": 81, "shotcalling": 73, - "teamfighting": 78, "champion_pool": 74, + "discipline": 81, "mental_resilience": 80 }, - "match_name": "Chu Chun-Lan", + "match_name": "FoFo", "loan_listed": false, "morale_core": {}, "nationality": "Taiwan", @@ -10231,15 +4443,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/0bb0c47a.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-b102ffc2", @@ -10247,54 +4457,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Team Aze", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Mid", "condition": 100, - "full_name": "Tempt", + "full_name": "Kang Myung-gu", "attributes": { - "laning": 77, "mechanics": 76, - "discipline": 83, + "laning": 77, + "teamfighting": 78, "macro_play": 82, "consistency": 82, "shotcalling": 76, - "teamfighting": 78, "champion_pool": 77, + "discipline": 83, "mental_resilience": 73 }, - "match_name": "Kang Myung-gu", + "match_name": "Tempt", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -10308,116 +4490,42 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": null, + "profile_image_url": "/player-photos/3f20bae3.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "AURORA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Ascendance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Galakticos", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Only Heroes Academia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Team Insidious", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "NextGeneration", - "appearances": 0 - } - ], + "potential_research_started_on": null + }, + { + "career": [], "loan_listed": false, "transfer_listed": false, "id": "player-fa3dfced", - "match_name": "Sezer Efe Çakır", - "full_name": "Kaine", - "date_of_birth": "2003-08-13", - "nationality": "", - "profile_image_url": null, + "match_name": "Kaine", + "full_name": "Sezer Efe Çakır", "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], - "attributes": { - "laning": 75, - "mechanics": 75, - "discipline": 75, - "macro_play": 75, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 75, - "champion_pool": 75, - "mental_resilience": 75 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2003-08-13", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, + "contract_end": "", "potential_base": 0, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-bd9abd8c", @@ -10425,45 +4533,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-f4306bce", - "team_name": "SoftBank HAWKS", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Jungle", "condition": 100, - "full_name": "Yohan", + "full_name": "Kim Yo-han", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 65, + "laning": 68, + "teamfighting": 63, "macro_play": 66, "consistency": 69, "shotcalling": 59, - "teamfighting": 63, "champion_pool": 68, + "discipline": 65, "mental_resilience": 63 }, - "match_name": "Kim Yo-han", + "match_name": "Yohan", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -10476,16 +4565,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "Jungle", - "profile_image_url": null, + "natural_position": "Mid", + "profile_image_url": "/player-photos/37609d07.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-95d0a9ee", @@ -10493,54 +4580,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-5facf88e", - "team_name": "Team WE", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Top", "condition": 100, - "full_name": "Wayward", + "full_name": "Huang Ren-Xing", "attributes": { - "laning": 72, "mechanics": 70, - "discipline": 73, + "laning": 72, + "teamfighting": 73, "macro_play": 72, "consistency": 78, "shotcalling": 77, - "teamfighting": 73, "champion_pool": 69, + "discipline": 73, "mental_resilience": 83 }, - "match_name": "Huang Ren-Xing", + "match_name": "Wayward", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -10554,72 +4613,46 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, + "profile_image_url": "/player-photos/28f341bc.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Maze Gaming", - "appearances": 0 - } - ], + "potential_research_started_on": null + }, + { + "career": [], "injury": null, "morale": 100, "fitness": 100, "condition": 100, "attributes": { - "laning": 59, "mechanics": 55, - "discipline": 56, + "laning": 59, + "teamfighting": 54, "macro_play": 56, "consistency": 53, "shotcalling": 52, - "teamfighting": 54, "champion_pool": 56, + "discipline": 56, "mental_resilience": 53 }, "loan_listed": false, "potential_base": 65, "transfer_listed": false, "id": "player-fcec0a68", - "match_name": "Leonardo Lalangui", - "full_name": "Diaakc", - "date_of_birth": "2008-12-19", - "nationality": "", - "profile_image_url": "/player-photos/1779833307507_Diaakc.webp", + "match_name": "Diaakc", + "full_name": "Leonardo Lalangui", "position": "Mid", - "natural_position": "Mid", - "alternate_positions": [], "team_id": null, - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2008-12-19", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/7821c23889a23ab5.webp" }, { "id": "player-fd8efffc", @@ -10628,45 +4661,35 @@ "injury": null, "morale": 100, "fitness": 100, - "team_id": null, + "team_id": "nongshim esports academy", "condition": 100, "full_name": "Janus", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 76, "mental_resilience": 75 }, "match_name": "Janus", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/71afb6f1273a3b23.png" }, { "id": "player-3822bdf1", @@ -10674,63 +4697,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-b777d366", - "team_name": "Top Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-a84cce06", - "team_name": "Ultra Prime", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": null, "position": "Top", "condition": 100, - "full_name": "Qingtian", + "full_name": "Yu Zi-Han", "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 75, + "laning": 72, + "teamfighting": 79, "macro_play": 75, "consistency": 73, "shotcalling": 78, - "teamfighting": 79, "champion_pool": 73, + "discipline": 75, "mental_resilience": 79 }, - "match_name": "Yu Zi-Han", + "match_name": "Qingtian", "loan_listed": false, "morale_core": {}, "nationality": "China", @@ -10744,74 +4730,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Top", - "profile_image_url": null, - "potential_revealed": null, - "alternate_positions": [], - "champion_training_target": null, - "champion_training_targets": [], - "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null - }, - { - "id": "player-c8a135cc", - "wage": 77000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-3bd486ec", - "team_name": "Anyone's Legend", - "appearances": 0 - } - ], - "injury": null, - "morale": 100, - "fitness": 100, - "team_id": null, - "position": "ADC", - "condition": 100, - "full_name": "Zhiqiuyi", - "attributes": { - "laning": 82, - "mechanics": 75, - "discipline": 80, - "macro_play": 73, - "consistency": 75, - "shotcalling": 75, - "teamfighting": 73, - "champion_pool": 81, - "mental_resilience": 81 - }, - "match_name": "Chen Yu-Ji", - "loan_listed": false, - "morale_core": {}, - "nationality": "China", - "contract_end": "2026-12-20", - "market_value": 1155000, - "birth_country": null, - "date_of_birth": "2000-01-01", - "potential_base": 82, - "training_focus": null, - "transfer_listed": false, - "transfer_offers": [], - "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "profile_image_url": "/player-photos/332d149e.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null } ] -} +} \ No newline at end of file diff --git a/data/players/hll_players.json b/data/players/hll_players.json index 25cd0d40a..8bb2cfcb4 100644 --- a/data/players/hll_players.json +++ b/data/players/hll_players.json @@ -3,1380 +3,1554 @@ "description": "HLL - 2026 Season", "players": [ { - "id": "player-d7451d6f", - "match_name": "Loading", - "full_name": "Loading", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-022f6244", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-86bb25d6", + "condition": 100, + "full_name": "Dimitris Aggelos Chiotelis", "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 60, - "shotcalling": 59, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 60 + "mechanics": 66, + "laning": 66, + "teamfighting": 67, + "macro_play": 66, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 64, + "discipline": 68, + "mental_resilience": 67 }, - "condition": 100, + "match_name": "Prosty", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 73, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": "2003-09-18", + "stats": {}, + "profile_image_url": "/player-photos/46af571d8b7af316.webp" + }, + { + "id": "player-0c105108", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-ca24ae43", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Giannis Dimitrelis", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 67, + "macro_play": 66, + "consistency": 67, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 64, + "mental_resilience": 65 + }, + "match_name": "REAVER (Giannis Dimitrelis)", + "position": "Support", + "team_id": "team-34f5f8b3", + "nationality": "GR", + "date_of_birth": "2002-08-30", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/8c67733fd4f24269.webp" + }, + { + "id": "player-292851e3", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b2dec67c", + "condition": 100, + "full_name": "Dimitris Mixopoulos", + "attributes": { + "mechanics": 62, + "laning": 60, + "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 65, + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "K1ckbait", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": "2007-08-18", + "stats": {}, + "profile_image_url": "/player-photos/7a2962baded879ca.webp" }, { - "id": "player-3f11bfa5", - "match_name": "Cripple", - "full_name": "Cripple", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2b8f258b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b2dec67c", + "condition": 100, + "full_name": "Raizy", "attributes": { + "mechanics": 60, "laning": 60, - "mechanics": 62, - "discipline": 66, + "teamfighting": 60, + "macro_play": 62, + "consistency": 60, + "shotcalling": 65, + "champion_pool": 61, + "discipline": 65, + "mental_resilience": 63 + }, + "match_name": "Raizy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-2ba313af", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ca24ae43", + "condition": 100, + "full_name": "Ace", + "attributes": { + "mechanics": 60, + "laning": 64, + "teamfighting": 64, "macro_play": 62, "consistency": 62, "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 61, + "champion_pool": 65, + "discipline": 68, "mental_resilience": 64 }, - "condition": 100, + "match_name": "Ace", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-3f11bfa5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Viktor Milanović", + "attributes": { + "mechanics": 62, + "laning": 60, + "teamfighting": 64, + "macro_play": 62, + "consistency": 62, + "shotcalling": 60, + "champion_pool": 61, + "discipline": 66, + "mental_resilience": 64 + }, + "match_name": "Cripple", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RS", + "date_of_birth": "2003-03-25", "stats": {}, + "profile_image_url": "/player-photos/ace020f1440a9390.webp" + }, + { + "id": "player-4def1a81", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-86bb25d6", + "condition": 100, + "full_name": "Dimitris Dimitropoulos", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "Jimsnop", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 73, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": "1999-11-06", + "stats": {}, + "profile_image_url": "/player-photos/ed83cd6ae71e136f.webp" }, { - "id": "player-a435f989", - "match_name": "Septico1", - "full_name": "Septico1", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-53bcdbcf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-92da5b60", + "condition": 100, + "full_name": "Apostolis Kabosos", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 65, - "macro_play": 62, + "laning": 65, + "teamfighting": 62, + "macro_play": 64, "consistency": 64, - "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 63, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 64, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "traits": [], - "contract_end": null, + "match_name": "Druxy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 71, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/83346584054cb853.webp" + }, + { + "career": [], + "attributes": { + "mechanics": 68, + "laning": 73, + "teamfighting": 72, + "macro_play": 71, + "consistency": 70, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 74 + }, + "id": "player-58912b88", + "match_name": "Addusto", + "full_name": "Gia Huy Khuat", + "position": "Top", + "team_id": "team-34f5f8b3", + "nationality": "DE", + "date_of_birth": "2005-12-16", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/76cb9d19419c2b19.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, + "attributes": { + "mechanics": 72, + "laning": 69, + "teamfighting": 69, + "macro_play": 75, + "consistency": 71, + "shotcalling": 72, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 70 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-6d2ca6cd", + "match_name": "CRoNiiK", + "full_name": "Sergi Señé Molist", + "position": "Jungle", + "team_id": "team-34f5f8b3", + "nationality": "ES", + "date_of_birth": "2002-01-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b08a57de62e7b170.webp" }, { - "id": "player-9da643ae", - "match_name": "Matixx", - "full_name": "Matixx", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-70b58dd0", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alexander Leksikov", "attributes": { + "mechanics": 64, "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 65, - "consistency": 66, + "teamfighting": 64, + "macro_play": 67, + "consistency": 67, "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 65, - "mental_resilience": 66 + "champion_pool": 63, + "discipline": 64, + "mental_resilience": 65 }, + "match_name": "Lekcyc", + "position": "Support", + "team_id": "team-34f5f8b3", + "nationality": "RU", + "date_of_birth": "1996-07-24", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9b0f8bee536a5539.webp" + }, + { + "id": "player-7190040f", + "career": [], + "morale": 100, + "fitness": 100, "condition": 100, + "full_name": "Yusuf Semih Bilir", + "attributes": { + "mechanics": 65, + "laning": 64, + "teamfighting": 65, + "macro_play": 66, + "consistency": 65, + "shotcalling": 59, + "champion_pool": 64, + "discipline": 66, + "mental_resilience": 65 + }, + "match_name": "Abagnale", + "position": "Support", + "team_id": "team-92da5b60", + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/efdce75c121c62fc.webp" + }, + { + "id": "player-72d33bdb", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-608ecbe2", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-b2dec67c", + "condition": 100, + "full_name": "GaraXy", + "attributes": { + "mechanics": 62, + "laning": 64, + "teamfighting": 68, + "macro_play": 64, + "consistency": 64, + "shotcalling": 65, + "champion_pool": 61, + "discipline": 65, + "mental_resilience": 65 + }, + "match_name": "GaraXy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-dc41310e", - "match_name": "Ambush", - "full_name": "Ambush", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-73e94a07", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-92da5b60", + "condition": 100, + "full_name": "Aggelos Kosterias", "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 61, - "macro_play": 60, - "consistency": 59, + "mechanics": 65, + "laning": 66, + "teamfighting": 62, + "macro_play": 64, + "consistency": 64, "shotcalling": 65, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 64 + "champion_pool": 64, + "discipline": 64, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Elix1r", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": "2007-10-04", + "stats": {}, + "profile_image_url": "/player-photos/811a727b8ab5b385.webp" }, { - "id": "player-e66132bd", - "match_name": "Fame", - "full_name": "Fame", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-81bb6359", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Sebastian Czyżyk", "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 67, - "macro_play": 60, - "consistency": 60, - "shotcalling": 65, - "teamfighting": 64, + "mechanics": 66, + "laning": 65, + "teamfighting": 68, + "macro_play": 67, + "consistency": 67, + "shotcalling": 60, "champion_pool": 63, + "discipline": 68, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Color", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "2000-12-06", + "stats": {}, + "profile_image_url": "/player-photos/5a24281739b18f58.webp" }, { - "id": "player-e4a6342d", - "match_name": "kPr", - "full_name": "kPr", - "date_of_birth": null, - "nationality": "MD", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-81e016be", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b2dec67c", + "condition": 100, + "full_name": "Robert Jarcu", "attributes": { - "laning": 68, - "mechanics": 67, - "discipline": 60, - "macro_play": 66, - "consistency": 68, + "mechanics": 64, + "laning": 60, + "teamfighting": 66, + "macro_play": 60, + "consistency": 60, "shotcalling": 60, - "teamfighting": 65, - "champion_pool": 61, - "mental_resilience": 63 + "champion_pool": 65, + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Azu (Robert Jarcu)", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RO", + "date_of_birth": "2004-05-23", + "stats": {}, + "profile_image_url": "/player-photos/3bb7c2ad1fd31206.webp" }, { - "id": "player-aa415602", - "match_name": "D4rtaine", - "full_name": "D4rtaine", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-8717e0db", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Anthonie van Bemmelen", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 68, - "macro_play": 66, + "laning": 66, + "teamfighting": 65, + "macro_play": 67, "consistency": 66, "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Mahonix", + "position": "Support", "team_id": "team-86bb25d6", - "traits": [], - "contract_end": null, + "nationality": "NL", + "date_of_birth": "2002-03-20", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/989784f48a66fcab.webp" + }, + { + "id": "player-8959e40e", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Avraam Tsakiridis", + "attributes": { + "mechanics": 67, + "laning": 67, + "teamfighting": 66, + "macro_play": 68, + "consistency": 68, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 64, + "mental_resilience": 65 + }, + "match_name": "Drofan", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 73, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": "2005-06-03", + "stats": {}, + "profile_image_url": "/player-photos/1c05c98558a5f566.webp" }, { - "id": "player-72d33bdb", - "match_name": "GaraXy", - "full_name": "GaraXy", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-89b58605", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8aeeec01", + "condition": 100, + "full_name": "Alex", "attributes": { + "mechanics": 64, "laning": 64, - "mechanics": 62, - "discipline": 65, + "teamfighting": 64, "macro_play": 64, "consistency": 64, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 61, + "shotcalling": 60, + "champion_pool": 63, + "discipline": 65, "mental_resilience": 65 }, - "condition": 100, + "match_name": "Alex", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 71, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-912c10cc", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Loukas Prekas", + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Speedy1", + "position": "Support", + "team_id": "team-2e0c08a9", + "nationality": "GR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/27a21f08bbb442b5.webp" }, { - "id": "player-cf100a02", - "match_name": "Nikolex", - "full_name": "Nikolex", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-939bf4aa", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8aeeec01", + "condition": 100, + "full_name": "SM", "attributes": { - "laning": 65, "mechanics": 64, - "discipline": 65, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, + "champion_pool": 63, + "discipline": 66, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "SM", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-81bb6359", - "match_name": "Color", - "full_name": "Color", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-97f6c89d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Javier Escobedo Sevilla", "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 68, - "macro_play": 67, - "consistency": 67, + "mechanics": 60, + "laning": 62, + "teamfighting": 63, + "macro_play": 64, + "consistency": 62, "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 63, - "mental_resilience": 66 + "champion_pool": 64, + "discipline": 65, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-608ecbe2", - "traits": [], - "contract_end": null, + "match_name": "EscoX", + "position": "Support", + "team_id": "team-ca24ae43", + "nationality": "ES", + "date_of_birth": "1999-06-23", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/5fc00d9622116cfc.webp" + }, + { + "id": "player-9996ddf4", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Stavros Giannoulakis", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 66, + "mental_resilience": 66 + }, + "match_name": "Vaynedeta", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": "2001-09-27", + "stats": {}, + "profile_image_url": "/player-photos/0105fe8151a9c1d8.webp" }, { - "id": "player-73e94a07", - "match_name": "Elix1r", - "full_name": "Elix1r", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-9da643ae", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-608ecbe2", + "condition": 100, + "full_name": "Matixx", "attributes": { + "mechanics": 66, "laning": 66, - "mechanics": 65, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 64, - "mental_resilience": 65 + "teamfighting": 65, + "macro_play": 65, + "consistency": 66, + "shotcalling": 60, + "champion_pool": 65, + "discipline": 67, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Matixx", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-8959e40e", - "match_name": "Drofan", - "full_name": "Drofan", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-a435f989", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8aeeec01", + "condition": 100, + "full_name": "Septico1", "attributes": { - "laning": 67, - "mechanics": 67, - "discipline": 64, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, + "mechanics": 64, + "laning": 64, + "teamfighting": 65, + "macro_play": 62, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 63, + "discipline": 65, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Septico1", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RO", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-c217cfa2", - "match_name": "Pallet", - "full_name": "Pallet", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-a45f1314", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Petros Berdebes", "attributes": { + "mechanics": 66, "laning": 68, - "mechanics": 68, - "discipline": 68, + "teamfighting": 66, "macro_play": 68, "consistency": 68, "shotcalling": 65, - "teamfighting": 68, "champion_pool": 65, - "mental_resilience": 68 + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Peppe", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fb63ac1b", - "match_name": "Kuroneel", - "full_name": "Kuroneel", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", + "champion_mastery": [], "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": "2002-07-19", + "stats": {}, + "profile_image_url": "/player-photos/89d2ec1843213347.webp" + }, + { + "id": "player-aa415602", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-86bb25d6", + "condition": 100, + "full_name": "David Pires", "attributes": { - "laning": 62, - "mechanics": 67, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 + "champion_pool": 64, + "discipline": 68, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "D4rtaine", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PT", + "date_of_birth": "2004-05-18", + "stats": {}, + "profile_image_url": "/player-photos/93bf271cf2a60951.webp" }, { "id": "player-ad8acba1", - "match_name": "alix", - "full_name": "alix", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Alihan Özdemir", "attributes": { - "laning": 67, "mechanics": 66, - "discipline": 67, + "laning": 67, + "teamfighting": 67, "macro_play": 67, "consistency": 68, "shotcalling": 59, - "teamfighting": 67, "champion_pool": 65, + "discipline": 67, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Alix", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-da5ed41c", - "match_name": "Tsiperakos", - "full_name": "Tsiperakos", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 65, - "mental_resilience": 68 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TR", + "date_of_birth": "2006-08-14", + "stats": {}, + "profile_image_url": "/player-photos/df4d0e076496e5e1.webp" }, { - "id": "player-292851e3", - "match_name": "K1ckbait", - "full_name": "K1ckbait", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-b4598e15", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-86bb25d6", + "condition": 100, + "full_name": "Leonidas Vogiatzis", "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 62, - "macro_play": 60, - "consistency": 60, + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 + "champion_pool": 64, + "discipline": 68, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Leon (Leonidas Vogiatzis)", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/d2a830fb90ffea1d.webp" }, { - "id": "player-cba3d205", - "match_name": "Faded", - "full_name": "Faded", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-be301281", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34f5f8b3", + "condition": 100, + "full_name": "Nikitas Stefanakis", "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 68, - "macro_play": 62, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, "consistency": 64, "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 66 + "champion_pool": 63, + "discipline": 64, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Nikiyas", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": "2001-05-09", + "stats": {}, + "profile_image_url": "/player-photos/6165522871065075.webp" }, { - "id": "player-a45f1314", - "match_name": "Peppe", - "full_name": "Peppe", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-c217cfa2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2e0c08a9", + "condition": 100, + "full_name": "Angelos Visvikis", "attributes": { + "mechanics": 68, "laning": 68, - "mechanics": 66, - "discipline": 66, + "teamfighting": 68, "macro_play": 68, "consistency": 68, "shotcalling": 65, - "teamfighting": 66, "champion_pool": 65, - "mental_resilience": 66 + "discipline": 68, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-608ecbe2", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pallet", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": "2003-06-21", + "stats": {}, + "profile_image_url": "/player-photos/009244dd4f18d254.webp" }, { - "id": "player-81e016be", - "match_name": "Azu", - "full_name": "Azu", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 64, - "discipline": 64, - "macro_play": 60, - "consistency": 60, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-c7f9cd49", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Duarte Martins Vieira", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 64, + "macro_play": 64, + "consistency": 62, + "shotcalling": 60, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 63 + }, + "match_name": "Tochas", + "position": "Support", "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, + "nationality": "PT", + "date_of_birth": "2004-06-02", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/6d34b43ae9dcf1cd.webp" }, { - "id": "player-939bf4aa", - "match_name": "SM", - "full_name": "SM", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-cba3d205", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ca24ae43", + "condition": 100, + "full_name": "Anastasios Koutsouras", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, + "mechanics": 62, + "laning": 62, + "teamfighting": 66, + "macro_play": 62, "consistency": 64, "shotcalling": 65, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8aeeec01", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Faded (Anastasios Koutsouras)", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": "2004-07-21", + "stats": {}, + "profile_image_url": "/player-photos/96b3a1aa4c83f945.webp" }, { - "id": "player-022f6244", - "match_name": "Prosty", - "full_name": "Prosty", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 67, - "champion_pool": 64, - "mental_resilience": 67 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-86bb25d6", - "traits": [], - "contract_end": null, + "condition": 100, + "attributes": { + "mechanics": 62, + "laning": 63, + "teamfighting": 66, + "macro_play": 64, + "consistency": 65, + "shotcalling": 62, + "champion_pool": 60, + "discipline": 64, + "mental_resilience": 62 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 77, + "transfer_listed": false, + "id": "player-cea7803b", + "match_name": "Ace (Ignacio David Piaggio)", + "full_name": "Ignacio David Piaggio", + "position": "ADC", + "team_id": "team-ca24ae43", + "nationality": "CU", + "date_of_birth": "2007-04-18", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/5af23a8cf080b54c.webp" }, { - "id": "player-b4598e15", - "match_name": "Leon", - "full_name": "Leon", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-cf100a02", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8aeeec01", + "condition": 100, + "full_name": "Nikolex", "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, + "mechanics": 64, + "laning": 65, "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 67 + "macro_play": 64, + "consistency": 64, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 65, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Nikolex", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-2b8f258b", - "match_name": "Raizy", - "full_name": "Raizy", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d7451d6f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ca24ae43", + "condition": 100, + "full_name": "Berkay Çelebi", "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 65, + "mechanics": 62, + "laning": 62, + "teamfighting": 62, "macro_play": 62, "consistency": 60, - "shotcalling": 65, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 63 + "shotcalling": 59, + "champion_pool": 63, + "discipline": 60, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b2dec67c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Loading", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": "2003-10-16", + "stats": {}, + "profile_image_url": "/player-photos/0553d584e9ded143.webp" }, { - "id": "player-89b58605", - "match_name": "Alex", - "full_name": "Alex", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 65 - }, - "condition": 100, + "id": "player-da31c731", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-8aeeec01", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-2e0c08a9", + "condition": 100, + "full_name": "Paraskevas Fragkos", + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 65, + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Unkn0wn5", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/bd5b71fe17ee57a0.webp" }, { - "id": "player-4def1a81", - "match_name": "Jimsnop", - "full_name": "Jimsnop", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-da5ed41c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2e0c08a9", + "condition": 100, + "full_name": "Vasilis Lalas", "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 67, - "macro_play": 66, - "consistency": 66, + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, "shotcalling": 65, - "teamfighting": 66, "champion_pool": 65, - "mental_resilience": 67 + "discipline": 68, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-86bb25d6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Tsiperakos", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "GR", + "date_of_birth": "2002-09-27", + "stats": {}, + "profile_image_url": "/player-photos/fdb2098b52880e2c.webp" }, { - "id": "player-53bcdbcf", - "match_name": "Druxy", - "full_name": "Druxy", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-dc41310e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b2dec67c", + "condition": 100, + "full_name": "Panagiotis Thymio", "attributes": { - "laning": 65, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 59, + "laning": 58, + "teamfighting": 58, + "macro_play": 60, + "consistency": 59, "shotcalling": 65, - "teamfighting": 62, - "champion_pool": 65, - "mental_resilience": 65 + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-92da5b60", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Ambush", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": "2002-01-08", "stats": {}, + "profile_image_url": "/player-photos/9fc815ae4e5460a7.webp" + }, + { + "id": "player-e4a6342d", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-92da5b60", + "condition": 100, + "full_name": "Maxim Grebonos", + "attributes": { + "mechanics": 67, + "laning": 68, + "teamfighting": 65, + "macro_play": 66, + "consistency": 68, + "shotcalling": 60, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 63 + }, + "match_name": "KPr", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "MD", + "date_of_birth": "2003-04-19", + "stats": {}, + "profile_image_url": "/player-photos/f8237894c85ba8de.webp" }, { - "id": "player-be301281", - "match_name": "Nikiyas", - "full_name": "Nikiyas", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e66132bd", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ca24ae43", + "condition": 100, + "full_name": "Vasilis Amiridis", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 65, + "mechanics": 62, + "laning": 62, "teamfighting": 64, + "macro_play": 60, + "consistency": 60, + "shotcalling": 65, "champion_pool": 63, - "mental_resilience": 65 + "discipline": 67, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34f5f8b3", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Fame", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/7b14b02d1833b00f.webp" }, { - "id": "player-da31c731", - "match_name": "Unkn0wn5", - "full_name": "Unkn0wn5", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-82f8e30c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2e0c08a9", + "condition": 100, + "full_name": "Felix Rivedal Hylleseth", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 68, + "laning": 68, + "teamfighting": 68, "macro_play": 68, "consistency": 68, - "shotcalling": 65, - "teamfighting": 68, + "shotcalling": 60, "champion_pool": 65, + "discipline": 68, "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2e0c08a9", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Smurfe", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "NO", + "date_of_birth": "2004-09-27", + "stats": {}, + "profile_image_url": "/player-photos/5b1387bdc3e7b165.webp" }, { - "id": "player-2ba313af", - "match_name": "Ace", - "full_name": "Ace", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-eab83b8b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lagas", "attributes": { - "laning": 64, - "mechanics": 60, - "discipline": 68, - "macro_play": 62, - "consistency": 62, - "shotcalling": 60, + "mechanics": 64, + "laning": 65, "teamfighting": 64, - "champion_pool": 65, - "mental_resilience": 64 + "macro_play": 64, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ca24ae43", - "traits": [], - "contract_end": null, + "match_name": "Lagas", + "position": "Support", + "team_id": "team-8aeeec01", + "nationality": "GR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-9996ddf4", - "match_name": "Vaynedeta", - "full_name": "Vaynedeta", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 65, - "mental_resilience": 66 - }, - "condition": 100, + "id": "player-fb63ac1b", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-608ecbe2", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-92da5b60", + "condition": 100, + "full_name": "Romain Poilane", + "attributes": { + "mechanics": 67, + "laning": 62, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 63, + "discipline": 64, + "mental_resilience": 65 + }, + "match_name": "Kuroneel", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ef2a9b88faed4b09.webp" } ] } \ No newline at end of file diff --git a/data/players/hm_players.json b/data/players/hm_players.json index 38ce2fb21..961146fa1 100644 --- a/data/players/hm_players.json +++ b/data/players/hm_players.json @@ -3,2283 +3,1916 @@ "description": "HM - 2026 Season", "players": [ { - "id": "player-84a16c5b", - "match_name": "Frankie Lin", - "full_name": "Zamudo", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 73 - }, - "condition": 100, + "id": "player-005e1b70", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Šimon Povýšil", + "attributes": { + "mechanics": 64, + "laning": 63, + "teamfighting": 63, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 61, + "mental_resilience": 62 + }, + "match_name": "Strode", + "position": "ADC", + "team_id": "team-193151e6", + "nationality": "CZ", + "date_of_birth": "2005-10-31", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/6126c38a3929ea2e.webp" }, { - "id": "player-e1cc13b1", - "match_name": "Deepe", - "full_name": "Deepe", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-08074e26", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Samuel Koráb", "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 64, - "macro_play": 60, + "mechanics": 55, + "laning": 56, + "teamfighting": 58, + "macro_play": 58, "consistency": 58, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 61, - "mental_resilience": 62 + "champion_pool": 57, + "discipline": 61, + "mental_resilience": 57 }, - "condition": 100, + "match_name": "Dunzi", + "position": "Jungle", + "team_id": "team-da129d80", + "nationality": "CZ", + "date_of_birth": "2002-12-13", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9db30963b625b60b.webp" + }, + { + "id": "player-09a1d121", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Domocles", + "attributes": { + "mechanics": 58, + "laning": 60, + "teamfighting": 56, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 60, + "mental_resilience": 58 + }, + "match_name": "Domocles", + "position": "Mid", + "team_id": "team-19466153", + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-0ca2e82d", + "match_name": "Safo", + "full_name": "Filip Šafarčík", + "position": "ADC", + "team_id": "team-19466153", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/90559a03d4367942.webp" + }, + { + "career": [], + "id": "player-13c1e39d", + "match_name": "SneakyLemon", + "full_name": "Ahilleas Natsis", + "position": "Jungle", + "team_id": "team-df25d69f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/e0ae06eee5b579ea.webp" }, { "id": "player-15755080", - "match_name": "Robi", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, "full_name": "Robi", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 58, "mechanics": 56, - "discipline": 57, + "laning": 58, + "teamfighting": 61, "macro_play": 61, "consistency": 58, "shotcalling": 55, - "teamfighting": 61, "champion_pool": 56, + "discipline": 57, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Robi", + "position": "Mid", "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-55580c8c", - "match_name": "Interor", - "full_name": "Interor", - "date_of_birth": null, - "nationality": "K", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-188a7b8d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Paweł Machnik", "attributes": { - "laning": 58, - "mechanics": 55, - "discipline": 58, - "macro_play": 54, - "consistency": 54, + "mechanics": 63, + "laning": 63, + "teamfighting": 60, + "macro_play": 62, + "consistency": 62, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, - "mental_resilience": 56 + "champion_pool": 61, + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Vasco", + "position": "Mid", + "team_id": "team-193151e6", + "nationality": "PL", + "date_of_birth": "2004-09-23", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/c7d0bf83b2891610.webp" }, { - "id": "player-22cdf4c9", - "match_name": "Baro", - "full_name": "Baro", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1976edad", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Maciej Kowal", "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 60, - "consistency": 58, + "mechanics": 60, + "laning": 61, + "teamfighting": 61, + "macro_play": 62, + "consistency": 60, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 61, + "discipline": 60, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "SiroN1", + "position": "Support", "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/71a7587171305123.webp" }, { - "id": "player-7543d642", - "match_name": "Bobsik", - "full_name": "Bobsik", + "career": [], + "id": "player-1de7d051", + "match_name": "Dadou", + "full_name": "David Roudaut", + "position": "Jungle", + "team_id": "team-5bf73fd8", + "nationality": "", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/1a8553e20b566509.webp" }, { - "id": "player-e8381fbf", - "match_name": "MyCash", - "full_name": "MyCash", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2170ed2a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "René Souček", "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 58, - "macro_play": 61, - "consistency": 61, - "shotcalling": 56, + "mechanics": 60, + "laning": 60, "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, "champion_pool": 59, - "mental_resilience": 56 + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "BlackSwan", + "position": "ADC", + "team_id": "team-c01f7ad8", + "nationality": "CZ", + "date_of_birth": "2000-04-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/dccd8dd4f4ae6fb4.webp" }, { - "id": "player-6ae71ad2", - "match_name": "SLT", - "full_name": "SLT", + "career": [], + "id": "player-22c50a94", + "match_name": "Xavis", + "full_name": "Tomáš Velička", + "position": "ADC", + "team_id": "team-19466153", + "nationality": "", "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-193151e6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/f7f3e08e39e1a4be.webp" }, { - "id": "player-08074e26", - "match_name": "Dunzi", - "full_name": "Dunzi", + "id": "player-22cdf4c9", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Bartłomiej Bukowski", + "attributes": { + "mechanics": 58, + "laning": 60, + "teamfighting": 58, + "macro_play": 60, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Baro", + "position": "Top", + "team_id": "team-c01f7ad8", + "nationality": "PL", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/8eeea3096e164b08.webp" + }, + { + "id": "player-249e69f5", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Marek Netrval", "attributes": { + "mechanics": 58, "laning": 56, - "mechanics": 55, - "discipline": 61, + "teamfighting": 61, "macro_play": 58, "consistency": 58, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 57 + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "DVLK", + "position": "Jungle", + "team_id": "team-2bda20fb", + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/b6957e7a29817d2c.webp" + }, + { + "id": "player-2585f5fa", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Matúš Mazur", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Raining", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "ADC", + "team_id": "team-5a2933ca", + "nationality": "SK", + "date_of_birth": "2002-12-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/e85a9dd6987f620e.webp" }, { - "id": "player-d0e5cafb", - "match_name": "Robocop", - "full_name": "Robocop", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2c5adadb", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jiří Sýkora", "attributes": { + "mechanics": 54, "laning": 60, - "mechanics": 62, - "discipline": 55, - "macro_play": 62, - "consistency": 61, + "teamfighting": 55, + "macro_play": 57, + "consistency": 57, "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 59, + "champion_pool": 57, + "discipline": 59, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "JJirkos", + "position": "Support", + "team_id": "team-df25d69f", + "nationality": "CZ", + "date_of_birth": "2005-09-16", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/862ac34677c50134.webp" }, { - "id": "player-759066ae", - "match_name": "Krosak", - "full_name": "Krosak", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2cca45b8", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lefterakiss", "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 64, - "macro_play": 62, - "consistency": 60, + "mechanics": 53, + "laning": 56, + "teamfighting": 58, + "macro_play": 54, + "consistency": 54, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 59, - "mental_resilience": 62 + "discipline": 61, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Lefterakiss", + "position": "ADC", + "team_id": "team-df25d69f", + "nationality": "GR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-bf060354", - "match_name": "Dzeffry", - "full_name": "Dzeffry", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2eddc7c7", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Adam Kop", "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 63, - "consistency": 61, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 61, - "mental_resilience": 61 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Adyyy", + "position": "Mid", + "team_id": "team-5a2933ca", + "nationality": "CZ", + "date_of_birth": "2006-08-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/b667176d95764b7a.webp" }, { - "id": "player-5c24770f", - "match_name": "didie", - "full_name": "didie", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2f69c706", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Konrad Stanoch", "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 63, + "mechanics": 62, + "laning": 62, + "teamfighting": 63, "macro_play": 62, "consistency": 62, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, + "champion_pool": 60, + "discipline": 64, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Drzemik", + "position": "ADC", "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PL", + "date_of_birth": "2005-09-16", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/aec2c81922e4ba8a.webp" }, { - "id": "player-d46be96c", - "match_name": "Hades2", - "full_name": "Hades2", + "id": "player-326e2caa", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "behave", + "attributes": { + "mechanics": 61, + "laning": 56, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 54, + "mental_resilience": 57 + }, + "match_name": "behave", + "position": "Jungle", + "team_id": "team-19466153", + "nationality": "PL", "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-33774016", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alex Míka", "attributes": { + "mechanics": 53, "laning": 55, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, + "teamfighting": 52, + "macro_play": 54, "consistency": 55, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 60 + "champion_pool": 61, + "discipline": 56, + "mental_resilience": 54 }, - "condition": 100, + "match_name": "Munet", + "position": "Support", + "team_id": "team-da129d80", + "nationality": "CZ", + "date_of_birth": "1999-05-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/e3be86813d7b17ef.webp" + }, + { + "id": "player-33c5b28c", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Piwek", + "attributes": { + "mechanics": 63, + "laning": 61, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "Piwek", + "position": "ADC", + "team_id": "team-19466153", + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-37e12b7d", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Dadou", + "attributes": { + "mechanics": 61, + "laning": 64, + "teamfighting": 62, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 63 + }, + "match_name": "Dadou", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-5bf73fd8", + "nationality": "FR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/1a8553e20b566509.webp" }, { - "id": "player-aa6d26bd", - "match_name": "ONT h0pe", - "full_name": "ONT h0pe", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-39c88777", + "match_name": "Zeal", + "full_name": "Mostafa Ahmed", + "position": "Mid", + "team_id": "team-df25d69f", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-3fd8c5fe", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Grisha Mareev", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, + "laning": 63, "teamfighting": 63, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 64 + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, + "match_name": "Koresh", + "position": "Support", + "team_id": "team-5bf73fd8", + "nationality": "RU", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/bd545c581d373bfb.webp" + }, + { + "career": [], + "id": "player-432d39e2", + "match_name": "MrJackson", + "full_name": "Mustafa Yilmaz", + "position": "Jungle", + "team_id": "team-193151e6", + "nationality": "", + "date_of_birth": "2002-09-03", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/1983918a7ea32923.webp" + }, + { + "id": "player-50f22dc7", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Miķelis Dzelve", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Qualzy", + "position": "Jungle", + "team_id": "team-5a2933ca", + "nationality": "LV", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/fcabdab8c0055a95.webp" + }, + { + "id": "player-55580c8c", "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Viktor Liptai", + "attributes": { + "mechanics": 55, + "laning": 58, + "teamfighting": 58, + "macro_play": 54, + "consistency": 54, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 58, + "mental_resilience": 56 + }, + "match_name": "Interor", + "position": "Top", + "team_id": "team-da129d80", + "nationality": "K", + "date_of_birth": "2001-10-04", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9f2b066836144e86.webp" }, { "id": "player-57559cf2", - "match_name": "Dyego", - "full_name": "Dyego", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Adrián Talán", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 61, + "laning": 60, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 60, + "discipline": 61, "mental_resilience": 61 }, - "condition": 100, + "match_name": "Dyego", + "position": "Mid", + "team_id": "team-c01f7ad8", + "nationality": "SK", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/8a205cbe4651c245.webp" + }, + { + "id": "player-5c24770f", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Marek Ferneza", + "attributes": { + "mechanics": 63, + "laning": 63, + "teamfighting": 62, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Didie", + "position": "Top", + "team_id": "team-5bf73fd8", + "nationality": "SK", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/332762bc5b445065.webp" }, { - "id": "player-d1aac738", - "match_name": "Skyp", - "full_name": "Skyp", + "career": [], + "id": "player-5fc13a3d", + "match_name": "Hanii", + "full_name": "Nhat Hong Phamová", + "position": "Support", + "team_id": "team-da129d80", + "nationality": "", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 58, - "mechanics": 55, - "discipline": 56, - "macro_play": 57, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 55, - "mental_resilience": 55 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/7a93592e2fa943c1.webp" }, { - "id": "player-326e2caa", - "match_name": "behave", - "full_name": "behave", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-6ae71ad2", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Enzo Gonzalez", "attributes": { - "laning": 56, - "mechanics": 61, - "discipline": 54, - "macro_play": 60, - "consistency": 60, + "mechanics": 64, + "laning": 64, + "teamfighting": 63, + "macro_play": 63, + "consistency": 64, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 59, - "mental_resilience": 57 + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "SLT", + "position": "Top", + "team_id": "team-193151e6", + "nationality": "FR", + "date_of_birth": "2000-11-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/495ca0d2daae80ed.webp" }, { - "id": "player-249e69f5", - "match_name": "DVLK", - "full_name": "DVLK", + "career": [], + "id": "player-6e2081ea", + "match_name": "Barti", + "full_name": "Bartek Piasecki", + "position": "Support", + "team_id": "team-5bf73fd8", + "nationality": "", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 61 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2bda20fb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/be770ed5c8f30a0a.webp" }, { - "id": "player-90192578", - "match_name": "Albi", - "full_name": "Albi", + "career": [], + "id": "player-702a0b68", + "match_name": "Vyni", + "full_name": "Daniel Žabenský", + "position": "Mid", + "team_id": "team-5bf73fd8", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 59, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/730738ef4e3a6d9d.webp" }, { - "id": "player-b13b00e9", - "match_name": "Savero", - "full_name": "Savero", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-7543d642", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Matyáš Dobeš", "attributes": { - "laning": 63, "mechanics": 64, - "discipline": 56, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 59, "champion_pool": 61, - "mental_resilience": 60 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-193151e6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Bobsik", + "position": "Top", + "team_id": "team-5a2933ca", + "nationality": "CZ", + "date_of_birth": "2006-06-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/969ddfc2f23635c3.webp" }, { - "id": "player-904177c9", - "match_name": "Hunter", - "full_name": "Hunter", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-759066ae", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Krosak", "attributes": { + "mechanics": 63, "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, + "teamfighting": 62, + "macro_play": 62, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, + "champion_pool": 59, + "discipline": 64, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Krosak", + "position": "Top", "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-7cc302b4", + "match_name": "Chimer", + "full_name": "Josef Kovář", + "position": "ADC", + "team_id": "team-df25d69f", + "nationality": "", + "date_of_birth": "1995-06-06", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/e55dcca3160d654f.webp" }, { - "id": "player-cc02ccfc", - "match_name": "Downed", - "full_name": "Downed", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "id": "player-839a50ce", + "match_name": "Anonymouss", + "full_name": "Konstantin Kain", + "position": "Jungle", + "team_id": "team-19466153", + "nationality": "", + "date_of_birth": "2001-07-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 54, - "macro_play": 56, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 59, - "mental_resilience": 56 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/db189120f826dfd7.webp" + }, + { + "id": "player-84345e75", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Skyp", + "attributes": { + "mechanics": 56, + "laning": 59, + "teamfighting": 55, + "macro_play": 57, + "consistency": 57, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 56, + "mental_resilience": 56 + }, + "match_name": "Skyp", + "position": "ADC", "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/bf27ce9b2c20db21.webp" + }, + { + "id": "player-8cb6dc40", "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mattia Masopust", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Mita", + "position": "Support", + "team_id": "team-5a2933ca", + "nationality": "CZ", + "date_of_birth": "2004-06-14", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/43842834e78be9a2.webp" }, { "id": "player-8d42d200", - "match_name": "Inspire", - "full_name": "Inspire", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jiří Zoufalý", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 63, + "laning": 62, + "teamfighting": 63, "macro_play": 63, "consistency": 62, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 61, + "discipline": 63, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Inspire", + "position": "Mid", "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/64eb821e1e9cf003.webp" }, { - "id": "player-2cca45b8", - "match_name": "Lefterakiss", - "full_name": "Lefterakiss", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-90192578", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Albert Bera", "attributes": { + "mechanics": 58, "laning": 56, - "mechanics": 53, - "discipline": 61, - "macro_play": 54, - "consistency": 54, + "teamfighting": 59, + "macro_play": 58, + "consistency": 56, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 59, - "mental_resilience": 59 + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Albi¡", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-c01f7ad8", + "nationality": "PL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/4321b73d38522d2b.webp" }, { - "id": "player-2170ed2a", - "match_name": "BlackSwan", - "full_name": "BlackSwan", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-904177c9", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hunter", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 64, + "laning": 60, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, + "champion_pool": 60, + "discipline": 61, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-33774016", - "match_name": "Munet", - "full_name": "Munet", + "match_name": "Hunter", + "position": "Jungle", + "team_id": "team-5bf73fd8", + "nationality": "PL", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 55, - "mechanics": 53, - "discipline": 56, - "macro_play": 54, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 52, - "champion_pool": 61, - "mental_resilience": 54 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-1976edad", - "match_name": "SiroN1", - "full_name": "SiroN1", + "career": [], + "id": "player-96bc3a10", + "match_name": "Klopsik", + "full_name": "Przemysław Janowski", + "position": "Support", + "team_id": "team-c01f7ad8", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 60 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c01f7ad8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/9e53177537624cfe.webp" }, { - "id": "player-37e12b7d", - "match_name": "ONT Dadou", - "full_name": "ONT Dadou", + "career": [], + "id": "player-977ce5d4", + "match_name": "Fishireal", + "full_name": "Jiří Zeman", + "position": "Mid", + "team_id": "team-c01f7ad8", + "nationality": "", "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 61, - "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d5eab5112451ff54.webp" }, { "id": "player-99d3171a", - "match_name": "BG Elitex", - "full_name": "BG Elitex", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Elitex", "attributes": { - "laning": 56, "mechanics": 52, - "discipline": 64, + "laning": 56, + "teamfighting": 52, "macro_play": 53, "consistency": 52, "shotcalling": 56, - "teamfighting": 52, "champion_pool": 55, + "discipline": 64, "mental_resilience": 60 }, - "condition": 100, + "match_name": "Elitex", + "loan_listed": false, + "transfer_listed": false, + "position": "Mid", + "team_id": "team-df25d69f", + "nationality": "GR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-a4743820", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Lukáš Nevyjel", + "attributes": { + "mechanics": 56, + "laning": 58, + "teamfighting": 56, + "macro_play": 58, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 55, + "discipline": 63, + "mental_resilience": 58 + }, + "match_name": "CHECKFIDER", + "position": "ADC", + "team_id": "team-da129d80", + "nationality": "CZ", + "date_of_birth": "2003-08-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/529b01a46d70cb5f.webp" + }, + { + "id": "player-a90880fa", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Marco Isoletta", + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 58, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Marco", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-2bda20fb", + "nationality": "IT", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9643dde7718dea2e.webp" }, { - "id": "player-2eddc7c7", - "match_name": "Adyyy", - "full_name": "Adyyy", + "id": "player-aa6d26bd", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "h0pe", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 63, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "h0pe", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-5bf73fd8", + "nationality": "PL", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-b13b00e9", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jiří Odehnal", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 63, + "teamfighting": 59, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 56, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Savero", + "position": "Jungle", + "team_id": "team-193151e6", + "nationality": "CZ", + "date_of_birth": "2004-05-26", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/8bcc28add4111ff2.webp" }, { - "id": "player-f1d13d2a", - "match_name": "Afriibi", - "full_name": "Afriibi", - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-bf060354", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Tadeáš Kaše", "attributes": { - "laning": 58, "mechanics": 60, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 56, - "mental_resilience": 58 + "laning": 61, + "teamfighting": 60, + "macro_play": 63, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Dzeffry", + "position": "Top", + "team_id": "team-2bda20fb", + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/b0cd931f9e6b3e81.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-bf502604", + "match_name": "Nan0", + "full_name": "Gurjot Singh", + "position": "Mid", + "team_id": "team-19466153", + "nationality": "", + "date_of_birth": "2004-01-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/d443ae8a672d935e.webp" }, { - "id": "player-005e1b70", - "match_name": "Strode", - "full_name": "Strode", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, + "career": [], + "id": "player-c97ba69f", + "match_name": "LANDY", + "full_name": "Adam Landauf", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "team_id": "team-2bda20fb", + "nationality": "", + "date_of_birth": "2005-03-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-193151e6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/012012f399e44118.webp" }, { - "id": "player-2c5adadb", - "match_name": "JJirkos", - "full_name": "JJirkos", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-cc02ccfc", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Patrik Kaluža", "attributes": { + "mechanics": 60, "laning": 60, - "mechanics": 54, - "discipline": 59, - "macro_play": 57, - "consistency": 57, + "teamfighting": 53, + "macro_play": 56, + "consistency": 60, "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 57, - "mental_resilience": 58 + "champion_pool": 59, + "discipline": 54, + "mental_resilience": 56 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-df25d69f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Downed", + "position": "Mid", + "team_id": "team-da129d80", + "nationality": "SK", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/66eba99bf7b0b567.webp" }, { "id": "player-d007a835", - "match_name": "denyk", - "full_name": "denyk", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Petr Haramach", "attributes": { - "laning": 61, "mechanics": 64, - "discipline": 60, + "laning": 61, + "teamfighting": 62, "macro_play": 63, "consistency": 64, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 61, + "discipline": 60, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Denyk", + "position": "Support", "team_id": "team-193151e6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": "1995-04-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/2a5d2a6125517414.webp" }, { - "id": "player-50f22dc7", - "match_name": "qualzy", - "full_name": "qualzy", - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "condition": 100, + "id": "player-d0e5cafb", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-188a7b8d", - "match_name": "Vasco", - "full_name": "Vasco", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "condition": 100, + "full_name": "Ondřej Sklenička", "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 61, + "mechanics": 62, + "laning": 60, + "teamfighting": 59, "macro_play": 62, - "consistency": 62, + "consistency": 61, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 + "champion_pool": 59, + "discipline": 55, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-193151e6", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Robocop", + "position": "Top", + "team_id": "team-19466153", + "nationality": "CZ", + "date_of_birth": "2000-06-08", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/f91e3cd50798a588.webp" }, { - "id": "player-84345e75", - "match_name": "Skyp", - "full_name": "Skyp", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-d1aac738", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Filip Trefný", "attributes": { - "laning": 59, - "mechanics": 56, - "discipline": 56, + "mechanics": 55, + "laning": 58, + "teamfighting": 58, "macro_play": 57, - "consistency": 57, + "consistency": 58, "shotcalling": 56, - "teamfighting": 55, - "champion_pool": 61, - "mental_resilience": 56 + "champion_pool": 55, + "discipline": 56, + "mental_resilience": 55 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Skyp", + "position": "Jungle", "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/bf27ce9b2c20db21.webp" }, { - "id": "player-e9867b5a", - "match_name": "KNEZA", - "full_name": "KNEZA", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-d46be96c", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hades2", "attributes": { - "laning": 56, - "mechanics": 60, - "discipline": 63, + "mechanics": 58, + "laning": 55, + "teamfighting": 58, "macro_play": 58, + "consistency": 55, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Hades2", + "position": "Jungle", + "team_id": "team-df25d69f", + "nationality": "GR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-e1cc13b1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Peter Gramata", + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 60, "consistency": 58, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 61, + "discipline": 64, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Deepe", + "position": "Mid", "team_id": "team-2bda20fb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "SK", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/bf77629d333b8f46.webp" }, { - "id": "player-2585f5fa", - "match_name": "raining", - "full_name": "raining", - "date_of_birth": null, - "nationality": "SK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e8381fbf", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ondřej Mikeš", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 61, + "laning": 61, + "teamfighting": 62, + "macro_play": 61, + "consistency": 61, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 56 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "MyCash", + "position": "Top", + "team_id": "team-df25d69f", + "nationality": "CZ", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d953ea27320d1ba2.webp" }, { - "id": "player-a90880fa", - "match_name": "Marco", - "full_name": "Marco", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-e9867b5a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Vojtěch Kněžíček", "attributes": { + "mechanics": 60, "laning": 56, - "mechanics": 58, - "discipline": 58, + "teamfighting": 60, "macro_play": 58, - "consistency": 60, + "consistency": 58, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 61, - "mental_resilience": 60 + "discipline": 63, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "KNEZA", + "position": "ADC", "team_id": "team-2bda20fb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": "2004-02-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d79d026f8187a057.webp" }, { - "id": "player-8cb6dc40", - "match_name": "Mita", - "full_name": "Mita", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-ee44393b", + "match_name": "Ray", + "full_name": "Ken Le", + "position": "ADC", + "team_id": "team-df25d69f", + "nationality": "", "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5a2933ca", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-09a1d121", - "match_name": "Domocles", - "full_name": "Domocles", + "career": [], + "id": "player-ef3c9acb", + "match_name": "Nvidek", + "full_name": "Mateusz Adamczyk", + "position": "Jungle", + "team_id": "team-5bf73fd8", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 57, - "mental_resilience": 58 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, + "profile_image_url": "/player-photos/872aa2505faf0fed.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-38fb3072", - "match_name": "PhyMini", - "full_name": "PhyMini", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 + "id": "player-f1b77df8", + "match_name": "Enricfh", + "full_name": "Enric Ferrer Herraiz", + "position": "Jungle", + "team_id": "team-df25d69f", + "nationality": "", + "date_of_birth": "2000-01-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, + "profile_image_url": "/player-photos/266b0841dee34ede.webp" + }, + { + "id": "player-f1d13d2a", "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-54033ec2", - "match_name": "Sushee", - "full_name": "Sushee", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, "morale": 100, "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a4743820", - "match_name": "CHECKFIDER", - "full_name": "CHECKFIDER", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "condition": 100, + "full_name": "Afriibi", "attributes": { + "mechanics": 60, "laning": 58, - "mechanics": 56, - "discipline": 63, + "teamfighting": 61, "macro_play": 58, "consistency": 58, "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 55, + "champion_pool": 56, + "discipline": 61, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-da129d80", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-33c5b28c", - "match_name": "Piwek", - "full_name": "Piwek", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, + "match_name": "Afriibi", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 61, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 57, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-2f69c706", - "match_name": "Drzemik", - "full_name": "Drzemik", + "nationality": "LV", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-fcd4b0fb", - "match_name": "J3rkie", - "full_name": "J3rkie", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Erik Polák", "attributes": { - "laning": 62, "mechanics": 64, - "discipline": 58, + "laning": 62, + "teamfighting": 63, "macro_play": 63, "consistency": 60, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 57, + "discipline": 58, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "J3rkie", + "position": "Support", "team_id": "team-19466153", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-3fd8c5fe", - "match_name": "Koresh", - "full_name": "Koresh", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 63, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5bf73fd8", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6db70add", - "match_name": "Kisno", - "full_name": "Kisno", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 73, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-ac92e7a5", - "match_name": "Siroinai", - "full_name": "Siroinai", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 72, - "macro_play": 74, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1315d803", - "match_name": "Spica", - "full_name": "Spica", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c07ed47", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CZ", + "date_of_birth": "2003-09-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/cb837805ccb316e2.webp" } ] } \ No newline at end of file diff --git a/data/players/lck_cl_players.json b/data/players/lck_cl_players.json new file mode 100644 index 000000000..b040b0687 --- /dev/null +++ b/data/players/lck_cl_players.json @@ -0,0 +1,2703 @@ +{ + "description": "LCK CL - 2026 Season", + "name": "LCK CL Players", + "players": [ + { + "alternate_positions": [], + "attributes": { + "champion_pool": 77, + "consistency": 77, + "discipline": 80, + "laning": 84, + "macro_play": 82, + "mechanics": 78, + "mental_resilience": 73, + "shotcalling": 72, + "teamfighting": 73 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "HANJIN BRION CHALLENGERS" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "", + "team_name": "HANJIN BRION CHALLENGERS" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "", + "team_name": "DN SOOpers Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "DN SOOpers Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-10-21", + "fitness": 100, + "full_name": "Bang Moon-yeong", + "id": "player-2b2908e9", + "injury": null, + "loan_listed": false, + "market_value": 1650000, + "match_name": "DDoiV", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 77, + "position": "Jungle", + "potential_base": 87, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 110000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 54, + "consistency": 56, + "discipline": 50, + "laning": 56, + "macro_play": 56, + "mechanics": 49, + "mental_resilience": 49, + "shotcalling": 44, + "teamfighting": 47 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-07-06", + "fitness": 100, + "full_name": "Oh Yeong-woong", + "id": "player-09e339e7", + "injury": null, + "loan_listed": false, + "market_value": 1020000, + "match_name": "Tempester", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 51, + "position": "Mid", + "potential_base": 68, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 68000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 72, + "consistency": 70, + "discipline": 73, + "laning": 66, + "macro_play": 65, + "mechanics": 69, + "mental_resilience": 69, + "shotcalling": 70, + "teamfighting": 68 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoom DRX" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-06-30", + "fitness": 100, + "full_name": "Lee Min-hoi", + "id": "player-79717137", + "injury": null, + "loan_listed": false, + "market_value": 1875000, + "match_name": "Frog", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 69, + "position": "Top", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-79717137.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 125000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 53, + "consistency": 58, + "discipline": 58, + "laning": 52, + "macro_play": 60, + "mechanics": 50, + "mental_resilience": 64, + "shotcalling": 60, + "teamfighting": 61 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-09-08", + "fitness": 100, + "full_name": "Kim Dong-hyeon", + "id": "player-2c37d36b", + "injury": null, + "loan_listed": false, + "market_value": 1245000, + "match_name": "Loopy", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 57, + "position": "Support", + "potential_base": 68, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-2c37d36b.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-1050caec", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 83000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 72, + "consistency": 70, + "discipline": 74, + "laning": 76, + "macro_play": 66, + "mechanics": 76, + "mental_resilience": 75, + "shotcalling": 66, + "teamfighting": 66 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-03-06", + "fitness": 100, + "full_name": "Pyun Min-ki", + "id": "player-4bd4cc7f", + "injury": null, + "loan_listed": false, + "market_value": 660000, + "match_name": "Pyeonsik", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 71, + "position": "ADC", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 44000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 79, + "consistency": 70, + "discipline": 78, + "laning": 77, + "macro_play": 70, + "mechanics": 75, + "mental_resilience": 74, + "shotcalling": 68, + "teamfighting": 68 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "NS Esports Academy" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-61bd92d5", + "team_name": "NS RedForce" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "team-61bd92d5", + "team_name": "NS RedForce" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoom DRX" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2028-11-16", + "date_of_birth": "2004-03-20", + "fitness": 100, + "full_name": "Jung Ji-woo", + "id": "player-f9ead664", + "injury": null, + "loan_listed": false, + "market_value": 390000, + "match_name": "Jiwoo", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 73, + "position": "ADC", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/0123667e.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-bc4c40ec", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 26000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 61, + "consistency": 64, + "discipline": 66, + "laning": 64, + "macro_play": 66, + "mechanics": 59, + "mental_resilience": 70, + "shotcalling": 70, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2028-11-17", + "date_of_birth": "2008-12-07", + "fitness": 100, + "full_name": "Park Gyu-yong", + "id": "player-722557b3", + "injury": null, + "loan_listed": false, + "market_value": 1875000, + "match_name": "Bluffing", + "morale": 100, + "morale_core": {}, + "nationality": "South korea", + "natural_position": "Support", + "overall": 66, + "position": "Support", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/09ed512e.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 125000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 78, + "consistency": 82, + "discipline": 79, + "laning": 80, + "macro_play": 80, + "mechanics": 75, + "mental_resilience": 75, + "shotcalling": 73, + "teamfighting": 75 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoom DRX" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "team-38a818e5", + "team_name": "TT Gaming" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2004-10-13", + "fitness": 100, + "full_name": "Song Kyeong-jin", + "id": "player-f28913fb", + "injury": null, + "loan_listed": false, + "market_value": 750000, + "match_name": "SeTab", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 77, + "position": "Mid", + "potential_base": 87, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/035c5fe5.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 50000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 73, + "consistency": 75, + "discipline": 76, + "laning": 72, + "macro_play": 81, + "mechanics": 77, + "mental_resilience": 76, + "shotcalling": 77, + "teamfighting": 78 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2020, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2021, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoom DRX" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2021, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2022, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-bc4c40ec", + "team_name": "Kiwoom DRX" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "", + "team_name": "Kiwoon DRX Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "team-61bd92d5", + "team_name": "NS Esports Academy" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-03-28", + "fitness": 100, + "full_name": "Son Min-woo", + "id": "player-e9962c33", + "injury": null, + "loan_listed": false, + "market_value": 1695000, + "match_name": "Pleata", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 76, + "position": "Support", + "potential_base": 87, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-e9962c33.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 113000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 70, + "consistency": 74, + "discipline": 69, + "laning": 64, + "macro_play": 71, + "mechanics": 68, + "mental_resilience": 78, + "shotcalling": 74, + "teamfighting": 73 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-02-11", + "fitness": 100, + "full_name": "Sim Su-hyeon", + "id": "player-69fb8cbc", + "injury": null, + "loan_listed": false, + "market_value": 1065000, + "match_name": "Haetae", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 71, + "position": "Top", + "potential_base": 91, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 71000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 64, + "consistency": 69, + "discipline": 70, + "laning": 75, + "macro_play": 70, + "mechanics": 73, + "mental_resilience": 64, + "shotcalling": 65, + "teamfighting": 64 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-15", + "date_of_birth": "1993-11-11", + "fitness": 100, + "full_name": "Kim Joon-hyeong", + "id": "player-b78c5ed2", + "injury": null, + "loan_listed": false, + "market_value": 705000, + "match_name": "Mihawk", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 68, + "position": "Jungle", + "potential_base": 90, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-b78c5ed2.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 47000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 73, + "consistency": 72, + "discipline": 68, + "laning": 69, + "macro_play": 69, + "mechanics": 66, + "mental_resilience": 70, + "shotcalling": 66, + "teamfighting": 69 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2007-09-16", + "fitness": 100, + "full_name": "Kim Eun-hoo", + "id": "player-6ea7af53", + "injury": null, + "loan_listed": false, + "market_value": 1290000, + "match_name": "Painter", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 69, + "position": "Jungle", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 86000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 71, + "consistency": 78, + "discipline": 74, + "laning": 77, + "macro_play": 73, + "mechanics": 75, + "mental_resilience": 75, + "shotcalling": 71, + "teamfighting": 68 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-16", + "date_of_birth": "2007-11-15", + "fitness": 100, + "full_name": "Seol Jeong-won", + "id": "player-ad9b060b", + "injury": null, + "loan_listed": false, + "market_value": 1605000, + "match_name": "Garden", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 74, + "position": "Mid", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-ad9b060b.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 107000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 74, + "consistency": 70, + "discipline": 72, + "laning": 75, + "macro_play": 74, + "mechanics": 77, + "mental_resilience": 73, + "shotcalling": 70, + "teamfighting": 68 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2007-08-26", + "fitness": 100, + "full_name": "Kim Dan-woo", + "id": "player-f982937f", + "injury": null, + "loan_listed": false, + "market_value": 1110000, + "match_name": "Sharvel", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 73, + "position": "Mid", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 74000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 67, + "consistency": 74, + "discipline": 75, + "laning": 67, + "macro_play": 69, + "mechanics": 71, + "mental_resilience": 73, + "shotcalling": 71, + "teamfighting": 71 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-17", + "date_of_birth": "2000-01-01", + "fitness": 100, + "full_name": "Lee Su-min", + "id": "player-6ab13eda", + "injury": null, + "loan_listed": false, + "market_value": 1155000, + "match_name": "Jackal", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 71, + "position": "Jungle", + "potential_base": 79, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-6ab13eda.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-2a2bf8d9", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 77000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 76, + "consistency": 81, + "discipline": 76, + "laning": 82, + "macro_play": 76, + "mechanics": 75, + "mental_resilience": 73, + "shotcalling": 76, + "teamfighting": 71 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2020, + "team_id": "team-41bf07a6", + "team_name": "Dplus KIA" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2021, + "team_id": "team-41bf07a6", + "team_name": "Dplus KIA" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2022, + "team_id": "team-61bd92d5", + "team_name": "NS RedForce" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "team-932ee946", + "team_name": "KT Rolster" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "KT Rolster Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "1999-03-18", + "fitness": 100, + "full_name": "Jang Yong-jun", + "id": "player-795355a2", + "injury": null, + "loan_listed": false, + "market_value": 1965000, + "match_name": "Ghost ", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 76, + "position": "Support", + "potential_base": 82, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-795355a2.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-2fc20e54", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 131000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 72, + "consistency": 79, + "discipline": 72, + "laning": 67, + "macro_play": 78, + "mechanics": 74, + "mental_resilience": 74, + "shotcalling": 78, + "teamfighting": 81 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "DN SOOpers Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "", + "team_name": "DN SOOpers Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-2166882d", + "team_name": "DN SOOPers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "", + "team_name": "DN SOOpers Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "DN SOOpers Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2004-08-20", + "fitness": 100, + "full_name": "Son Jeong-hwan", + "id": "player-5171726f", + "injury": null, + "loan_listed": false, + "market_value": 750000, + "match_name": "Quantum", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 75, + "position": "Support", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-5171726f.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-2166882d", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 50000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 70, + "consistency": 65, + "discipline": 71, + "laning": 61, + "macro_play": 71, + "mechanics": 69, + "mental_resilience": 71, + "shotcalling": 67, + "teamfighting": 68 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-15", + "date_of_birth": "2007-08-28", + "fitness": 100, + "full_name": "Jaehyuk", + "id": "player-4dc00b01", + "injury": null, + "loan_listed": false, + "market_value": 480000, + "match_name": "Kwon Jae-hyuk", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 68, + "position": "Top", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 32000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 74, + "consistency": 72, + "discipline": 79, + "laning": 63, + "macro_play": 75, + "mechanics": 73, + "mental_resilience": 74, + "shotcalling": 71, + "teamfighting": 75 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2022, + "team_id": "", + "team_name": "HANJIN BRION CHALLENGERS" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "", + "team_name": "HANJIN BRION CHALLENGERS" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "", + "team_name": "HANJIN BRION CHALLENGERS" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-bd98ddef", + "team_name": "HANJIN BRION" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "team-bd98ddef", + "team_name": "HANJIN BRION" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "KT Rolster Challengers" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "team-932ee946", + "team_name": "KT Rolster" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-01-07", + "fitness": 100, + "full_name": "Oh Dong-gyu", + "id": "player-e9eb37f4", + "injury": null, + "loan_listed": false, + "market_value": 570000, + "match_name": "Pollu", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 73, + "position": "Support", + "potential_base": 91, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 38000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 75, + "consistency": 67, + "discipline": 72, + "laning": 70, + "macro_play": 72, + "mechanics": 71, + "mental_resilience": 69, + "shotcalling": 61, + "teamfighting": 65 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-15", + "date_of_birth": "2006-01-30", + "fitness": 100, + "full_name": "Jeong Hwi-chan", + "id": "player-d57b30d9", + "injury": null, + "loan_listed": false, + "market_value": 1110000, + "match_name": "Hwichan", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 69, + "position": "Mid", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 74000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 71, + "consistency": 70, + "discipline": 75, + "laning": 72, + "macro_play": 77, + "mechanics": 72, + "mental_resilience": 72, + "shotcalling": 67, + "teamfighting": 68 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2028-11-18", + "date_of_birth": "2008-05-30", + "fitness": 100, + "full_name": "Choi Soo-hyuk", + "id": "player-ad3d0214", + "injury": null, + "loan_listed": false, + "market_value": 750000, + "match_name": "AkaJe", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 72, + "position": "Mid", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/1583c3ce.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 50000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 67, + "consistency": 77, + "discipline": 73, + "laning": 63, + "macro_play": 74, + "mechanics": 67, + "mental_resilience": 77, + "shotcalling": 70, + "teamfighting": 78 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-01-27", + "fitness": 100, + "full_name": "Lee Hyun-ho", + "id": "player-e4954aba", + "injury": null, + "loan_listed": false, + "market_value": 1605000, + "match_name": "Luon", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 72, + "position": "Support", + "potential_base": 81, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 107000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 67, + "consistency": 77, + "discipline": 76, + "laning": 67, + "macro_play": 71, + "mechanics": 69, + "mental_resilience": 77, + "shotcalling": 71, + "teamfighting": 75 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-01-14", + "fitness": 100, + "full_name": "Choi Gang-in", + "id": "player-44a29eef", + "injury": null, + "loan_listed": false, + "market_value": 975000, + "match_name": "Kangin", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 72, + "position": "Top", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 65000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 56, + "consistency": 51, + "discipline": 51, + "laning": 52, + "macro_play": 46, + "mechanics": 49, + "mental_resilience": 51, + "shotcalling": 50, + "teamfighting": 52 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-17", + "date_of_birth": "2004-10-01", + "fitness": 100, + "full_name": "Kwak Kyu-jun", + "id": "player-c0de5270", + "injury": null, + "loan_listed": false, + "market_value": 480000, + "match_name": "Enosh", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 51, + "position": "ADC", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 32000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 73, + "consistency": 69, + "discipline": 72, + "laning": 65, + "macro_play": 69, + "mechanics": 70, + "mental_resilience": 74, + "shotcalling": 74, + "teamfighting": 73 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-10-05", + "fitness": 100, + "full_name": "Byeon Jong-min", + "id": "player-6b2881e2", + "injury": null, + "loan_listed": false, + "market_value": 1065000, + "match_name": "Ripple", + "morale": 100, + "morale_core": {}, + "nationality": "Korea", + "natural_position": "Top", + "overall": 71, + "position": "Top", + "potential_base": 91, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 71000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 50, + "consistency": 55, + "discipline": 55, + "laning": 56, + "macro_play": 55, + "mechanics": 50, + "mental_resilience": 54, + "shotcalling": 44, + "teamfighting": 54 + }, + "birth_country": null, + "career": [ + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2021, + "team_id": "", + "team_name": "NS Esports Academy" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2022, + "team_id": "", + "team_name": "NS Esports Academy" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2023, + "team_id": "team-61bd92d5", + "team_name": "NS RedForce" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2024, + "team_id": "team-61bd92d5", + "team_name": "NS RedForce" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2025, + "team_id": "", + "team_name": "NS Esports Academy" + }, + { + "appearances": 0, + "assists": 0, + "deaths": 0, + "kills": 0, + "season": 2026, + "team_id": "", + "team_name": "KT Rolster Challengers" + } + ], + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2002-12-04", + "fitness": 100, + "full_name": "Lee Seung-bok", + "id": "player-588b56e3", + "injury": null, + "loan_listed": false, + "market_value": 660000, + "match_name": "Sylvie", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 53, + "position": "Jungle", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": "team-93532482", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 44000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 49, + "consistency": 48, + "discipline": 55, + "laning": 41, + "macro_play": 46, + "mechanics": 50, + "mental_resilience": 57, + "shotcalling": 44, + "teamfighting": 51 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2004-09-04", + "fitness": 100, + "full_name": "An Min-hyuk", + "id": "player-488ac0f5", + "injury": null, + "loan_listed": false, + "market_value": 750000, + "match_name": "DDahyuk", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 49, + "position": "Top", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": "team-63849e0d", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 50000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 65, + "consistency": 70, + "discipline": 73, + "laning": 65, + "macro_play": 69, + "mechanics": 72, + "mental_resilience": 75, + "shotcalling": 69, + "teamfighting": 66 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2007-01-02", + "fitness": 100, + "full_name": "Eom Ye-jun", + "id": "player-65ab088f", + "injury": null, + "loan_listed": false, + "market_value": 1785000, + "match_name": "Janus", + "morale": 100, + "morale_core": {}, + "nationality": "Korea", + "natural_position": "Top", + "overall": 69, + "position": "Top", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-65ab088f.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 119000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 84, + "consistency": 87, + "discipline": 81, + "laning": 81, + "macro_play": 81, + "mechanics": 83, + "mental_resilience": 77, + "shotcalling": 77, + "teamfighting": 80 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2028-11-17", + "date_of_birth": "2004-04-03", + "fitness": 100, + "full_name": "Ha Seung-min", + "id": "player-0bc1a016", + "injury": null, + "loan_listed": false, + "market_value": 1965000, + "match_name": "Vincenzo", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 81, + "position": "Jungle", + "potential_base": 90, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-0bc1a016.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 131000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 64, + "consistency": 61, + "discipline": 57, + "laning": 63, + "macro_play": 60, + "mechanics": 62, + "mental_resilience": 56, + "shotcalling": 55, + "teamfighting": 54 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-07-29", + "fitness": 100, + "full_name": "Kang Hyeon-wook", + "id": "player-c46f4677", + "injury": null, + "loan_listed": false, + "market_value": 1155000, + "match_name": "Winner ", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 59, + "position": "Jungle", + "potential_base": 75, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-c46f4677.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-1050caec", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 77000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 74, + "consistency": 62, + "discipline": 67, + "laning": 67, + "macro_play": 70, + "mechanics": 65, + "mental_resilience": 66, + "shotcalling": 62, + "teamfighting": 62 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-06-20", + "fitness": 100, + "full_name": "Lucy (Hyun Soo-hoon)", + "id": "player-e7f2c02a", + "injury": null, + "loan_listed": false, + "market_value": 1785000, + "match_name": "Hyun Soo-hoon", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 66, + "position": "ADC", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-e7f2c02a.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 119000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 71, + "consistency": 75, + "discipline": 70, + "laning": 74, + "macro_play": 77, + "mechanics": 70, + "mental_resilience": 75, + "shotcalling": 68, + "teamfighting": 74 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-16", + "date_of_birth": "2005-09-22", + "fitness": 100, + "full_name": "Dinai", + "id": "player-9e3adaee", + "injury": null, + "loan_listed": false, + "market_value": 300000, + "match_name": "Hwang Chi-hyeon", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 73, + "position": "Jungle", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 20000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 63, + "consistency": 67, + "discipline": 72, + "laning": 60, + "macro_play": 66, + "mechanics": 64, + "mental_resilience": 71, + "shotcalling": 64, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-01-19", + "fitness": 100, + "full_name": "Hong Jun-seok", + "id": "player-44eef224", + "injury": null, + "loan_listed": false, + "market_value": 1065000, + "match_name": "PlanB", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 67, + "position": "Support", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 71000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 82, + "consistency": 80, + "discipline": 78, + "laning": 81, + "macro_play": 77, + "mechanics": 78, + "mental_resilience": 74, + "shotcalling": 77, + "teamfighting": 70 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-05-27", + "fitness": 100, + "full_name": "Hwang Seo-hyeon", + "id": "player-197aa77f", + "injury": null, + "loan_listed": false, + "market_value": 975000, + "match_name": "Wayne", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 77, + "position": "ADC", + "potential_base": 87, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-197aa77f.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 65000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 82, + "consistency": 80, + "discipline": 76, + "laning": 84, + "macro_play": 77, + "mechanics": 78, + "mental_resilience": 79, + "shotcalling": 69, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-04-01", + "fitness": 100, + "full_name": "Kemish", + "id": "player-6f4ad3dc", + "injury": null, + "loan_listed": false, + "market_value": 480000, + "match_name": "Kim Si-hoon", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 77, + "position": "Mid", + "potential_base": 94, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 32000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 80, + "consistency": 68, + "discipline": 76, + "laning": 79, + "macro_play": 74, + "mechanics": 73, + "mental_resilience": 69, + "shotcalling": 67, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-05-21", + "fitness": 100, + "full_name": "Lee Seon-gyu", + "id": "player-0b29ec16", + "injury": null, + "loan_listed": false, + "market_value": 1785000, + "match_name": "MUDAI", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 73, + "position": "ADC", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 119000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 76, + "consistency": 78, + "discipline": 75, + "laning": 75, + "macro_play": 76, + "mechanics": 69, + "mental_resilience": 72, + "shotcalling": 69, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-17", + "date_of_birth": "2008-01-20", + "fitness": 100, + "full_name": "Lee Jeong-wook", + "id": "player-96361156", + "injury": null, + "loan_listed": false, + "market_value": 345000, + "match_name": "Cracker", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 74, + "position": "Mid", + "potential_base": 88, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-96361156.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 23000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 49, + "consistency": 53, + "discipline": 51, + "laning": 45, + "macro_play": 54, + "mechanics": 48, + "mental_resilience": 52, + "shotcalling": 47, + "teamfighting": 52 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2004-05-03", + "fitness": 100, + "full_name": "Kang Min-woo", + "id": "player-fe7218c5", + "injury": null, + "loan_listed": false, + "market_value": 300000, + "match_name": "Minous", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Support", + "overall": 50, + "position": "Support", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/01bf1a1e.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 20000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 69, + "consistency": 71, + "discipline": 71, + "laning": 69, + "macro_play": 67, + "mechanics": 68, + "mental_resilience": 68, + "shotcalling": 67, + "teamfighting": 67 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-17", + "date_of_birth": "2007-01-08", + "fitness": 100, + "full_name": "Hwang Hyeok-su", + "id": "player-fc8539aa", + "injury": null, + "loan_listed": false, + "market_value": 1560000, + "match_name": "Zephyr", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 69, + "position": "Jungle", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-fc8539aa.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 104000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 60, + "consistency": 59, + "discipline": 61, + "laning": 50, + "macro_play": 63, + "mechanics": 53, + "mental_resilience": 63, + "shotcalling": 55, + "teamfighting": 58 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-06-27", + "fitness": 100, + "full_name": "Go Gun", + "id": "player-f975b1c2", + "injury": null, + "loan_listed": false, + "market_value": 570000, + "match_name": "SIRIUSS", + "morale": 100, + "morale_core": {}, + "nationality": "South korea", + "natural_position": "Support", + "overall": 58, + "position": "Support", + "potential_base": 75, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 38000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 51, + "consistency": 57, + "discipline": 51, + "laning": 58, + "macro_play": 51, + "mechanics": 51, + "mental_resilience": 54, + "shotcalling": 52, + "teamfighting": 50 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2003-05-04", + "fitness": 100, + "full_name": "An Hyeon-seo", + "id": "player-cb1aab3c", + "injury": null, + "loan_listed": false, + "market_value": 435000, + "match_name": "FIESTA ", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 53, + "position": "Mid", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-cb1aab3c.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-56cebb24", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 29000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 79, + "consistency": 77, + "discipline": 80, + "laning": 77, + "macro_play": 78, + "mechanics": 74, + "mental_resilience": 76, + "shotcalling": 72, + "teamfighting": 71 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-03-09", + "fitness": 100, + "full_name": "Jeon Hyun-min", + "id": "player-a53175f5", + "injury": null, + "loan_listed": false, + "market_value": 300000, + "match_name": "Courage", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 76, + "position": "Jungle", + "potential_base": 91, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-a53175f5.webp", + "stats": { + "appearances": 0 + }, + "team_id": "team-63849e0d", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 20000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 62, + "consistency": 57, + "discipline": 60, + "laning": 56, + "macro_play": 63, + "mechanics": 58, + "mental_resilience": 68, + "shotcalling": 57, + "teamfighting": 59 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-15", + "date_of_birth": "2005-11-21", + "fitness": 100, + "full_name": "An Hyo-chan", + "id": "player-f99ab8de", + "injury": null, + "loan_listed": false, + "market_value": 705000, + "match_name": "Sero", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 60, + "position": "Top", + "potential_base": 80, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": "team-18ea04b7", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 47000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 77, + "consistency": 76, + "discipline": 76, + "laning": 72, + "macro_play": 75, + "mechanics": 77, + "mental_resilience": 78, + "shotcalling": 77, + "teamfighting": 73 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2027-11-16", + "date_of_birth": "2004-08-11", + "fitness": 100, + "full_name": "Han Jeong-heum", + "id": "player-bfd047a3", + "injury": null, + "loan_listed": false, + "market_value": 840000, + "match_name": "Lancer", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 76, + "position": "Top", + "potential_base": 87, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 56000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 61, + "consistency": 63, + "discipline": 68, + "laning": 55, + "macro_play": 62, + "mechanics": 63, + "mental_resilience": 62, + "shotcalling": 56, + "teamfighting": 61 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2028-11-17", + "date_of_birth": "1999-08-07", + "fitness": 100, + "full_name": "Park-Ji-ho", + "id": "player-7b51fd6f", + "injury": null, + "loan_listed": false, + "market_value": 1605000, + "match_name": "Panther", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Top", + "overall": 61, + "position": "Top", + "potential_base": 68, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/1d5c92b0.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 107000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 52, + "consistency": 48, + "discipline": 50, + "laning": 56, + "macro_play": 48, + "mechanics": 54, + "mental_resilience": 50, + "shotcalling": 45, + "teamfighting": 48 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2006-01-20", + "fitness": 100, + "full_name": "Kim Yu-jun", + "id": "player-456383a1", + "injury": null, + "loan_listed": false, + "market_value": 885000, + "match_name": "Cypher", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 50, + "position": "ADC", + "potential_base": 68, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": "team-63849e0d", + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 59000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 79, + "consistency": 75, + "discipline": 73, + "laning": 77, + "macro_play": 77, + "mechanics": 74, + "mental_resilience": 77, + "shotcalling": 70, + "teamfighting": 72 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2004-04-09", + "fitness": 100, + "full_name": "Moon Jeong-hwan", + "id": "player-cecf7c28", + "injury": null, + "loan_listed": false, + "market_value": 390000, + "match_name": "Guti", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Mid", + "overall": 75, + "position": "Mid", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": "/player-photos/player-cecf7c28.webp", + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 26000 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 76, + "consistency": 71, + "discipline": 74, + "laning": 74, + "macro_play": 70, + "mechanics": 73, + "mental_resilience": 74, + "shotcalling": 73, + "teamfighting": 68 + }, + "birth_country": null, + "champion_mastery": [], + "champion_training_target": null, + "champion_training_targets": [], + "condition": 100, + "contract_end": "2026-11-16", + "date_of_birth": "2005-01-01", + "fitness": 100, + "full_name": "Cho Hyung-jin", + "id": "player-1cf94d73", + "injury": null, + "loan_listed": false, + "market_value": 1110000, + "match_name": "OddEye", + "morale": 100, + "morale_core": {}, + "nationality": "South Korea", + "natural_position": "Adc", + "overall": 73, + "position": "ADC", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "stats": { + "appearances": 0 + }, + "team_id": null, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "wage": 74000 + } + ] +} \ No newline at end of file diff --git a/data/players/lck_players.json b/data/players/lck_players.json index b96c7c017..2711f08d9 100644 --- a/data/players/lck_players.json +++ b/data/players/lck_players.json @@ -11,43 +11,33 @@ "fitness": 100, "team_id": "team-2166882d", "condition": 100, - "full_name": "DuDu", + "full_name": "Lee Dong-ju ", "attributes": { - "laning": 86, "mechanics": 78, - "discipline": 82, + "laning": 86, + "teamfighting": 78, "macro_play": 78, "consistency": 82, "shotcalling": 83, - "teamfighting": 78, "champion_pool": 79, + "discipline": 82, "mental_resilience": 79 }, - "match_name": "Lee Dong-ju ", + "match_name": "DuDu", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-03-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559076156_gxbl29x4njh.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-03-01", + "stats": {}, + "profile_image_url": "/player-photos/6aea28ab1cf3e709.webp" }, { "id": "player-06b7d599", @@ -55,45 +45,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Delight", + "full_name": "Yoo Hwan-joong", "attributes": { - "laning": 89, "mechanics": 90, - "discipline": 88, + "laning": 89, + "teamfighting": 89, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 89, "champion_pool": 86, + "discipline": 88, "mental_resilience": 89 }, - "match_name": "Yoo Hwan-joong", + "match_name": "Delight", "loan_listed": false, "potential_base": 93, "transfer_listed": false, - "date_of_birth": "2002-10-12", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560181199_xddzg5my3p.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-861ba8cb", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2002-10-12", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/e7f3fc294d6f8d1b.webp" }, { "id": "player-127c2198", @@ -104,43 +80,33 @@ "fitness": 100, "team_id": "team-41bf07a6", "condition": 100, - "full_name": "ShowMaker", + "full_name": "Heo Su", "attributes": { - "laning": 86, "mechanics": 84, - "discipline": 87, + "laning": 86, + "teamfighting": 82, "macro_play": 87, "consistency": 86, "shotcalling": 87, - "teamfighting": 82, "champion_pool": 87, + "discipline": 87, "mental_resilience": 86 }, - "match_name": "Heo Su", + "match_name": "ShowMaker", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 87, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-07-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559671950_xtu7o2zq86g.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-07-22", + "stats": {}, + "profile_image_url": "/player-photos/0dd4e9ce941c018d.webp" }, { "id": "player-14e1d543", @@ -151,43 +117,33 @@ "fitness": 100, "team_id": "team-61bd92d5", "condition": 100, - "full_name": "Diable", + "full_name": "Nam Dae-geun", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 90, + "laning": 90, + "teamfighting": 90, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 87, + "discipline": 90, "mental_resilience": 90 }, - "match_name": "Nam Dae-geun", + "match_name": "Diable", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 102, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2007-10-17", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560888229_67icyvwkzif.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2007-10-17", + "stats": {}, + "profile_image_url": "/player-photos/55795fe491b8d178.webp" }, { "id": "player-179cc624", @@ -198,43 +154,33 @@ "fitness": 100, "team_id": "team-bd98ddef", "condition": 100, - "full_name": "Loki", + "full_name": "Lee Sang-min", "attributes": { - "laning": 85, "mechanics": 85, - "discipline": 88, + "laning": 85, + "teamfighting": 86, "macro_play": 86, "consistency": 85, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 85, + "discipline": 88, "mental_resilience": 87 }, - "match_name": "Lee Sang-min", + "match_name": "Loki", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-03-26", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560061086_0cjndvj96cai.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2005-03-26", + "stats": {}, + "profile_image_url": "/player-photos/98af0c893738b83d.webp" }, { "id": "player-1d980898", @@ -242,45 +188,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Keria", + "full_name": "Ryu Min-seok", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, - "match_name": "Ryu Min-seok", + "match_name": "Keria", "loan_listed": false, "potential_base": 95, "transfer_listed": false, - "date_of_birth": "2002-10-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560601910_zyohvbw47yo.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-2c4f82f9", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2002-10-14", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/705480dec54304fe.webp" }, { "id": "player-1e1699df", @@ -291,43 +223,33 @@ "fitness": 100, "team_id": "team-861ba8cb", "condition": 100, - "full_name": "Kanavi", + "full_name": "Seo Jin-hyeok", "attributes": { - "laning": 90, "mechanics": 89, - "discipline": 90, + "laning": 90, + "teamfighting": 89, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 89, "champion_pool": 86, + "discipline": 90, "mental_resilience": 90 }, - "match_name": "Seo Jin-hyeok", + "match_name": "Kanavi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-11-02", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560172993_vwjpkag7w3m.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-11-02", + "stats": {}, + "profile_image_url": "/player-photos/fd147d288a169767.webp" }, { "id": "player-1e6d5ba7", @@ -338,43 +260,33 @@ "fitness": 100, "team_id": "team-861ba8cb", "condition": 100, - "full_name": "Gumayusi", + "full_name": "Lee Min-hyeong", "attributes": { - "laning": 91, "mechanics": 90, - "discipline": 91, + "laning": 91, + "teamfighting": 90, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 90, "champion_pool": 89, + "discipline": 91, "mental_resilience": 91 }, - "match_name": "Lee Min-hyeong", + "match_name": "Gumayusi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-02-06", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560178835_6o35npd991s.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-02-06", + "stats": {}, + "profile_image_url": "/player-photos/30973f5b4b663adb.webp" }, { "id": "player-1ec551c6", @@ -387,41 +299,31 @@ "condition": 100, "full_name": "Lee Sang-hyeok", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, "match_name": "Faker", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1996-03-07", - "nationality": "KR", - "profile_image_url": "/player-photos/158918.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1996-03-07", + "stats": {}, + "profile_image_url": "/player-photos/158918.webp" }, { "id": "player-2d126cd3", @@ -432,43 +334,33 @@ "fitness": 100, "team_id": "team-3f714e0d", "condition": 100, - "full_name": "VicLa", + "full_name": "Lee Dae-kwang", "attributes": { - "laning": 83, "mechanics": 80, - "discipline": 87, + "laning": 83, + "teamfighting": 83, "macro_play": 81, "consistency": 81, "shotcalling": 86, - "teamfighting": 83, "champion_pool": 84, + "discipline": 87, "mental_resilience": 85 }, - "match_name": "Lee Dae-kwang", + "match_name": "VicLa", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 88, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-11-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558952358_mt586j9i6cn.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-11-27", + "stats": {}, + "profile_image_url": "/player-photos/70756680ca48ae5b.webp" }, { "id": "player-2f1ebdfa", @@ -479,43 +371,33 @@ "fitness": 100, "team_id": "team-2c4f82f9", "condition": 100, - "full_name": "PeyZ", + "full_name": "Kim Su-hwan", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 90, + "laning": 90, + "teamfighting": 90, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 87, + "discipline": 90, "mental_resilience": 90 }, - "match_name": "Kim Su-hwan", + "match_name": "PeyZ", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "2027-01-01", "market_value": 0, "potential_base": 99, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-12-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560614349_5fnz9xyp4k7.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2005-12-05", + "stats": {}, + "profile_image_url": "/player-photos/cd4447e3d00518bb.webp" }, { "id": "player-30abf1a3", @@ -526,43 +408,33 @@ "fitness": 100, "team_id": "team-dae32fa2", "condition": 100, - "full_name": "Kiin", + "full_name": "Kim Gi-in", "attributes": { - "laning": 92, "mechanics": 91, - "discipline": 91, + "laning": 92, + "teamfighting": 91, "macro_play": 90, "consistency": 91, "shotcalling": 89, - "teamfighting": 91, "champion_pool": 89, + "discipline": 91, "mental_resilience": 90 }, - "match_name": "Kim Gi-in", + "match_name": "Kiin", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-05-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559853485_jx20s1k5mpj.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1999-05-28", + "stats": {}, + "profile_image_url": "/player-photos/df753b0f5f171c73.webp" }, { "id": "player-37487a65", @@ -573,43 +445,33 @@ "fitness": 100, "team_id": "team-bd98ddef", "condition": 100, - "full_name": "Teddy", + "full_name": "Park Jin-seong", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 84, + "laning": 84, + "teamfighting": 85, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 83, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Park Jin-seong", + "match_name": "Teddy", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-03-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560069593_6t7nwzjntoo.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1998-03-15", + "stats": {}, + "profile_image_url": "/player-photos/e33c7e60a350535d.webp" }, { "id": "player-3d2f37f1", @@ -620,43 +482,33 @@ "fitness": 100, "team_id": "team-2c4f82f9", "condition": 100, - "full_name": "Doran", + "full_name": "Choi Hyeon-joon", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 90, + "laning": 90, + "teamfighting": 90, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 87, + "discipline": 90, "mental_resilience": 90 }, - "match_name": "Choi Hyeon-joon", + "match_name": "Doran", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-07-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560608629_5kiuk06iua5.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-07-22", + "stats": {}, + "profile_image_url": "/player-photos/a976441bd0726ada.webp" }, { "id": "player-427b1d6c", @@ -667,43 +519,33 @@ "fitness": 100, "team_id": "team-dae32fa2", "condition": 100, - "full_name": "Ruler", + "full_name": "Park Jae-hyuk ", "attributes": { - "laning": 90, "mechanics": 92, - "discipline": 89, + "laning": 90, + "teamfighting": 89, "macro_play": 90, "consistency": 90, "shotcalling": 89, - "teamfighting": 89, "champion_pool": 87, + "discipline": 89, "mental_resilience": 90 }, - "match_name": "Park Jae-hyuk ", + "match_name": "Ruler", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-12-29", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559845308_u4jduqm87jp.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1998-12-29", + "stats": {}, + "profile_image_url": "/player-photos/18193e172db412c3.webp" }, { "id": "player-46301dcb", @@ -714,43 +556,33 @@ "fitness": 100, "team_id": "team-3f714e0d", "condition": 100, - "full_name": "Clear", + "full_name": "Song Hyeon-min ", "attributes": { - "laning": 84, "mechanics": 83, - "discipline": 88, + "laning": 84, + "teamfighting": 81, "macro_play": 83, "consistency": 83, "shotcalling": 86, - "teamfighting": 81, "champion_pool": 85, + "discipline": 88, "mental_resilience": 84 }, - "match_name": "Song Hyeon-min ", + "match_name": "Clear", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 87, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-12-19", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558963712_r5j4m48csvn.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-12-19", + "stats": {}, + "profile_image_url": "/player-photos/adca0cecd5101bb2.webp" }, { "id": "player-4dc8d268", @@ -761,43 +593,33 @@ "fitness": 100, "team_id": "team-2166882d", "condition": 100, - "full_name": "deokdam", + "full_name": "Seo Dae-gil", "attributes": { - "laning": 81, "mechanics": 81, - "discipline": 88, + "laning": 81, + "teamfighting": 83, "macro_play": 81, "consistency": 81, "shotcalling": 86, - "teamfighting": 83, "champion_pool": 86, + "discipline": 88, "mental_resilience": 85 }, - "match_name": "Seo Dae-gil", + "match_name": "deokdam", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-02-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559109152_7wgrf8fo7xo.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-02-25", + "stats": {}, + "profile_image_url": "/player-photos/05b609ff56ca42a2.webp" }, { "id": "player-0e2bf9cf", @@ -805,72 +627,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "BNK FEARX Youth", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-3f714e0d", - "team_name": "BNK FEARX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-dae32fa2", "position": "Support", "condition": 100, - "full_name": "Duro", + "full_name": "Joo Min-kyu", "attributes": { - "laning": 66, "mechanics": 75, - "discipline": 83, + "laning": 66, + "teamfighting": 78, "macro_play": 80, "consistency": 78, "shotcalling": 76, - "teamfighting": 78, "champion_pool": 74, + "discipline": 83, "mental_resilience": 77 }, - "match_name": "Joo Min-kyu", + "match_name": "Duro", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -884,15 +660,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": null, + "profile_image_url": "/player-photos/abdcdfd583a4fcc5.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-54193ae5", @@ -903,43 +677,33 @@ "fitness": 100, "team_id": "team-3f714e0d", "condition": 100, - "full_name": "Daystar", + "full_name": "Yoo Ji-myeong", "attributes": { - "laning": 76, "mechanics": 80, - "discipline": 84, + "laning": 76, + "teamfighting": 78, "macro_play": 81, "consistency": 77, "shotcalling": 83, - "teamfighting": 78, "champion_pool": 78, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Yoo Ji-myeong", + "match_name": "Daystar", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 88, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-09-23", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558956934_j0npr49obk.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-09-23", + "stats": {}, + "profile_image_url": "/player-photos/b7c74ab8d3946a5f.webp" }, { "id": "player-577d4055", @@ -950,43 +714,33 @@ "fitness": 100, "team_id": "team-3f714e0d", "condition": 100, - "full_name": "Raptor", + "full_name": "Jeon Eo-jin ", "attributes": { - "laning": 83, "mechanics": 83, - "discipline": 88, + "laning": 83, + "teamfighting": 84, "macro_play": 81, "consistency": 81, "shotcalling": 86, - "teamfighting": 84, "champion_pool": 85, + "discipline": 88, "mental_resilience": 85 }, - "match_name": "Jeon Eo-jin ", + "match_name": "Raptor", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-11-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558960433_la2m7umwoqf.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-11-15", + "stats": {}, + "profile_image_url": "/player-photos/24ada60b843047a0.webp" }, { "id": "player-5a45f9df", @@ -997,43 +751,33 @@ "fitness": 100, "team_id": "team-41bf07a6", "condition": 100, - "full_name": "Siwoo", + "full_name": "Jeon Si-woo", "attributes": { - "laning": 88, "mechanics": 83, - "discipline": 87, + "laning": 88, + "teamfighting": 84, "macro_play": 88, "consistency": 88, "shotcalling": 86, - "teamfighting": 84, "champion_pool": 85, + "discipline": 87, "mental_resilience": 86 }, - "match_name": "Jeon Si-woo", + "match_name": "Siwoo", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2007-11-24", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559666839_6qxhxdnti4s.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2007-11-24", + "stats": {}, + "profile_image_url": "/player-photos/39d4c12e2f379343.webp" }, { "id": "player-5f2ecb60", @@ -1044,43 +788,33 @@ "fitness": 100, "team_id": "team-bc4c40ec", "condition": 100, - "full_name": "LazyFeel", + "full_name": "Trần Bảo Minh", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 86, + "laning": 84, + "teamfighting": 84, "macro_play": 84, "consistency": 84, "shotcalling": 78, - "teamfighting": 84, "champion_pool": 83, + "discipline": 86, "mental_resilience": 86 }, - "match_name": "Trần Bảo Minh", + "match_name": "LazyFeel", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2007-03-19", - "nationality": "VN", - "profile_image_url": "/player-photos/1779560318468_twy2978dq4.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2007-03-19", + "stats": {}, + "profile_image_url": "/player-photos/3772208d9b040703.webp" }, { "id": "player-616c41ff", @@ -1091,43 +825,33 @@ "fitness": 100, "team_id": "team-861ba8cb", "condition": 100, - "full_name": "Zeka", + "full_name": "Kim Geon-woo", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 86, + "laning": 90, + "teamfighting": 90, "macro_play": 89, "consistency": 90, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 87, + "discipline": 86, "mental_resilience": 88 }, - "match_name": "Kim Geon-woo", + "match_name": "Zeka", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-11-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560176521_yt0uk0brg5g.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-11-28", + "stats": {}, + "profile_image_url": "/player-photos/82e09378cf6f4a4e.webp" }, { "id": "player-63a4a5a0", @@ -1138,43 +862,33 @@ "fitness": 100, "team_id": "team-bc4c40ec", "condition": 100, - "full_name": "Willer", + "full_name": "Kim Jeong-hyeon", "attributes": { - "laning": 85, "mechanics": 85, - "discipline": 85, + "laning": 85, + "teamfighting": 85, "macro_play": 85, "consistency": 84, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 83, + "discipline": 85, "mental_resilience": 84 }, - "match_name": "Kim Jeong-hyeon", + "match_name": "Willer", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 86, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-04-24", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560382615_g8w7btxp0xo.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-04-24", + "stats": {}, + "profile_image_url": "/player-photos/e0692560814f2414.webp" }, { "id": "player-70c75b22", @@ -1182,45 +896,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Kellin", + "full_name": "Kim Hyeong-gyu ", "attributes": { - "laning": 83, "mechanics": 85, - "discipline": 83, + "laning": 83, + "teamfighting": 85, "macro_play": 81, "consistency": 83, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 85, + "discipline": 83, "mental_resilience": 83 }, - "match_name": "Kim Hyeong-gyu ", + "match_name": "Kellin", "loan_listed": false, "potential_base": 85, "transfer_listed": false, - "date_of_birth": "2001-02-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558967262_qg1phbgpn8j.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-3f714e0d", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2001-02-01", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/f677614031560982.webp" }, { "id": "player-8184cefe", @@ -1231,43 +931,33 @@ "fitness": 100, "team_id": "team-861ba8cb", "condition": 100, - "full_name": "Zeus", + "full_name": "Choi Woo-je", "attributes": { - "laning": 91, "mechanics": 92, - "discipline": 90, + "laning": 91, + "teamfighting": 92, "macro_play": 91, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 90, "mental_resilience": 91 }, - "match_name": "Choi Woo-je", + "match_name": "Zeus", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-01-31", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560168417_0jdlwf3g4crt.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-01-31", + "stats": {}, + "profile_image_url": "/player-photos/11cc79fd804ba6fa.webp" }, { "id": "player-85f85dd0", @@ -1275,45 +965,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Career", + "full_name": "Oh Hyeong-seok ", "attributes": { - "laning": 85, "mechanics": 85, - "discipline": 83, + "laning": 85, + "teamfighting": 86, "macro_play": 85, "consistency": 85, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 86, + "discipline": 83, "mental_resilience": 85 }, - "match_name": "Oh Hyeong-seok ", + "match_name": "Career", "loan_listed": false, "potential_base": 92, "transfer_listed": false, - "date_of_birth": "2004-08-29", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559663784_z34og4e6l9.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-41bf07a6", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2004-08-29", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/2a2fd4f4ac8c80c3.webp" }, { "id": "player-901e46d3", @@ -1321,45 +997,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Life", + "full_name": "Kim Jeong-min", "attributes": { - "laning": 83, "mechanics": 79, - "discipline": 89, + "laning": 83, + "teamfighting": 79, "macro_play": 79, "consistency": 81, "shotcalling": 86, - "teamfighting": 79, "champion_pool": 82, + "discipline": 89, "mental_resilience": 85 }, - "match_name": "Kim Jeong-min", + "match_name": "Life", "loan_listed": false, "potential_base": 83, "transfer_listed": false, - "date_of_birth": "2000-07-07", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559112791_by5fgywxl56.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-2166882d", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2000-07-07", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/81d5038f8bcf10c3.webp" }, { "id": "player-93d5816c", @@ -1370,43 +1032,33 @@ "fitness": 100, "team_id": "team-2166882d", "condition": 100, - "full_name": "Clozer", + "full_name": "Lee Ju-hyeon", "attributes": { - "laning": 81, "mechanics": 78, - "discipline": 81, + "laning": 81, + "teamfighting": 80, "macro_play": 78, "consistency": 78, "shotcalling": 83, - "teamfighting": 80, "champion_pool": 82, + "discipline": 81, "mental_resilience": 81 }, - "match_name": "Lee Ju-hyeon", + "match_name": "Clozer", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-07-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559105610_vdwlwbvktak.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-07-27", + "stats": {}, + "profile_image_url": "/player-photos/baa0814791fcdfa0.webp" }, { "id": "player-95cdb7ba", @@ -1417,43 +1069,33 @@ "fitness": 100, "team_id": "team-bc4c40ec", "condition": 100, - "full_name": "Ucal", + "full_name": "Son Woo-hyeon", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 84, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 82, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Son Woo-hyeon", + "match_name": "Ucal", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-01-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560377451_13v31g4t8q2.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-01-30", + "stats": {}, + "profile_image_url": "/player-photos/a7f16b0b8668b741.webp" }, { "id": "player-58e97388", @@ -1461,117 +1103,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "GRIFFIN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "GRIFFIN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "GRIFFIN", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Afreeca Freecs", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-dae32fa2", - "team_name": "Gen.G Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-61bd92d5", "position": "Support", "condition": 100, - "full_name": "Lehends", + "full_name": "Son Si-woo", "attributes": { - "laning": 67, "mechanics": 77, - "discipline": 77, + "laning": 67, + "teamfighting": 82, "macro_play": 80, "consistency": 77, "shotcalling": 81, - "teamfighting": 82, "champion_pool": 69, + "discipline": 77, "mental_resilience": 82 }, - "match_name": "Son Si-woo", + "match_name": "Lehends", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1585,15 +1136,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1779560903021_y0bh8svz1wr.webp", + "profile_image_url": "/player-photos/621817fa.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-a428b6f0", @@ -1604,43 +1153,33 @@ "fitness": 100, "team_id": "team-932ee946", "condition": 100, - "full_name": "Cuzz", + "full_name": "Moon Woo-chan", "attributes": { - "laning": 89, "mechanics": 90, - "discipline": 89, + "laning": 89, + "teamfighting": 88, "macro_play": 89, "consistency": 90, "shotcalling": 87, - "teamfighting": 88, "champion_pool": 86, + "discipline": 89, "mental_resilience": 88 }, - "match_name": "Moon Woo-chan", + "match_name": "Cuzz", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 89, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-10-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560719161_ju8dkv76jzh.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1999-10-30", + "stats": {}, + "profile_image_url": "/player-photos/ddfbc484de8ed18a.webp" }, { "id": "player-ac9f33f8", @@ -1653,41 +1192,31 @@ "condition": 100, "full_name": "Lee Sang-hyeok", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, "match_name": "Oner", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "2027-01-01", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-12-24", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560612016_fl6bb0fawu8.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-12-24", + "stats": {}, + "profile_image_url": "/player-photos/d26c84b57d88ef29.webp" }, { "id": "player-ae28f241", @@ -1695,45 +1224,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Namgung", + "full_name": "Namgung Seong-hoon", "attributes": { - "laning": 84, "mechanics": 82, - "discipline": 85, + "laning": 84, + "teamfighting": 82, "macro_play": 85, "consistency": 83, "shotcalling": 83, - "teamfighting": 82, "champion_pool": 82, + "discipline": 85, "mental_resilience": 84 }, - "match_name": "Namgung Seong-hoon", + "match_name": "Namgung", "loan_listed": false, "potential_base": 90, "transfer_listed": false, - "date_of_birth": "2003-10-04", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560050134_dj8cajr19f.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-bd98ddef", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2003-10-04", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/89c93ab510a7f5f7.webp" }, { "id": "player-b6ed8891", @@ -1744,43 +1259,33 @@ "fitness": 100, "team_id": "team-bd98ddef", "condition": 100, - "full_name": "Roamer", + "full_name": "Jo Woo-jin", "attributes": { - "laning": 82, "mechanics": 85, - "discipline": 84, + "laning": 82, + "teamfighting": 82, "macro_play": 84, "consistency": 82, "shotcalling": 83, - "teamfighting": 82, "champion_pool": 81, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Jo Woo-jin", + "match_name": "Roamer", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 89, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-08-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560066503_bmkhnywto7a.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-08-03", + "stats": {}, + "profile_image_url": "/player-photos/e4a97031decc1962.webp" }, { "id": "player-c1ede5ad", @@ -1791,43 +1296,33 @@ "fitness": 100, "team_id": "team-932ee946", "condition": 100, - "full_name": "Bdd", + "full_name": "Gwak Bo-seong", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 91, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 88, + "discipline": 91, "mental_resilience": 91 }, - "match_name": "Gwak Bo-seong", + "match_name": "Bdd", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-03-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560721441_i8mfq82w7xb.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1999-03-01", + "stats": {}, + "profile_image_url": "/player-photos/729f76d6294cc37f.webp" }, { "id": "player-c5877188", @@ -1838,43 +1333,33 @@ "fitness": 100, "team_id": "team-932ee946", "condition": 100, - "full_name": "Aiming", + "full_name": "Kim Ha-ram", "attributes": { - "laning": 89, "mechanics": 90, - "discipline": 89, + "laning": 89, + "teamfighting": 90, "macro_play": 89, "consistency": 89, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 86, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Kim Ha-ram", + "match_name": "Aiming", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 90, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-07-20", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560723655_zlwwp67x4ts.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-07-20", + "stats": {}, + "profile_image_url": "/player-photos/8450852e837e29ed.webp" }, { "id": "player-c60dfae1", @@ -1885,43 +1370,33 @@ "fitness": 100, "team_id": "team-bd98ddef", "condition": 100, - "full_name": "GIDEON", + "full_name": "Kim Min-seong ", "attributes": { - "laning": 84, "mechanics": 86, - "discipline": 82, + "laning": 84, + "teamfighting": 83, "macro_play": 85, "consistency": 84, "shotcalling": 83, - "teamfighting": 83, "champion_pool": 83, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Kim Min-seong ", + "match_name": "GIDEON", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 87, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-08-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560056300_7wjcf4dadm.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-08-14", + "stats": {}, + "profile_image_url": "/player-photos/d232d6222282785b.webp" }, { "id": "player-c6fcb8aa", @@ -1932,43 +1407,33 @@ "fitness": 100, "team_id": "team-61bd92d5", "condition": 100, - "full_name": "Sponge", + "full_name": "Bae Young-jun", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 86, + "laning": 86, + "teamfighting": 86, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 83, + "discipline": 86, "mental_resilience": 85 }, - "match_name": "Bae Young-jun", + "match_name": "Sponge", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-07-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560894397_jo1jgwlv0u.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-07-25", + "stats": {}, + "profile_image_url": "/player-photos/0a5300307b697541.webp" }, { "id": "player-cd76f830", @@ -1979,43 +1444,33 @@ "fitness": 100, "team_id": "team-bc4c40ec", "condition": 100, - "full_name": "Rich", + "full_name": "Lee Jae-won", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 85, + "laning": 84, + "teamfighting": 85, "macro_play": 85, "consistency": 85, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 83, + "discipline": 85, "mental_resilience": 84 }, - "match_name": "Lee Jae-won", + "match_name": "Rich", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-02-16", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560387427_57gs9kc2p5x.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1998-02-16", + "stats": {}, + "profile_image_url": "/player-photos/8eea74582e8ac12b.webp" }, { "id": "player-ce51bf76", @@ -2026,43 +1481,33 @@ "fitness": 100, "team_id": "team-3f714e0d", "condition": 100, - "full_name": "Taeyoon", + "full_name": "Kim Tae-yoon ", "attributes": { - "laning": 85, "mechanics": 84, - "discipline": 78, + "laning": 85, + "teamfighting": 86, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 79, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Kim Tae-yoon ", + "match_name": "Taeyoon", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 88, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-06-02", - "nationality": "KR", - "profile_image_url": "/player-photos/1779558949072_76mzgmasf0n.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-06-02", + "stats": {}, + "profile_image_url": "/player-photos/a2b8ad6a10237155.webp" }, { "id": "player-db1d9c44", @@ -2073,43 +1518,33 @@ "fitness": 100, "team_id": "team-dae32fa2", "condition": 100, - "full_name": "Canyon", + "full_name": "Kim Geon-bu", "attributes": { - "laning": 89, "mechanics": 91, - "discipline": 89, + "laning": 89, + "teamfighting": 91, "macro_play": 92, "consistency": 90, "shotcalling": 89, - "teamfighting": 91, "champion_pool": 89, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Kim Geon-bu", + "match_name": "Canyon", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-06-18", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559851165_071o1zfxa5jv.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-06-18", + "stats": {}, + "profile_image_url": "/player-photos/b6c158f1a2812c81.webp" }, { "id": "player-db46075b", @@ -2120,43 +1555,33 @@ "fitness": 100, "team_id": "team-61bd92d5", "condition": 100, - "full_name": "Kingen", + "full_name": "Hwang Seong-hoon", "attributes": { - "laning": 89, "mechanics": 89, - "discipline": 89, + "laning": 89, + "teamfighting": 89, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 89, "champion_pool": 86, + "discipline": 89, "mental_resilience": 88 }, - "match_name": "Hwang Seong-hoon", + "match_name": "Kingen", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 89, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-03-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560897803_w1lyrpkqnx9.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-03-11", + "stats": {}, + "profile_image_url": "/player-photos/18b13b4bd10bd976.webp" }, { "id": "player-ddbd1298", @@ -2167,43 +1592,33 @@ "fitness": 100, "team_id": "team-41bf07a6", "condition": 100, - "full_name": "Lucid", + "full_name": "Choi Yong-hyeok", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 85, + "laning": 86, + "teamfighting": 86, "macro_play": 85, "consistency": 86, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 86, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Choi Yong-hyeok", + "match_name": "Lucid", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-01-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559669353_a89sykvc3tu.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2005-01-28", + "stats": {}, + "profile_image_url": "/player-photos/58f9cc03dd73ac10.webp" }, { "id": "player-debddbbd", @@ -2211,45 +1626,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Andil", + "full_name": "Moon Gwan-bin", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 86, + "laning": 84, + "teamfighting": 84, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 84, "champion_pool": 83, + "discipline": 86, "mental_resilience": 85 }, - "match_name": "Moon Gwan-bin", + "match_name": "Andil", "loan_listed": false, "potential_base": 86, "transfer_listed": false, - "date_of_birth": "2002-10-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560313572_9amz4a7xf.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-bc4c40ec", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2002-10-05", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/bac57a9716a4ad6c.webp" }, { "id": "player-dff93660", @@ -2260,43 +1661,33 @@ "fitness": 100, "team_id": "team-dae32fa2", "condition": 100, - "full_name": "Chovy", + "full_name": "Jeong Ji-hoon ", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 88, + "laning": 92, + "teamfighting": 91, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 91, "champion_pool": 87, + "discipline": 88, "mental_resilience": 89 }, - "match_name": "Jeong Ji-hoon ", + "match_name": "Chovy", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-03-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559848033_m3p5jumsj3.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-03-03", + "stats": {}, + "profile_image_url": "/player-photos/3887a1cdb40d59fe.webp" }, { "id": "player-edae3463", @@ -2307,43 +1698,33 @@ "fitness": 100, "team_id": "team-61bd92d5", "condition": 100, - "full_name": "Scout", + "full_name": "Lee Ye-chan", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 90, + "laning": 90, + "teamfighting": 90, "macro_play": 90, "consistency": 90, "shotcalling": 87, - "teamfighting": 90, "champion_pool": 87, + "discipline": 90, "mental_resilience": 90 }, - "match_name": "Lee Ye-chan", + "match_name": "Scout", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 90, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-03-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560890719_k4m2474tme.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1998-03-14", + "stats": {}, + "profile_image_url": "/player-photos/204c4ddf5b821c33.webp" }, { "id": "player-f3ee08ea", @@ -2354,43 +1735,33 @@ "fitness": 100, "team_id": "team-932ee946", "condition": 100, - "full_name": "PerfecT", + "full_name": "Lee Seung-min ", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 88, + "laning": 90, + "teamfighting": 89, "macro_play": 89, "consistency": 90, "shotcalling": 87, - "teamfighting": 89, "champion_pool": 86, + "discipline": 88, "mental_resilience": 88 }, - "match_name": "Lee Seung-min ", + "match_name": "PerfecT", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-17", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560717003_38ojha8o8lh.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-05-17", + "stats": {}, + "profile_image_url": "/player-photos/16d77ce9b7217d95.webp" }, { "id": "player-f79e59c9", @@ -2401,43 +1772,33 @@ "fitness": 100, "team_id": "team-2166882d", "condition": 100, - "full_name": "Pyosik", + "full_name": "Hong Chang-hyeon", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 88, + "laning": 82, + "teamfighting": 86, "macro_play": 84, "consistency": 82, "shotcalling": 87, - "teamfighting": 86, "champion_pool": 83, + "discipline": 88, "mental_resilience": 85 }, - "match_name": "Hong Chang-hyeon", + "match_name": "Pyosik", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-03-12", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559094533_sejgkqjujiq.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-03-12", + "stats": {}, + "profile_image_url": "/player-photos/843ccd4efa577572.webp" }, { "id": "player-f89ecf22", @@ -2448,43 +1809,33 @@ "fitness": 100, "team_id": "team-bd98ddef", "condition": 100, - "full_name": "Casting", + "full_name": "Shin Min-je", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 83, + "laning": 84, + "teamfighting": 83, "macro_play": 85, "consistency": 84, "shotcalling": 83, - "teamfighting": 83, "champion_pool": 82, + "discipline": 83, "mental_resilience": 82 }, - "match_name": "Shin Min-je", + "match_name": "Casting", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 90, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-10-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560046870_dkfsvujyvae.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-10-30", + "stats": {}, + "profile_image_url": "/player-photos/77e7e11fa06f7dff.webp" }, { "id": "player-fd5a80e4", @@ -2492,45 +1843,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Effort", + "full_name": "Lee Shin Ki-hyeok", "attributes": { - "laning": 85, "mechanics": 86, - "discipline": 84, + "laning": 85, + "teamfighting": 86, "macro_play": 86, "consistency": 85, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 82, + "discipline": 84, "mental_resilience": 85 }, - "match_name": "Lee Shin Ki-hyeok", + "match_name": "Effort", "loan_listed": false, "potential_base": 85, "transfer_listed": false, - "date_of_birth": "2000-11-23", - "nationality": "KR", - "profile_image_url": "/player-photos/1779560725525_58a2vr7gcb.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-932ee946", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2000-11-23", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/82f37a241b617e67.webp" }, { "id": "player-fdba11a1", @@ -2541,43 +1878,33 @@ "fitness": 100, "team_id": "team-41bf07a6", "condition": 100, - "full_name": "Smash", + "full_name": "Shin Geum-jae", "attributes": { - "laning": 87, "mechanics": 85, - "discipline": 86, + "laning": 87, + "teamfighting": 81, "macro_play": 87, "consistency": 87, "shotcalling": 86, - "teamfighting": 81, "champion_pool": 86, + "discipline": 86, "mental_resilience": 86 }, - "match_name": "Shin Geum-jae", + "match_name": "Smash", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-06-20", - "nationality": "KR", - "profile_image_url": "/player-photos/1779559675254_ub6mwk1basg.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2006-06-20", + "stats": {}, + "profile_image_url": "/player-photos/fc3e33f21b4ad27a.webp" } ] -} +} \ No newline at end of file diff --git a/data/players/lckcl_players.json b/data/players/lckcl_players.json index 5547eed4a..509023b5f 100644 --- a/data/players/lckcl_players.json +++ b/data/players/lckcl_players.json @@ -3,1638 +3,2378 @@ "description": "LCKCL - 2026 Season", "players": [ { - "id": "player-9a95ae46", - "match_name": "Quantum", - "full_name": "Quantum", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 78, - "mechanics": 78, - "discipline": 84, - "macro_play": 78, - "consistency": 78, - "shotcalling": 83, - "teamfighting": 81, - "champion_pool": 79, - "mental_resilience": 81 + "id": "player-fd1221fe", + "wage": 83000, + "stats": { + "appearances": 0 }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], + "position": "Support", + "condition": 100, + "full_name": "Jeong Yoon-su", + "attributes": { + "mechanics": 76, + "laning": 66, + "teamfighting": 81, + "macro_play": 79, + "consistency": 78, + "shotcalling": 81, + "champion_pool": 70, + "discipline": 82, + "mental_resilience": 79 + }, + "match_name": "Peter", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 1245000, + "birth_country": null, + "date_of_birth": "2003-04-28", + "potential_base": 87, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 86, + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/34da141b2fcced57.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-eddde7b7", - "match_name": "Winner", - "full_name": "Winner", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-0676970a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hanjin-brion-challengers", + "condition": 100, + "full_name": "Oh Yeong-woong", "attributes": { - "laning": 75, "mechanics": 75, - "discipline": 74, + "laning": 74, + "teamfighting": 75, "macro_play": 75, "consistency": 74, "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 73 + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Tempester", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2005-07-06", + "stats": {}, + "profile_image_url": "/player-photos/52952cb95de5aa59.webp" }, { - "id": "player-a947fb1e", - "match_name": "Jiwoo", - "full_name": "Jiwoo", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 73, - "mental_resilience": 75 - }, - "condition": 100, + "id": "player-1867a3bb", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Peter", + "attributes": { + "mechanics": 84, + "laning": 85, + "teamfighting": 84, + "macro_play": 86, + "consistency": 82, + "shotcalling": 87, + "champion_pool": 83, + "discipline": 88, + "mental_resilience": 85 + }, + "match_name": "Peter", + "loan_listed": false, + "potential_base": 89, + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-dn-soopers-challengers", + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", "stats": {}, + "profile_image_url": "/player-photos/83d22a39b10c50e4.webp" + }, + { + "id": "player-79717137", + "wage": 125000, + "stats": { + "appearances": 0 + }, "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "position": "Top", + "condition": 100, + "full_name": "Lee Min-hoi", + "attributes": { + "mechanics": 69, + "laning": 66, + "teamfighting": 68, + "macro_play": 65, + "consistency": 70, + "shotcalling": 70, + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 69 + }, + "match_name": "Frog", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 1875000, + "birth_country": null, + "date_of_birth": "2005-06-30", + "potential_base": 88, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/5cc0d74328230c14.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-57129936", - "match_name": "Dinai", - "full_name": "Dinai", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-217fd253", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dplus-kia-challengers", + "condition": 100, + "full_name": "Hwang Seo-hyeon", "attributes": { + "mechanics": 75, "laning": 73, - "mechanics": 72, - "discipline": 75, - "macro_play": 72, - "consistency": 72, + "teamfighting": 70, + "macro_play": 73, + "consistency": 73, "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, + "champion_pool": 72, + "discipline": 68, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Wayne ", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2003-05-27", "stats": {}, + "profile_image_url": "/player-photos/89d28eeab92ad6d4.webp" + }, + { + "id": "player-f9ead664", + "wage": 26000, + "stats": { + "appearances": 0 + }, "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "position": "ADC", + "condition": 100, + "full_name": "Jung Ji-woo", + "attributes": { + "mechanics": 75, + "laning": 77, + "teamfighting": 68, + "macro_play": 70, + "consistency": 70, + "shotcalling": 68, + "champion_pool": 79, + "discipline": 78, + "mental_resilience": 74 + }, + "match_name": "Jiwoo", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2028-11-16", + "market_value": 390000, + "birth_country": null, + "date_of_birth": "2004-03-20", + "potential_base": 84, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/0123667e.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-9010ea3a", - "match_name": "FIESTA", - "full_name": "FIESTA", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 74, - "macro_play": 73, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 71, - "mental_resilience": 72 + "id": "player-722557b3", + "wage": 125000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-hle-challengers", + "position": "Support", + "condition": 100, + "full_name": "Park Gyu-yong", + "attributes": { + "mechanics": 59, + "laning": 64, + "teamfighting": 72, + "macro_play": 66, + "consistency": 64, + "shotcalling": 70, + "champion_pool": 61, + "discipline": 66, + "mental_resilience": 70 + }, + "match_name": "Bluffing", + "loan_listed": false, + "morale_core": {}, + "nationality": "South korea", + "contract_end": "2028-11-17", + "market_value": 1875000, + "birth_country": null, + "date_of_birth": "2008-12-07", + "potential_base": 84, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/09ed512e.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-3ea37d37", - "match_name": "Sylvie", - "full_name": "Sylvie", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-29be9689", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Oh Dong-gyu", "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 74, - "macro_play": 76, - "consistency": 76, + "mechanics": 74, + "laning": 74, + "teamfighting": 73, + "macro_play": 74, + "consistency": 75, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, - "mental_resilience": 74 + "discipline": 76, + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Pollu", + "contract_end": "2026-11-16", + "position": "Support", "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2006-01-07", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/77f2916a06265b46.webp" }, { - "id": "player-c24b484e", - "match_name": "Painter", - "full_name": "Painter", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2e567bef", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hanjin-brion-challengers", + "condition": 100, + "full_name": "An Min-hyuk", "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, + "mechanics": 72, + "laning": 73, + "teamfighting": 74, + "macro_play": 72, + "consistency": 72, "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 76 + "champion_pool": 72, + "discipline": 76, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "DDahyuk", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2004-09-04", + "stats": {}, + "profile_image_url": "/player-photos/c38a30f715e9baf8.webp" }, { - "id": "player-acd86dd5", - "match_name": "Jackal", - "full_name": "Jackal", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2f023229", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dplus-kia-challengers", + "condition": 100, + "full_name": "Kwon Jae-hyuk", "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 76, - "macro_play": 75, - "consistency": 75, + "laning": 74, + "teamfighting": 73, + "macro_play": 74, + "consistency": 74, "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 72, + "champion_pool": 73, + "discipline": 72, "mental_resilience": 74 }, - "condition": 100, + "match_name": "Jaehyuk", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2007-09-28", + "stats": {}, + "profile_image_url": "/player-photos/fcc38b68afcd88ec.webp" + }, + { + "id": "player-3c60962d", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lck-cl-hle-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Cracker", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 74, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 76, + "mental_resilience": 74 + }, + "match_name": "Cracker", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-90cbabea", - "match_name": "Lancer", - "full_name": "Lancer", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3ea37d37", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kt-rolster-challengers", + "condition": 100, + "full_name": "Lee Seung-bok", "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 74, - "macro_play": 73, - "consistency": 72, + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, "shotcalling": 73, - "teamfighting": 74, "champion_pool": 73, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, + "match_name": "Sylvie", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 82, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2002-12-04", + "stats": {}, + "profile_image_url": "/player-photos/d6582198a6510b8e.webp" + }, + { + "career": [], + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "id": "player-44d6cbd6", + "match_name": "Guardian", + "full_name": "Seong Tae-hyo", + "position": "Top", + "team_id": "lck-cl-t1-esports-academy", + "nationality": "", + "date_of_birth": "2004-07-16", "wage": 0, "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/27271c86ae0d3f06.webp" + }, + { + "id": "player-f28913fb", + "wage": 50000, + "stats": { + "appearances": 0 + }, "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-ns-esports-academy", + "position": "Mid", + "condition": 100, + "full_name": "Song Kyeong-jin", + "attributes": { + "mechanics": 75, + "laning": 80, + "teamfighting": 75, + "macro_play": 80, + "consistency": 82, + "shotcalling": 73, + "champion_pool": 78, + "discipline": 79, + "mental_resilience": 75 + }, + "match_name": "SeTab", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 750000, + "birth_country": null, + "date_of_birth": "2004-10-13", + "potential_base": 87, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/035c5fe5.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-2e567bef", - "match_name": "DDahyuk", - "full_name": "DDahyuk", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 76, - "macro_play": 72, - "consistency": 72, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 72, - "mental_resilience": 72 + "id": "player-e9962c33", + "wage": 113000, + "stats": { + "appearances": 0 }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-ns-esports-academy", + "position": "Support", + "condition": 100, + "full_name": "Son Min-woo", + "attributes": { + "mechanics": 77, + "laning": 72, + "teamfighting": 78, + "macro_play": 81, + "consistency": 75, + "shotcalling": 77, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Pleata", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 1695000, + "birth_country": null, + "date_of_birth": "2003-03-28", + "potential_base": 87, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/97a133ddc746bd4d.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-2f023229", - "match_name": "Jaehyuk", - "full_name": "Jaehyuk", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-524d7dae", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Go Gun", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, + "mechanics": 70, + "laning": 71, + "teamfighting": 73, "macro_play": 74, - "consistency": 74, + "consistency": 68, "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 73, - "mental_resilience": 74 + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "traits": [], - "contract_end": null, + "match_name": "SIRIUSS", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-gen-g-global-academy", + "nationality": "KR", + "date_of_birth": "2006-06-27", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/15ffac04f6fd2eef.webp" }, { - "id": "player-b398a5ac", - "match_name": "Panther", - "full_name": "Panther", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 76, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 73, - "mental_resilience": 74 + "id": "player-b78c5ed2", + "wage": 47000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-ns-esports-academy", + "position": "Jungle", + "condition": 100, + "full_name": "Kim Joon-hyeong", + "attributes": { + "mechanics": 73, + "laning": 75, + "teamfighting": 64, + "macro_play": 70, + "consistency": 69, + "shotcalling": 65, + "champion_pool": 64, + "discipline": 70, + "mental_resilience": 64 + }, + "match_name": "Mihawk", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2027-11-15", + "market_value": 705000, + "birth_country": null, + "date_of_birth": "2009-12-11", + "potential_base": 90, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/18afab7dc5233a33.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-e254c8aa", - "match_name": "Kangin", - "full_name": "Kangin", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-57129936", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hanjin-brion-challengers", + "condition": 100, + "full_name": "Hwang Chi-hyeon", "attributes": { - "laning": 76, - "mechanics": 70, - "discipline": 76, + "mechanics": 72, + "laning": 73, + "teamfighting": 73, "macro_play": 72, - "consistency": 75, + "consistency": 72, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 71, + "discipline": 75, "mental_resilience": 72 }, - "condition": 100, + "match_name": "Dinai", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2005-09-22", + "stats": {}, + "profile_image_url": "/player-photos/f3237b2ff22537f8.webp" + }, + { + "id": "player-61aae261", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Kim Dong-hyeon", + "attributes": { + "mechanics": 76, + "laning": 70, + "teamfighting": 75, + "macro_play": 70, + "consistency": 75, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 67, + "mental_resilience": 70 + }, + "match_name": "Loopy", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-dplus-kia-challengers", + "nationality": "KR", + "date_of_birth": "2004-06-09", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/e14989f98e1b7c0e.webp" }, { - "id": "player-b7172b29", - "match_name": "Ripple", - "full_name": "Ripple", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-62fd57d5", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lee Hyun-ho", "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 76, - "macro_play": 72, - "consistency": 72, + "mechanics": 67, + "laning": 66, + "teamfighting": 67, + "macro_play": 67, + "consistency": 70, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, - "mental_resilience": 72 + "discipline": 68, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "traits": [], - "contract_end": null, + "match_name": "Luon", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-bnk-fearx-youth", + "nationality": "KR", + "date_of_birth": "2003-01-27", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/fa5ab8c5f4c196a4.webp" + }, + { + "id": "player-5171726f", + "wage": 50000, + "stats": { + "appearances": 0 + }, "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dn-soopers-challengers", + "position": "Support", + "condition": 100, + "full_name": "Son Jeong-hwan", + "attributes": { + "mechanics": 74, + "laning": 67, + "teamfighting": 81, + "macro_play": 78, + "consistency": 79, + "shotcalling": 78, + "champion_pool": 72, + "discipline": 72, + "mental_resilience": 74 + }, + "match_name": "Quantum", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 750000, + "birth_country": null, + "date_of_birth": "2004-08-20", + "potential_base": 84, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/e17444236f1726f6.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-6571f5ba", - "match_name": "Sero", - "full_name": "Sero", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kt-rolster-challengers", + "condition": 100, + "full_name": "An Hyo-chan", "attributes": { - "laning": 75, "mechanics": 75, - "discipline": 76, + "laning": 75, + "teamfighting": 74, "macro_play": 75, "consistency": 75, "shotcalling": 73, - "teamfighting": 74, "champion_pool": 73, + "discipline": 76, "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Sero", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2005-11-21", + "stats": {}, + "profile_image_url": "/player-photos/7738db1ac6c4f21e.webp" }, { - "id": "player-7255573d", - "match_name": "Haetae", - "full_name": "Haetae", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-6e134f47", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kt-rolster-challengers", + "condition": 100, + "full_name": "Jeong Hwi-chan", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, - "macro_play": 76, + "laning": 76, + "teamfighting": 75, + "macro_play": 75, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, - "mental_resilience": 76 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Hwichan", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2006-01-30", + "stats": {}, + "profile_image_url": "/player-photos/7c6aee74beec67c0.webp" }, { - "id": "player-8631f0de", - "match_name": "Sharvel", - "full_name": "Sharvel", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-7255573d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-t1-esports-academy", + "condition": 100, + "full_name": "Sim Su-hyeon", "attributes": { + "mechanics": 76, "laning": 76, - "mechanics": 75, - "discipline": 70, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, - "mental_resilience": 72 + "discipline": 76, + "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Haetae", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 82, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2006-02-11", "stats": {}, - "career": [], + "profile_image_url": "/player-photos/16d4ae472ea29970.webp" + }, + { + "id": "player-ad3d0214", + "wage": 50000, + "stats": { + "appearances": 0 + }, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "position": "Mid", + "condition": 100, + "full_name": "Choi Soo-hyuk", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 68, + "macro_play": 77, + "consistency": 70, + "shotcalling": 67, + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 72 + }, + "match_name": "AkaJe", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2028-11-18", + "market_value": 750000, + "birth_country": null, + "date_of_birth": "2008-05-30", + "potential_base": 88, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/1583c3ce.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { "id": "player-7687488c", - "match_name": "Garden", - "full_name": "Garden", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dplus-kia-challengers", + "condition": 100, + "full_name": "Seol Jeong-won", "attributes": { - "laning": 74, "mechanics": 75, - "discipline": 74, + "laning": 74, + "teamfighting": 75, "macro_play": 76, "consistency": 74, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Garden", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 81, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2007-11-15", "stats": {}, + "profile_image_url": "/player-photos/c77e0a0c183da64b.webp" + }, + { + "id": "player-78eff27e", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dn-soopers-challengers", + "condition": 100, + "full_name": "Kwak Kyu-jun", + "attributes": { + "mechanics": 78, + "laning": 78, + "teamfighting": 80, + "macro_play": 78, + "consistency": 78, + "shotcalling": 83, + "champion_pool": 79, + "discipline": 85, + "mental_resilience": 82 + }, + "match_name": "Enosh", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2004-10-01", + "stats": {}, + "profile_image_url": "/player-photos/52a19dfefd534973.webp" }, { - "id": "player-3c60962d", - "match_name": "Cracker", - "full_name": "Cracker", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-7ff93278", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hong Jun-seok", "attributes": { + "mechanics": 72, "laning": 73, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 73, + "teamfighting": 74, + "macro_play": 71, + "consistency": 68, "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 74 + "champion_pool": 72, + "discipline": 74, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "traits": [], - "contract_end": null, + "match_name": "PlanB", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-hanjin-brion-challengers", + "nationality": "KR", + "date_of_birth": "2006-01-19", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/3786059efde4ba99.webp" }, { "id": "player-82330e76", - "match_name": "Zephyr", - "full_name": "Zephyr", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-bnk-fearx-youth", + "condition": 100, + "full_name": "Hwang Hyeok-su", "attributes": { - "laning": 68, "mechanics": 71, - "discipline": 75, + "laning": 68, + "teamfighting": 74, "macro_play": 70, "consistency": 70, "shotcalling": 73, - "teamfighting": 74, "champion_pool": 69, + "discipline": 75, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Zephyr", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2007-12-08", + "stats": {}, + "profile_image_url": "/player-photos/c7ffbd0325f356e6.webp" }, { - "id": "player-ca0e5ce6", - "match_name": "Courage", - "full_name": "Courage", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-8631f0de", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dplus-kia-challengers", + "condition": 100, + "full_name": "Kim Dan-woo", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 73, - "consistency": 72, + "mechanics": 75, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, "shotcalling": 73, - "teamfighting": 73, "champion_pool": 73, + "discipline": 70, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-gen-g-global-academy", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Sharvel", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 81, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2007-08-26", + "stats": {}, + "profile_image_url": "/player-photos/fdb56f3a7fbc9fdc.webp" }, { - "id": "player-6e134f47", - "match_name": "Hwichan", - "full_name": "Hwichan", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-8c91032f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-t1-esports-academy", + "condition": 100, + "full_name": "Moon Jeong-hwan", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 74, - "macro_play": 75, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, - "mental_resilience": 74 + "discipline": 76, + "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Guti", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2004-04-09", + "stats": {}, + "profile_image_url": "/player-photos/a2bb0716df4eb982.webp" }, { - "id": "player-8c91032f", - "match_name": "Guti", - "full_name": "Guti", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-8e298458", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hle-challengers", + "condition": 100, + "full_name": "Pyeonsik", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, + "laning": 75, + "teamfighting": 75, + "macro_play": 74, + "consistency": 74, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, - "mental_resilience": 76 + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pyeonsik", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 81, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-217fd253", - "match_name": "Wayne", - "full_name": "Wayne", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9010ea3a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-bnk-fearx-youth", + "condition": 100, + "full_name": "An Hyeon-seo", "attributes": { - "laning": 73, - "mechanics": 75, - "discipline": 68, + "mechanics": 70, + "laning": 72, + "teamfighting": 75, "macro_play": 73, - "consistency": 73, + "consistency": 74, "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 72, + "champion_pool": 71, + "discipline": 74, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-dplus-kia-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "FIESTA", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2003-05-04", + "stats": {}, + "profile_image_url": "/player-photos/902d28da687f712c.webp" }, { - "id": "player-8e298458", - "match_name": "Pyeonsik", - "full_name": "Pyeonsik", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-90cbabea", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dn-soopers-challengers", + "condition": 100, + "full_name": "Han Jeong-heum", "attributes": { - "laning": 75, - "mechanics": 76, - "discipline": 72, - "macro_play": 74, - "consistency": 74, + "mechanics": 74, + "laning": 72, + "teamfighting": 74, + "macro_play": 73, + "consistency": 72, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, - "mental_resilience": 72 + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hle-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lancer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2004-08-11", + "stats": {}, + "profile_image_url": "/player-photos/04f11865f1a678bc.webp" }, { "id": "player-9276105b", - "match_name": "Frog", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "condition": 100, "full_name": "Frog", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 75, "mechanics": 75, - "discipline": 75, + "laning": 75, + "teamfighting": 75, "macro_play": 75, "consistency": 74, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, + "discipline": 75, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Frog", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/e98612715eecbf3c.webp" }, { - "id": "player-d3e92fc3", - "match_name": "DDoiV", - "full_name": "DDoiV", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 73, - "mental_resilience": 73 + "id": "player-65ab088f", + "wage": 119000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-ns-esports-academy", + "position": "Top", + "condition": 100, + "full_name": "Eom Ye-jun", + "attributes": { + "mechanics": 72, + "laning": 65, + "teamfighting": 66, + "macro_play": 69, + "consistency": 70, + "shotcalling": 69, + "champion_pool": 65, + "discipline": 73, + "mental_resilience": 75 + }, + "match_name": "Janus", + "loan_listed": false, + "morale_core": {}, + "nationality": "Korea", + "contract_end": "2026-11-16", + "market_value": 1785000, + "birth_country": null, + "date_of_birth": "2007-01-02", + "potential_base": 88, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/71afb6f1273a3b23.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-a0f1de3f", - "match_name": "Flip", - "full_name": "Flip", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 73, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 + "id": "player-c46f4677", + "wage": 77000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-kiwoon-drx-challengers", + "position": "Jungle", + "condition": 100, + "full_name": "Kang Hyeon-wook", + "attributes": { + "mechanics": 62, + "laning": 63, + "teamfighting": 54, + "macro_play": 60, + "consistency": 61, + "shotcalling": 55, + "champion_pool": 64, + "discipline": 57, + "mental_resilience": 56 + }, + "match_name": "Winner ", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 1155000, + "birth_country": null, + "date_of_birth": "2006-07-29", + "potential_base": 75, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/2e8364111bacea6d.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-0676970a", - "match_name": "Tempester", - "full_name": "Tempester", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 75, - "discipline": 73, - "macro_play": 75, - "consistency": 74, - "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 72, - "mental_resilience": 71 - }, - "condition": 100, + "id": "player-9a95ae46", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Quantum", + "attributes": { + "mechanics": 78, + "laning": 78, + "teamfighting": 81, + "macro_play": 78, + "consistency": 78, + "shotcalling": 83, + "champion_pool": 79, + "discipline": 84, + "mental_resilience": 81 + }, + "match_name": "Quantum", + "loan_listed": false, + "potential_base": 86, + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-dn-soopers-challengers", + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/5e1929117d2e7e84.webp" }, { - "id": "player-e55f8ef5", - "match_name": "Slayer", - "full_name": "Slayer", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 70, - "mechanics": 66, - "discipline": 73, - "macro_play": 67, - "consistency": 67, - "shotcalling": 73, - "teamfighting": 67, - "champion_pool": 73, - "mental_resilience": 71 + "id": "player-e7f2c02a", + "wage": 119000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-bnk-fearx-youth", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-ns-esports-academy", + "position": "ADC", + "condition": 100, + "full_name": "Hyun Soo-hoon", + "attributes": { + "mechanics": 65, + "laning": 67, + "teamfighting": 62, + "macro_play": 70, + "consistency": 62, + "shotcalling": 62, + "champion_pool": 74, + "discipline": 67, + "mental_resilience": 66 + }, + "match_name": "Lucy", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 1785000, + "birth_country": null, + "date_of_birth": "2006-06-20", + "potential_base": 84, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/a0ed30f392c97045.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-ae1a2b6d", - "match_name": "MUDAI", - "full_name": "MUDAI", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9f9cbe53", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Kim Jae-min", "attributes": { - "laning": 68, "mechanics": 68, - "discipline": 75, - "macro_play": 68, - "consistency": 68, + "laning": 73, + "teamfighting": 68, + "macro_play": 70, + "consistency": 70, "shotcalling": 73, - "teamfighting": 70, - "champion_pool": 72, + "champion_pool": 71, + "discipline": 76, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Lumos", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", "team_id": "lck-cl-gen-g-global-academy", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2007-04-06", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/efaf52dac8dbbba1.webp" + }, + { + "id": "player-a0f1de3f", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dn-soopers-challengers", + "condition": 100, + "full_name": "Kim Sang-wook", + "attributes": { + "mechanics": 74, + "laning": 72, + "teamfighting": 74, + "macro_play": 73, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "Flip", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-05-11", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2008-05-24", + "stats": {}, + "profile_image_url": "/player-photos/9852ef3bbe90f563.webp" }, { "id": "player-a2d61244", - "match_name": "AKaJe", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "condition": 100, "full_name": "AKaJe", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 74, "mechanics": 75, - "discipline": 74, + "laning": 74, + "teamfighting": 75, "macro_play": 75, "consistency": 74, "shotcalling": 73, - "teamfighting": 75, "champion_pool": 73, + "discipline": 74, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kiwoon-drx-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "AKaJe", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/22a902f18b5766b7.webp" }, { - "id": "player-b942cab5", - "match_name": "OddEye", - "full_name": "OddEye", + "id": "player-a947fb1e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "condition": 100, + "full_name": "Jiwoo", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 75, + "macro_play": 72, + "consistency": 72, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 75 + }, + "match_name": "Jiwoo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 81, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/b9724e7e1f374bd6.webp" + }, + { + "id": "player-acd86dd5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hle-challengers", + "condition": 100, + "full_name": "Lee Su-min", + "attributes": { + "mechanics": 74, + "laning": 76, + "teamfighting": 75, + "macro_play": 75, + "consistency": 75, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 76, + "mental_resilience": 74 + }, + "match_name": "Jackal", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 81, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", "nationality": "KR", - "profile_image_url": null, + "date_of_birth": "2007-02-05", + "stats": {}, + "profile_image_url": "/player-photos/cf894e8099416290.webp" + }, + { + "id": "player-ae1a2b6d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-gen-g-global-academy", + "condition": 100, + "full_name": "Lee Seon-gyu", + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 70, + "macro_play": 68, + "consistency": 68, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 75, + "mental_resilience": 72 + }, + "match_name": "MUDAI", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], "position": "ADC", - "natural_position": "ADC", + "nationality": "KR", + "date_of_birth": "2005-05-21", + "stats": {}, + "profile_image_url": "/player-photos/1f0cce7e232124f1.webp" + }, + { + "id": "player-6f4ad3dc", + "wage": 32000, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-gen-g-global-academy", + "condition": 100, + "full_name": "Kim Si-hun", + "attributes": { + "mechanics": 73, + "laning": 74, + "teamfighting": 75, + "macro_play": 73, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 73, + "mental_resilience": 71 + }, + "match_name": "Kemish", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 480000, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2005-04-01", + "stats": {}, + "profile_image_url": "/player-photos/806e1675df910b37.webp" + }, + { + "id": "player-b398a5ac", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hle-challengers", + "condition": 100, + "full_name": "Park Ji-ho", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 73, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 74 + }, + "match_name": "Panther", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 81, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2008-02-05", + "stats": {}, + "profile_image_url": "/player-photos/822eecb47caf8b5f.webp" + }, + { + "id": "player-b7172b29", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-gen-g-global-academy", + "condition": 100, + "full_name": "Byeon Jong-min", + "attributes": { + "mechanics": 72, + "laning": 73, + "teamfighting": 75, + "macro_play": 72, + "consistency": 72, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 72 + }, + "match_name": "Ripple", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2006-10-05", + "stats": {}, + "profile_image_url": "/player-photos/a4ebb08b5f7bb0cd.webp" + }, + { + "id": "player-b942cab5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-hanjin-brion-challengers", + "condition": 100, + "full_name": "Cho Hyung-jin", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 73, + "macro_play": 70, + "consistency": 70, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 74, + "mental_resilience": 71 + }, + "match_name": "OddEye", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2005-01-01", + "stats": {}, + "profile_image_url": "/player-photos/d4d01f03e6eefc61.webp" + }, + { + "id": "player-c24b484e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-t1-esports-academy", + "condition": 100, + "full_name": "Kim Eun-hoo", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Painter", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 82, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2007-09-16", + "stats": {}, + "profile_image_url": "/player-photos/17a33290e2781cef.webp" + }, + { + "id": "player-fe7218c5", + "wage": 20000, + "stats": { + "appearances": 0 + }, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "position": "Support", + "condition": 100, + "full_name": "Kang Min-woo", + "attributes": { + "mechanics": 48, + "laning": 45, + "teamfighting": 52, + "macro_play": 54, + "consistency": 53, + "shotcalling": 47, + "champion_pool": 49, + "discipline": 51, + "mental_resilience": 52 + }, + "match_name": "Minous", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2026-11-16", + "market_value": 300000, + "birth_country": null, + "date_of_birth": "2004-05-03", + "potential_base": 61, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/01bf1a1e.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] + }, + { + "id": "player-ca0e5ce6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-gen-g-global-academy", + "condition": 100, + "full_name": "Jeon Hyun-min", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 73, + "macro_play": 73, + "consistency": 72, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 74, + "mental_resilience": 72 + }, + "match_name": "Courage", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2005-03-09", + "stats": {}, + "profile_image_url": "/player-photos/ec7d8afaca9ab848.webp" + }, + { + "id": "player-d3e92fc3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-dn-soopers-challengers", + "condition": 100, + "full_name": "Bang Moon-yeong", + "attributes": { + "mechanics": 72, + "laning": 73, + "teamfighting": 70, + "macro_play": 73, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "DDoiV", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2023-10-21", + "stats": {}, + "profile_image_url": "/player-photos/bc3241dbcf769033.webp" + }, + { + "id": "player-dd29cf26", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Moon Hyeon-ho", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Cloud", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-t1-esports-academy", + "nationality": "KR", + "date_of_birth": "2007-04-25", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/c31efad0304fdda4.webp" + }, + { + "id": "player-e254c8aa", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-bnk-fearx-youth", + "condition": 100, + "full_name": "Choi Gang-in", + "attributes": { + "mechanics": 70, + "laning": 76, + "teamfighting": 75, + "macro_play": 72, + "consistency": 75, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 76, + "mental_resilience": 72 + }, + "match_name": "Kangin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2003-03-14", + "stats": {}, + "profile_image_url": "/player-photos/e8d8f285443e4647.webp" + }, + { + "id": "player-e55f8ef5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-bnk-fearx-youth", + "condition": 100, + "full_name": "Kim Jin-young", + "attributes": { + "mechanics": 66, + "laning": 70, + "teamfighting": 67, + "macro_play": 67, + "consistency": 67, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 73, + "mental_resilience": 71 + }, + "match_name": "Slayer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2003-04-15", + "stats": {}, + "profile_image_url": "/player-photos/118ee091ebd6fa34.webp" + }, + { + "id": "player-eddde7b7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kiwoon-drx-challengers", + "condition": 100, + "full_name": "Winner", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 70, - "consistency": 70, + "mechanics": 75, + "laning": 75, + "teamfighting": 75, + "macro_play": 75, + "consistency": 74, "shotcalling": 73, - "teamfighting": 73, "champion_pool": 73, - "mental_resilience": 71 + "discipline": 74, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-hanjin-brion-challengers", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Winner", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 81, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/4d388ec0f9e3926a.webp" }, { - "id": "player-78eff27e", - "match_name": "Enosh", - "full_name": "Enosh", - "date_of_birth": "2004-10-01", - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 78, - "mechanics": 78, - "discipline": 85, - "macro_play": 78, - "consistency": 78, - "shotcalling": 83, - "teamfighting": 80, - "champion_pool": 79, - "mental_resilience": 82 + "id": "player-7b51fd6f", + "wage": 107000, + "stats": { + "appearances": 0 }, - "condition": 100, + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], + "team_id": "lck-cl-hle-challengers", + "position": "Top", + "condition": 100, + "full_name": "Park-Ji-ho", + "attributes": { + "mechanics": 63, + "laning": 55, + "teamfighting": 61, + "macro_play": 62, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 68, + "mental_resilience": 62 + }, + "match_name": "Panther", + "loan_listed": false, + "morale_core": {}, + "nationality": "South Korea", + "contract_end": "2028-11-17", + "market_value": 1605000, + "birth_country": null, + "date_of_birth": "2008-02-05", + "potential_base": 68, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/1d5c92b0.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null, + "career": [] }, { - "id": "player-fdec4f38", - "match_name": "Cypher", - "full_name": "Cypher", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f396d407", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jang Yong-jun", "attributes": { - "laning": 76, - "mechanics": 76, - "discipline": 76, - "macro_play": 76, - "consistency": 76, + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 74, + "consistency": 74, "shotcalling": 73, - "teamfighting": 76, - "champion_pool": 73, + "champion_pool": 71, + "discipline": 76, "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "contract_end": null, + "match_name": "Ghost", + "loan_listed": false, + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lck-cl-kt-rolster-challengers", + "nationality": "KR", + "date_of_birth": "1999-03-18", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a17affbd0086d9f5.webp" }, { "id": "player-f64e6d86", - "match_name": "FenRir", - "full_name": "FenRir", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-kt-rolster-challengers", + "condition": 100, + "full_name": "Park Kang-jun", "attributes": { - "laning": 72, "mechanics": 73, - "discipline": 76, + "laning": 72, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 73, - "teamfighting": 73, "champion_pool": 73, + "discipline": 76, "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-kt-rolster-challengers", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "FenRir", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, "potential_base": 81, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2006-06-24", + "stats": {}, + "profile_image_url": "/player-photos/44b24582f8cd63b3.webp" }, { "id": "player-fd58ecc3", - "match_name": "Jinbeom", - "full_name": "Jinbeom", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lck-cl-t1-esports-academy", + "condition": 100, + "full_name": "Cheon Jin-beom", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 76, "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lck-cl-t1-esports-academy", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Jinbeom", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2007-07-03", + "stats": {}, + "profile_image_url": "/player-photos/95231d7f437a7532.webp" }, { - "id": "player-1867a3bb", - "match_name": "Peter", - "full_name": "Peter", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 85, - "mechanics": 84, - "discipline": 88, - "macro_play": 86, - "consistency": 82, - "shotcalling": 87, - "teamfighting": 84, - "champion_pool": 83, - "mental_resilience": 85 - }, - "condition": 100, + "id": "player-fdec4f38", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lck-cl-dn-soopers-challengers", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "team_id": "lck-cl-t1-esports-academy", + "condition": 100, + "full_name": "Kim Yu-jun", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Cypher", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 89, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 82, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2006-01-20", + "stats": {}, + "profile_image_url": "/player-photos/363c6a90dfbc38b4.webp" } ] } \ No newline at end of file diff --git a/data/players/lcp_players.json b/data/players/lcp_players.json index 36e9d7d65..227339009 100644 --- a/data/players/lcp_players.json +++ b/data/players/lcp_players.json @@ -11,43 +11,33 @@ "fitness": 100, "team_id": "team-dcg2025", "condition": 100, - "full_name": "HongSuo", + "full_name": "Guo Bei-Yi ", "attributes": { - "laning": 79, "mechanics": 78, - "discipline": 78, + "laning": 79, + "teamfighting": 79, "macro_play": 77, "consistency": 80, "shotcalling": 74, - "teamfighting": 79, "champion_pool": 77, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Guo Bei-Yi ", + "match_name": "HongSuo", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 86, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-25", - "nationality": "TW", - "profile_image_url": "/player-photos/1779561501468_qq0hy0j4b1.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2004-05-25", + "stats": {}, + "profile_image_url": "/player-photos/e9fbe8dbcdf5ace1.webp" }, { "id": "player-0557e147", @@ -55,45 +45,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Kino", + "full_name": "Chu Wu Hsin-Jung", "attributes": { - "laning": 72, "mechanics": 75, - "discipline": 72, + "laning": 72, + "teamfighting": 75, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 75, "champion_pool": 71, + "discipline": 72, "mental_resilience": 74 }, - "match_name": "Chu Wu Hsin-Jung", + "match_name": "Kino", "loan_listed": false, "potential_base": 76, "transfer_listed": false, - "date_of_birth": "1998-04-12", - "nationality": "TW", - "profile_image_url": "/player-photos/1779563286628_mtm2bxc6f9.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-83d3342f", - "traits": [], - "contract_end": null, + "nationality": "TW", + "date_of_birth": "1998-04-12", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/de0181088795582e.webp" }, { "id": "player-11c08fae", @@ -104,43 +80,33 @@ "fitness": 100, "team_id": "team-d13da18a", "condition": 100, - "full_name": "Eddie", + "full_name": "Hoàng Công Nghĩa", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 75, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Hoàng Công Nghĩa", + "match_name": "Eddie", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-17", - "nationality": "VN", - "profile_image_url": "/player-photos/0574cb58.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2003-06-17", + "stats": {}, + "profile_image_url": "/player-photos/0574cb58.webp" }, { "id": "player-1360e324", @@ -151,43 +117,33 @@ "fitness": 100, "team_id": "team-709031e2", "condition": 100, - "full_name": "Chika", + "full_name": "Võ Lê Nhân", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 84, + "laning": 84, + "teamfighting": 84, "macro_play": 85, "consistency": 84, "shotcalling": 82, - "teamfighting": 84, "champion_pool": 83, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Võ Lê Nhân", + "match_name": "Chika", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 90, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-01-26", - "nationality": "VN", - "profile_image_url": "/player-photos/3fd9c74b.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2006-01-26", + "stats": {}, + "profile_image_url": "/player-photos/3fd9c74b.webp" }, { "id": "player-269d6089", @@ -198,43 +154,33 @@ "fitness": 100, "team_id": "team-cbc2ec83", "condition": 100, - "full_name": "Kakkun", + "full_name": "Kamon Nomoto", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 81, + "laning": 76, + "teamfighting": 79, "macro_play": 76, "consistency": 76, "shotcalling": 74, - "teamfighting": 79, "champion_pool": 79, + "discipline": 81, "mental_resilience": 77 }, - "match_name": "Kamon Nomoto", + "match_name": "Kakkun", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-02-05", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561834922_3sfd15qg9a.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": "2002-02-05", + "stats": {}, + "profile_image_url": "/player-photos/de2fa67704d61d0e.webp" }, { "id": "player-32ab4e03", @@ -245,43 +191,33 @@ "fitness": 100, "team_id": "team-f4306bce", "condition": 100, - "full_name": "Aria", + "full_name": "Lee Ga-eul", "attributes": { - "laning": 78, "mechanics": 77, - "discipline": 74, + "laning": 78, + "teamfighting": 77, "macro_play": 75, "consistency": 77, "shotcalling": 69, - "teamfighting": 77, "champion_pool": 75, + "discipline": 74, "mental_resilience": 74 }, - "match_name": "Lee Ga-eul", + "match_name": "Aria", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-10-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561652055_u72hfg8ds3.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2000-10-14", + "stats": {}, + "profile_image_url": "/player-photos/397bbbf5691765db.webp" }, { "id": "player-40be2767", @@ -289,222 +225,54 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "SiuLoong", + "full_name": "Nguyễn Hoàng Lam", "attributes": { - "laning": 81, "mechanics": 80, - "discipline": 82, + "laning": 81, + "teamfighting": 80, "macro_play": 80, "consistency": 80, "shotcalling": 78, - "teamfighting": 80, "champion_pool": 79, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Nguyễn Hoàng Lam", + "match_name": "SiuLoong", "loan_listed": false, "potential_base": 88, "transfer_listed": false, - "date_of_birth": "2005-10-15", - "nationality": "VN", - "profile_image_url": "/player-photos/1779562635984_ou6yftkfnfa.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-709031e2", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2005-10-15", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/47a2a31901b8792a.webp" }, { "id": "player-43b347e2", "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "J Team 2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Kowloon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "Tongtex Suns", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "HK Attitude", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "J Team 2", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "Machi Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "100 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Machi Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "100 Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-gzg2025", "condition": 100, - "full_name": "JimieN", + "full_name": "Tseng Hao-Chun", "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 78, + "laning": 76, + "teamfighting": 77, "macro_play": 76, "consistency": 75, "shotcalling": 70, - "teamfighting": 77, "champion_pool": 74, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Tseng Hao-Chun", + "match_name": "JimieN", "loan_listed": false, "morale_core": {}, "contract_end": "2026-11-17", @@ -514,21 +282,11 @@ "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-07-24", - "nationality": "TW", - "profile_image_url": "/player-photos/1779824589567_JimieN.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2002-07-24", + "stats": {}, + "profile_image_url": "/player-photos/da9ca663980142d5.webp" }, { "id": "player-4adfd774", @@ -539,43 +297,33 @@ "fitness": 100, "team_id": "team-83d3342f", "condition": 100, - "full_name": "Shad0w", + "full_name": "Zhao Zhi-Qiang", "attributes": { - "laning": 74, "mechanics": 73, - "discipline": 74, + "laning": 74, + "teamfighting": 75, "macro_play": 72, "consistency": 74, "shotcalling": 69, - "teamfighting": 75, "champion_pool": 75, + "discipline": 74, "mental_resilience": 72 }, - "match_name": "Zhao Zhi-Qiang", + "match_name": "Shad0w", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-02-25", - "nationality": "IT", - "profile_image_url": "/player-photos/1779563015898_ro8v88ja9l.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "IT", + "date_of_birth": "2001-02-25", + "stats": {}, + "profile_image_url": "/player-photos/f5f1a9cd3b41a0dc.webp" }, { "id": "player-4db5c5c6", @@ -586,43 +334,33 @@ "fitness": 100, "team_id": "team-f4306bce", "condition": 100, - "full_name": "Marble", + "full_name": "Rei Shimaya", "attributes": { - "laning": 75, "mechanics": 76, - "discipline": 74, + "laning": 75, + "teamfighting": 76, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 76, "champion_pool": 75, + "discipline": 74, "mental_resilience": 74 }, - "match_name": "Rei Shimaya", + "match_name": "Marble", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-08-28", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561649117_wztaebusil8.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": "2002-08-28", + "stats": {}, + "profile_image_url": "/player-photos/ba8d504405882e90.webp" }, { "id": "player-8027166e", @@ -630,108 +368,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "HLE Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-f4306bce", - "team_name": "SoftBank HAWKS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-f4306bce", - "team_name": "SoftBank HAWKS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-f4306bce", - "team_name": "SoftBank HAWKS", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f4306bce", - "team_name": "SoftBank HAWKS", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-f4306bce", "position": "Support", "condition": 100, - "full_name": "Vsta", + "full_name": "Oh Hyo-seong", "attributes": { - "laning": 56, "mechanics": 55, - "discipline": 68, + "laning": 56, + "teamfighting": 67, "macro_play": 70, "consistency": 67, "shotcalling": 59, - "teamfighting": 67, "champion_pool": 57, + "discipline": 68, "mental_resilience": 64 }, - "match_name": "Oh Hyo-seong", + "match_name": "Vsta", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -745,15 +401,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1779561662525_1eokbnsq0b3.webp", + "profile_image_url": "/player-photos/27e881ef.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-50fa32d5", @@ -764,43 +418,33 @@ "fitness": 100, "team_id": "team-d13da18a", "condition": 100, - "full_name": "Pun", + "full_name": "Nguyễn Đăng Khoa", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 75, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Nguyễn Đăng Khoa", + "match_name": "Pun", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-07-29", - "nationality": "VN", - "profile_image_url": "/player-photos/7c7f3ee2.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2002-07-29", + "stats": {}, + "profile_image_url": "/player-photos/7c7f3ee2.webp" }, { "id": "player-515344e5", @@ -811,43 +455,33 @@ "fitness": 100, "team_id": "team-dcg2025", "condition": 100, - "full_name": "Feng", + "full_name": "Chen Chun-Feng ", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 76, "macro_play": 78, "consistency": 78, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 77, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Chen Chun-Feng ", + "match_name": "Feng", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-10-15", - "nationality": "MX", - "profile_image_url": "/player-photos/1779561512120_q0iu0zob30i.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "MX", + "date_of_birth": "2003-10-15", + "stats": {}, + "profile_image_url": "/player-photos/36d287dea1e470ec.webp" }, { "id": "player-58c95049", @@ -858,43 +492,33 @@ "fitness": 100, "team_id": "team-cbc2ec83", "condition": 100, - "full_name": "Momo", + "full_name": "Sora Tobita ", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 78, + "laning": 70, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 70, "champion_pool": 73, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Sora Tobita ", + "match_name": "Momo", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-02-26", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561814221_rkykb0lc2id.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": "2004-02-26", + "stats": {}, + "profile_image_url": "/player-photos/b9a284f344a30631.webp" }, { "id": "player-5a236bb9", @@ -902,45 +526,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "ShiauC", + "full_name": "Liu Chia-Hao ", "attributes": { - "laning": 79, "mechanics": 76, - "discipline": 81, + "laning": 79, + "teamfighting": 78, "macro_play": 81, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 78, + "discipline": 81, "mental_resilience": 80 }, - "match_name": "Liu Chia-Hao ", + "match_name": "ShiauC", "loan_listed": false, "potential_base": 82, "transfer_listed": false, - "date_of_birth": "1999-07-12", - "nationality": "TW", - "profile_image_url": "/player-photos/1779561484552_9fu2mzcc1v8.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-dcg2025", - "traits": [], - "contract_end": null, + "nationality": "TW", + "date_of_birth": "1999-07-12", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/9ce69c56a557084a.webp" }, { "id": "player-5f2badc4", @@ -951,43 +561,33 @@ "fitness": 100, "team_id": "team-709031e2", "condition": 100, - "full_name": "Kratos", + "full_name": "Ngô Đức Khánh", "attributes": { - "laning": 75, "mechanics": 74, - "discipline": 78, + "laning": 75, + "teamfighting": 75, "macro_play": 76, "consistency": 74, "shotcalling": 74, - "teamfighting": 75, "champion_pool": 73, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Ngô Đức Khánh", + "match_name": "Kratos", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-04-22", - "nationality": "VN", - "profile_image_url": "/player-photos/1779562647723_unjy94ir9xp.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2005-04-22", + "stats": {}, + "profile_image_url": "/player-photos/8019c13c03ab58b3.webp" }, { "id": "player-660b4a42", @@ -998,121 +598,56 @@ "fitness": 100, "team_id": "team-83d3342f", "condition": 100, - "full_name": "Doggo", + "full_name": "Chiu Tzu-Chuan", "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 74, + "laning": 72, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 75, + "discipline": 74, "mental_resilience": 72 }, - "match_name": "Chiu Tzu-Chuan", + "match_name": "Doggo", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-06-04", - "nationality": "TW", - "profile_image_url": "/player-photos/1779563280736_kifxv4io0mp.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2004-06-04", + "stats": {}, + "profile_image_url": "/player-photos/e91aa242785da327.webp" }, { "id": "player-7c0f399a", "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-gzg2025", "condition": 100, - "full_name": "Shunn", + "full_name": "Chao Ying-Shun", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 78, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 75, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Chao Ying-Shun", + "match_name": "Shunn", "loan_listed": false, "morale_core": {}, "contract_end": "2026-11-17", @@ -1122,21 +657,11 @@ "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-06-02", - "nationality": "TW", - "profile_image_url": "/player-photos/1779824590831_Shunn.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2002-06-02", + "stats": {}, + "profile_image_url": "/player-photos/6b7bed640424d094.webp" }, { "id": "player-89fb8cd6", @@ -1147,43 +672,33 @@ "fitness": 100, "team_id": "team-f4306bce", "condition": 100, - "full_name": "Evi", + "full_name": "Shunsuke Murase", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 75, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 73, + "discipline": 74, "mental_resilience": 74 }, - "match_name": "Shunsuke Murase", + "match_name": "Evi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 80, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1995-11-15", - "nationality": "JP", - "profile_image_url": "/player-photos/1779561659594_yj6ha1c5nkf.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "JP", + "date_of_birth": "1995-11-15", + "stats": {}, + "profile_image_url": "/player-photos/4869d38ee9314d3c.webp" }, { "id": "player-8a206976", @@ -1194,43 +709,33 @@ "fitness": 100, "team_id": "team-dcg2025", "condition": 100, - "full_name": "Flauren", + "full_name": "Lo Chak Kin", "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 76, + "laning": 72, + "teamfighting": 76, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 76, "champion_pool": 74, + "discipline": 76, "mental_resilience": 74 }, - "match_name": "Lo Chak Kin", + "match_name": "Flauren", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 80, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-10-30", - "nationality": "TW", - "profile_image_url": "/player-photos/1779561488877_hubvb8b2tdj.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2006-10-30", + "stats": {}, + "profile_image_url": "/player-photos/67837c35c477085e.webp" }, { "id": "player-8a5f4364", @@ -1241,43 +746,33 @@ "fitness": 100, "team_id": "team-494fc51a", "condition": 100, - "full_name": "Aress", + "full_name": "Hồ Văn Vĩ Đại", "attributes": { - "laning": 82, "mechanics": 81, - "discipline": 78, + "laning": 82, + "teamfighting": 78, "macro_play": 81, "consistency": 81, "shotcalling": 78, - "teamfighting": 78, "champion_pool": 79, + "discipline": 78, "mental_resilience": 79 }, - "match_name": "Hồ Văn Vĩ Đại", + "match_name": "Aress", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 86, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-10-24", - "nationality": "VN", - "profile_image_url": "/player-photos/1779561200196_cgkyr4qdqa.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2004-10-24", + "stats": {}, + "profile_image_url": "/player-photos/949bdce5e934461a.webp" }, { "id": "player-96704a63", @@ -1288,43 +783,33 @@ "fitness": 100, "team_id": "team-494fc51a", "condition": 100, - "full_name": "Kiaya", + "full_name": "Trần Duy Sang", "attributes": { - "laning": 78, "mechanics": 80, - "discipline": 78, + "laning": 78, + "teamfighting": 81, "macro_play": 81, "consistency": 80, "shotcalling": 78, - "teamfighting": 81, "champion_pool": 78, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Trần Duy Sang", + "match_name": "Kiaya", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-05-17", - "nationality": "VN", - "profile_image_url": "/player-photos/1779561205501_ab76fv3ad9q.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2001-05-17", + "stats": {}, + "profile_image_url": "/player-photos/b52b113210fde70d.webp" }, { "id": "player-a4d48840", @@ -1335,43 +820,33 @@ "fitness": 100, "team_id": "team-83d3342f", "condition": 100, - "full_name": "Rest", + "full_name": "Hsu Shih-Chieh ", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 73, "consistency": 74, "shotcalling": 74, - "teamfighting": 74, "champion_pool": 78, + "discipline": 74, "mental_resilience": 76 }, - "match_name": "Hsu Shih-Chieh ", + "match_name": "Rest", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-12-11", - "nationality": "TW", - "profile_image_url": "/player-photos/1779563004665_12vp2u1rvvf.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "1999-12-11", + "stats": {}, + "profile_image_url": "/player-photos/bdd203a499ec28d4.webp" }, { "id": "player-a793b229", @@ -1382,43 +857,33 @@ "fitness": 100, "team_id": "team-cbc2ec83", "condition": 100, - "full_name": "Fisher", + "full_name": "Lee Jeong-tae ", "attributes": { - "laning": 80, "mechanics": 76, - "discipline": 79, + "laning": 80, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 73, - "teamfighting": 78, "champion_pool": 79, + "discipline": 79, "mental_resilience": 79 }, - "match_name": "Lee Jeong-tae ", + "match_name": "Fisher", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 86, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-06-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561827161_pt1hzib9p4o.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-06-05", + "stats": {}, + "profile_image_url": "/player-photos/8d12c86892d5e922.webp" }, { "id": "player-2fe8f8ba", @@ -1429,43 +894,33 @@ "fitness": 100, "team_id": "team-cbc2ec83", "condition": 100, - "full_name": "Citrus", + "full_name": "Byeon Ji-woong", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 76, + "laning": 70, + "teamfighting": 74, "macro_play": 70, "consistency": 70, "shotcalling": 69, - "teamfighting": 74, "champion_pool": 75, + "discipline": 76, "mental_resilience": 74 }, - "match_name": "Byeon Ji-woong", + "match_name": "Citrus", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 1065000, "potential_base": 78, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-04-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561824152_bjscx2yc2qe.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-04-14", + "stats": {}, + "profile_image_url": "/player-photos/0c64412535c7b6fc.webp" }, { "id": "player-b551723d", @@ -1476,43 +931,33 @@ "fitness": 100, "team_id": "team-83d3342f", "condition": 100, - "full_name": "Pout", + "full_name": "Han In-woong", "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 72, + "laning": 72, + "teamfighting": 72, "macro_play": 70, "consistency": 72, "shotcalling": 69, - "teamfighting": 72, "champion_pool": 73, + "discipline": 72, "mental_resilience": 74 }, - "match_name": "Han In-woong", + "match_name": "Pout", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 78, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-10-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779563019558_9cojbym9lo8.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-10-03", + "stats": {}, + "profile_image_url": "/player-photos/a1c470930aefe8c3.webp" }, { "id": "player-b831fcc3", @@ -1523,43 +968,33 @@ "fitness": 100, "team_id": "team-494fc51a", "condition": 100, - "full_name": "Draktharr", + "full_name": "Lê Ngọc Toàn", "attributes": { - "laning": 77, "mechanics": 75, - "discipline": 77, + "laning": 77, + "teamfighting": 77, "macro_play": 76, "consistency": 76, "shotcalling": 74, - "teamfighting": 77, "champion_pool": 75, + "discipline": 77, "mental_resilience": 76 }, - "match_name": "Lê Ngọc Toàn", + "match_name": "Draktharr", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-03-10", - "nationality": "VN", - "profile_image_url": "/player-photos/1779561203105_no4b8joanyf.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2003-03-10", + "stats": {}, + "profile_image_url": "/player-photos/9391040bafeb6149.webp" }, { "id": "player-bf386435", @@ -1570,43 +1005,33 @@ "fitness": 100, "team_id": "team-dcg2025", "condition": 100, - "full_name": "Pop9", + "full_name": "Wu Yi-Han", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 72, + "laning": 74, + "teamfighting": 72, "macro_play": 75, "consistency": 74, "shotcalling": 70, - "teamfighting": 72, "champion_pool": 74, + "discipline": 72, "mental_resilience": 72 }, - "match_name": "Wu Yi-Han", + "match_name": "Pop9", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-04-24", - "nationality": "TW", - "profile_image_url": "/player-photos/1779561497560_jat1xb92lt.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2003-04-24", + "stats": {}, + "profile_image_url": "/player-photos/811a42ca52219739.webp" }, { "id": "player-c19462f5", @@ -1614,45 +1039,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Bie", + "full_name": "Trần Đức Hiếu", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Trần Đức Hiếu", + "match_name": "Bie", "loan_listed": false, "potential_base": 87, "transfer_listed": false, - "date_of_birth": "1999-12-09", - "nationality": "VN", - "profile_image_url": "/player-photos/0849937a.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-d13da18a", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "1999-12-09", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/0849937a.webp" }, { "id": "player-c772ab90", @@ -1663,43 +1074,33 @@ "fitness": 100, "team_id": "team-709031e2", "condition": 100, - "full_name": "Gury", + "full_name": "Lương Hải Long", "attributes": { - "laning": 77, "mechanics": 76, - "discipline": 76, + "laning": 77, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 74, - "teamfighting": 76, "champion_pool": 75, + "discipline": 76, "mental_resilience": 76 }, - "match_name": "Lương Hải Long", + "match_name": "Gury", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-10-28", - "nationality": "VN", - "profile_image_url": "/player-photos/1779562654740_cf8vlk455jp.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2003-10-28", + "stats": {}, + "profile_image_url": "/player-photos/7474ea8470ccaf4f.webp" }, { "id": "player-cddd4d1a", @@ -1710,43 +1111,33 @@ "fitness": 100, "team_id": "team-d13da18a", "condition": 100, - "full_name": "Hizto", + "full_name": "Lê Văn Hoàng Hải", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 75, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Lê Văn Hoàng Hải", + "match_name": "Hizto", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2007-09-15", - "nationality": "VN", - "profile_image_url": "/player-photos/286b5414.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2007-09-15", + "stats": {}, + "profile_image_url": "/player-photos/286b5414.webp" }, { "id": "player-ce843a66", @@ -1757,43 +1148,33 @@ "fitness": 100, "team_id": "team-d13da18a", "condition": 100, - "full_name": "Dire", + "full_name": "Trần Duy Đức", "attributes": { - "laning": 78, "mechanics": 78, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 78, "shotcalling": 74, - "teamfighting": 78, "champion_pool": 75, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Trần Duy Đức", + "match_name": "Dire", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-11-22", - "nationality": "VN", - "profile_image_url": "/player-photos/3df78514.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2006-11-22", + "stats": {}, + "profile_image_url": "/player-photos/3df78514.webp" }, { "id": "player-cedce5f9", @@ -1804,43 +1185,33 @@ "fitness": 100, "team_id": "team-709031e2", "condition": 100, - "full_name": "Harky", + "full_name": "Nguyễn Văn Hữu", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 78, + "laning": 76, + "teamfighting": 77, "macro_play": 76, "consistency": 76, "shotcalling": 74, - "teamfighting": 77, "champion_pool": 75, + "discipline": 78, "mental_resilience": 77 }, - "match_name": "Nguyễn Văn Hữu", + "match_name": "Harky", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-08-21", - "nationality": "VN", - "profile_image_url": "/player-photos/1779562674323_wdiwhn0tdg.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2005-08-21", + "stats": {}, + "profile_image_url": "/player-photos/a166840de6e168c8.webp" }, { "id": "player-d30d93a8", @@ -1848,45 +1219,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Taki", + "full_name": "Đinh Anh Tài", "attributes": { - "laning": 77, "mechanics": 76, - "discipline": 77, + "laning": 77, + "teamfighting": 75, "macro_play": 75, "consistency": 74, "shotcalling": 74, - "teamfighting": 75, "champion_pool": 75, + "discipline": 77, "mental_resilience": 76 }, - "match_name": "Đinh Anh Tài", + "match_name": "Taki", "loan_listed": false, "potential_base": 81, "transfer_listed": false, - "date_of_birth": "2003-06-30", - "nationality": "VN", - "profile_image_url": "/player-photos/1779561207991_6fj6tt6annf.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-494fc51a", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2003-06-30", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/822781843ac55c02.webp" }, { "id": "player-d38aac8c", @@ -1894,45 +1251,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Woody", + "full_name": "Lin Yu-En", "attributes": { - "laning": 74, "mechanics": 72, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 72, "consistency": 74, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 73, + "discipline": 74, "mental_resilience": 74 }, - "match_name": "Lin Yu-En", + "match_name": "Woody", "loan_listed": false, "potential_base": 79, "transfer_listed": false, - "date_of_birth": "1998-04-11", - "nationality": "TW", - "profile_image_url": "/player-photos/1779561883869_e05vjum00ol.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-cbc2ec83", - "traits": [], - "contract_end": null, + "nationality": "TW", + "date_of_birth": "1998-04-11", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/00613eb66148a22f.webp" }, { "id": "player-e8f9a21b", @@ -1943,222 +1286,88 @@ "fitness": 100, "team_id": "team-709031e2", "condition": 100, - "full_name": "Steller", + "full_name": "Lê Quang Bình", "attributes": { - "laning": 78, "mechanics": 77, - "discipline": 76, + "laning": 78, + "teamfighting": 76, "macro_play": 78, "consistency": 78, "shotcalling": 74, - "teamfighting": 76, "champion_pool": 74, + "discipline": 76, "mental_resilience": 77 }, - "match_name": "Lê Quang Bình", + "match_name": "Steller", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-10-17", - "nationality": "VN", - "profile_image_url": "/player-photos/1779562652289_zjbysh0l3he.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "VN", + "date_of_birth": "2006-10-17", + "stats": {}, + "profile_image_url": "/player-photos/59f87c2ad992d6d2.webp" }, { "id": "player-e952596e", - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Deep Cross Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "LIT Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Deep Cross Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Deep Cross Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CTBC Flying Oyster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - } - ], + "career": [], "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Orca (Kuo Cheng-Han)", + "full_name": "Kuo Cheng-Han", "attributes": { - "laning": 71, "mechanics": 70, - "discipline": 73, + "laning": 71, + "teamfighting": 71, "macro_play": 71, "consistency": 70, "shotcalling": 66, - "teamfighting": 71, "champion_pool": 71, + "discipline": 73, "mental_resilience": 72 }, - "match_name": "Kuo Cheng-Han", + "match_name": "Orca (Kuo Cheng-Han)", "loan_listed": false, "contract_end": "2026-11-17", "potential_base": 77, "transfer_listed": false, - "date_of_birth": "2003-10-09", - "nationality": "TW", - "profile_image_url": "/player-photos/1779824592344_Orca__Kuo_Cheng-Han_.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-gzg2025", - "traits": [], + "nationality": "TW", + "date_of_birth": "2003-10-09", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "stats": {}, + "profile_image_url": "/player-photos/6fccf21a95125c62.webp" }, { "id": "player-eacacf39", "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Nate.A", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Ultra Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Ultra Prime", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-gzg2025", "condition": 100, - "full_name": "1Jiang", + "full_name": "Chen Yi-Chin", "attributes": { - "laning": 81, "mechanics": 78, - "discipline": 79, + "laning": 81, + "teamfighting": 80, "macro_play": 78, "consistency": 80, "shotcalling": 74, - "teamfighting": 80, "champion_pool": 77, + "discipline": 79, "mental_resilience": 79 }, - "match_name": "Chen Yi-Chin", + "match_name": "1Jiang", "loan_listed": false, "morale_core": {}, "contract_end": "2026-11-17", @@ -2168,21 +1377,11 @@ "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-10-22", - "nationality": "TW", - "profile_image_url": "/player-photos/1779824586149_1Jiang.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2003-10-22", + "stats": {}, + "profile_image_url": "/player-photos/5781f49ce9e1ea66.webp" }, { "id": "player-ec5c483a", @@ -2193,220 +1392,56 @@ "fitness": 100, "team_id": "team-f4306bce", "condition": 100, - "full_name": "Van1", + "full_name": "Kim Seung-hoo", "attributes": { - "laning": 79, "mechanics": 78, - "discipline": 78, + "laning": 79, + "teamfighting": 79, "macro_play": 78, "consistency": 78, "shotcalling": 73, - "teamfighting": 79, "champion_pool": 79, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Kim Seung-hoo", + "match_name": "Van1", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 86, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-11-21", - "nationality": "KR", - "profile_image_url": "/player-photos/1779561656397_kz2d5k3ik0m.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-11-21", + "stats": {}, + "profile_image_url": "/player-photos/e2737c40a25fcef3.webp" }, { "id": "player-eeab580a", "wage": 0, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": null, - "team_name": "ahq Fighter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ahq eSports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "ahq Fighter", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": null, - "team_name": "SuperEsports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": null, - "team_name": "ahq eSports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": null, - "team_name": "PSG Talon", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "Beyond Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "CFO Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Chiefs Esports Club", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Frank Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": null, - "team_name": "Ground Zero", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-gzg2025", "condition": 100, - "full_name": "Husha", + "full_name": "Huang Tzu-Wei", "attributes": { - "laning": 77, "mechanics": 74, - "discipline": 77, + "laning": 77, + "teamfighting": 74, "macro_play": 74, "consistency": 75, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 73, + "discipline": 77, "mental_resilience": 76 }, - "match_name": "Huang Tzu-Wei", + "match_name": "Husha", "loan_listed": false, "morale_core": {}, "contract_end": "2026-11-17", @@ -2416,21 +1451,11 @@ "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-04-04", - "nationality": "TW", - "profile_image_url": "/player-photos/1779824587816_Husha.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2001-04-04", + "stats": {}, + "profile_image_url": "/player-photos/825cdccba952b944.webp" } ] } \ No newline at end of file diff --git a/data/players/lcs_players.json b/data/players/lcs_players.json index 4dd279946..e8d69bb67 100644 --- a/data/players/lcs_players.json +++ b/data/players/lcs_players.json @@ -11,43 +11,33 @@ "fitness": 100, "team_id": "team-dig2025", "condition": 100, - "full_name": "eXyu", + "full_name": "Lawrence Lin Xu", "attributes": { - "laning": 74, "mechanics": 72, - "discipline": 82, + "laning": 74, + "teamfighting": 76, "macro_play": 73, "consistency": 73, "shotcalling": 74, - "teamfighting": 76, "champion_pool": 79, + "discipline": 82, "mental_resilience": 77 }, - "match_name": "Lawrence Lin Xu", + "match_name": "eXyu", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 77, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-12-14", - "nationality": "US", - "profile_image_url": "/player-photos/1779603620121_9irdghmxwm.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2001-12-14", + "stats": {}, + "profile_image_url": "/player-photos/8b34111c20b3e515.webp" }, { "id": "player-04b63fad", @@ -58,43 +48,33 @@ "fitness": 100, "team_id": "team-tl2025", "condition": 100, - "full_name": "Yeon", + "full_name": "Sean Sung", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Sean Sung", + "match_name": "Yeon", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-01-07", - "nationality": "US", - "profile_image_url": "/player-photos/1779603921311_vg9ppjrim1.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2001-01-07", + "stats": {}, + "profile_image_url": "/player-photos/f5f483990c9b8678.webp" }, { "id": "player-0ecd0be2", @@ -105,43 +85,33 @@ "fitness": 100, "team_id": "team-tl2025", "condition": 100, - "full_name": "Morgan", + "full_name": "Park Ru-han", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Park Ru-han", + "match_name": "Morgan", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-09-26", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603910715_z606g6pxk19.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-09-26", + "stats": {}, + "profile_image_url": "/player-photos/941c74a50fa52cfd.webp" }, { "id": "player-0f4b5b56", @@ -152,43 +122,33 @@ "fitness": 100, "team_id": "team-tl2025", "condition": 100, - "full_name": "Quid", + "full_name": "Lim Hyeon-seung", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Lim Hyeon-seung", + "match_name": "Quid", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-04-27", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603917950_xhfu291txzs.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-04-27", + "stats": {}, + "profile_image_url": "/player-photos/414e026f2bd39d17.webp" }, { "id": "player-1f673fbb", @@ -196,45 +156,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Vulcan", + "full_name": "Philippe Laflamme", "attributes": { - "laning": 71, "mechanics": 81, - "discipline": 70, + "laning": 71, + "teamfighting": 81, "macro_play": 78, "consistency": 79, "shotcalling": 78, - "teamfighting": 81, "champion_pool": 75, + "discipline": 70, "mental_resilience": 76 }, - "match_name": "Philippe Laflamme", + "match_name": "Vulcan", "loan_listed": false, "potential_base": 79, "transfer_listed": false, - "date_of_birth": "1999-04-20", - "nationality": "CA", - "profile_image_url": "/player-photos/1779603816074_dpkrev3pi6o.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-c92025", - "traits": [], - "contract_end": null, + "nationality": "CA", + "date_of_birth": "1999-04-20", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/e7577f31385c4655.webp" }, { "id": "player-3365fe66", @@ -245,43 +191,33 @@ "fitness": 100, "team_id": "team-dig2025", "condition": 100, - "full_name": "Palafox", + "full_name": "Cristian Palafox", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 80, + "laning": 73, + "teamfighting": 73, "macro_play": 75, "consistency": 73, "shotcalling": 74, - "teamfighting": 73, "champion_pool": 78, + "discipline": 80, "mental_resilience": 76 }, - "match_name": "Cristian Palafox", + "match_name": "Palafox", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 75, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-07-08", - "nationality": "US", - "profile_image_url": "/player-photos/1779603628502_j4r4jdddvy.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "1999-07-08", + "stats": {}, + "profile_image_url": "/player-photos/04b5dd85c18f1d7d.webp" }, { "id": "player-347abbe9", @@ -289,45 +225,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Ceos", + "full_name": "Denilson Oliveira Gonçalves", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 82, + "laning": 80, + "teamfighting": 80, "macro_play": 80, "consistency": 80, "shotcalling": 79, - "teamfighting": 80, "champion_pool": 78, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Denilson Oliveira Gonçalves", + "match_name": "Ceos", "loan_listed": false, "potential_base": 80, "transfer_listed": false, - "date_of_birth": "1996-08-08", - "nationality": "BR", - "profile_image_url": "/player-photos/1779602413303_21ui74iazdq.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-d740ef00", - "traits": [], - "contract_end": null, + "nationality": "BR", + "date_of_birth": "1996-08-08", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/99bce1912efcfe34.webp" }, { "id": "player-34bbf945", @@ -335,45 +257,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Lyonz", + "full_name": "Pedro Luis Peralta", "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 76, + "laning": 76, + "teamfighting": 74, "macro_play": 74, "consistency": 76, "shotcalling": 79, - "teamfighting": 74, "champion_pool": 75, + "discipline": 76, "mental_resilience": 76 }, - "match_name": "Pedro Luis Peralta", + "match_name": "Lyonz", "loan_listed": false, "potential_base": 78, "transfer_listed": false, - "date_of_birth": "2001-11-29", - "nationality": "AR", - "profile_image_url": "/player-photos/1779603409634_4021gec4lqb.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-75904cb7", - "traits": [], - "contract_end": null, + "nationality": "AR", + "date_of_birth": "2001-11-29", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/a8d2fa4d3b5ae0f6.webp" }, { "id": "player-3d56c4b0", @@ -384,43 +292,33 @@ "fitness": 100, "team_id": "team-d740ef00", "condition": 100, - "full_name": "Bvoy", + "full_name": "Ju Yeong-hoon", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 81, + "laning": 80, + "teamfighting": 82, "macro_play": 81, "consistency": 81, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 78, + "discipline": 81, "mental_resilience": 81 }, - "match_name": "Ju Yeong-hoon", + "match_name": "Bvoy", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 80, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1997-12-18", - "nationality": "KR", - "profile_image_url": "/player-photos/1779602417103_z6kc7vri65.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1997-12-18", + "stats": {}, + "profile_image_url": "/player-photos/004a5027aaac4d81.webp" }, { "id": "player-434e3142", @@ -431,43 +329,33 @@ "fitness": 100, "team_id": "team-75904cb7", "condition": 100, - "full_name": "Castle", + "full_name": "Cho Hyeon-seong", "attributes": { - "laning": 82, "mechanics": 77, - "discipline": 80, + "laning": 82, + "teamfighting": 80, "macro_play": 80, "consistency": 81, "shotcalling": 74, - "teamfighting": 80, "champion_pool": 75, + "discipline": 80, "mental_resilience": 78 }, - "match_name": "Cho Hyeon-seong", + "match_name": "Castle", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-10-08", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603527570_6x96b7u7oeo.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-10-08", + "stats": {}, + "profile_image_url": "/player-photos/9598709f9e7fdc2c.webp" }, { "id": "player-469cd216", @@ -478,43 +366,33 @@ "fitness": 100, "team_id": "team-cb9503c1", "condition": 100, - "full_name": "Dhokla", + "full_name": "Niship Doshi", "attributes": { - "laning": 84, "mechanics": 86, - "discipline": 82, + "laning": 84, + "teamfighting": 86, "macro_play": 84, "consistency": 83, "shotcalling": 78, - "teamfighting": 86, "champion_pool": 82, + "discipline": 82, "mental_resilience": 84 }, - "match_name": "Niship Doshi", + "match_name": "Dhokla", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-01-04", - "nationality": "US", - "profile_image_url": "/player-photos/1779603024211_okz5erxaewh.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "1998-01-04", + "stats": {}, + "profile_image_url": "/player-photos/24aad19e78308d17.webp" }, { "id": "player-5e94db7f", @@ -525,43 +403,33 @@ "fitness": 100, "team_id": "team-75904cb7", "condition": 100, - "full_name": "KryRa", + "full_name": "Christian Rahaian", "attributes": { - "laning": 78, "mechanics": 74, - "discipline": 79, + "laning": 78, + "teamfighting": 79, "macro_play": 74, "consistency": 74, "shotcalling": 78, - "teamfighting": 79, "champion_pool": 79, + "discipline": 79, "mental_resilience": 77 }, - "match_name": "Christian Rahaian", + "match_name": "KryRa", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-08-14", - "nationality": "CA", - "profile_image_url": "/player-photos/1779611513760_6fq81i31po.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CA", + "date_of_birth": "2005-08-14", + "stats": {}, + "profile_image_url": "/player-photos/1871426916fee84f.webp" }, { "id": "player-674b1e85", @@ -572,43 +440,33 @@ "fitness": 100, "team_id": "team-c92025", "condition": 100, - "full_name": "Thanatos", + "full_name": "Park Seung-gyu", "attributes": { - "laning": 86, "mechanics": 83, - "discipline": 77, + "laning": 86, + "teamfighting": 81, "macro_play": 84, "consistency": 85, "shotcalling": 78, - "teamfighting": 81, "champion_pool": 81, + "discipline": 77, "mental_resilience": 80 }, - "match_name": "Park Seung-gyu", + "match_name": "Thanatos", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603803792_hmey7yhld4q.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-05-01", + "stats": {}, + "profile_image_url": "/player-photos/3f32300019bfc42c.webp" }, { "id": "player-6dfca4f5", @@ -619,43 +477,33 @@ "fitness": 100, "team_id": "team-dig2025", "condition": 100, - "full_name": "Photon", + "full_name": "Kyeong Gyu-tae", "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 73, "shotcalling": 74, - "teamfighting": 76, "champion_pool": 78, + "discipline": 76, "mental_resilience": 76 }, - "match_name": "Kyeong Gyu-tae", + "match_name": "Photon", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-11-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603654712_3d192idbg0f.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2001-11-30", + "stats": {}, + "profile_image_url": "/player-photos/ebda635b8f9f5918.webp" }, { "id": "player-7f32d4eb", @@ -666,43 +514,33 @@ "fitness": 100, "team_id": "team-sen2025", "condition": 100, - "full_name": "Rahel", + "full_name": "Cho Min-seong", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 80, + "laning": 80, + "teamfighting": 79, "macro_play": 79, "consistency": 79, "shotcalling": 74, - "teamfighting": 79, "champion_pool": 79, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Cho Min-seong", + "match_name": "Rahel", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-02-13", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603292199_bks2i20qqwv.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-02-13", + "stats": {}, + "profile_image_url": "/player-photos/3fe57fd4c7972004.webp" }, { "id": "player-8e877634", @@ -710,45 +548,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "CoreJJ", + "full_name": "Jo Yong-in", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 74, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Jo Yong-in", + "match_name": "CoreJJ", "loan_listed": false, "potential_base": 82, "transfer_listed": false, - "date_of_birth": "1994-06-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603907564_px41vcwmka.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-tl2025", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "1994-06-22", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/2bf81c574f166193.webp" }, { "id": "player-8ee79810", @@ -756,45 +580,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Isles", + "full_name": "Jonah Rosario", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 82, + "laning": 86, + "teamfighting": 84, "macro_play": 84, "consistency": 84, "shotcalling": 82, - "teamfighting": 84, "champion_pool": 82, + "discipline": 82, "mental_resilience": 84 }, - "match_name": "Jonah Rosario", + "match_name": "Isles", "loan_listed": false, "potential_base": 85, "transfer_listed": false, - "date_of_birth": "2001-03-27", - "nationality": "AU", - "profile_image_url": "/player-photos/1779603020753_yk8n2vs1yan.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-cb9503c1", - "traits": [], - "contract_end": null, + "nationality": "AU", + "date_of_birth": "2001-03-27", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/1c57e56e0ab02044.webp" }, { "id": "player-94c375ac", @@ -805,43 +615,33 @@ "fitness": 100, "team_id": "team-sen2025", "condition": 100, - "full_name": "DARKWINGS", + "full_name": "Isaac Chou", "attributes": { - "laning": 80, "mechanics": 79, - "discipline": 80, + "laning": 80, + "teamfighting": 79, "macro_play": 80, "consistency": 80, "shotcalling": 74, - "teamfighting": 79, "champion_pool": 79, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Isaac Chou", + "match_name": "DARKWINGS", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 80, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-01-11", - "nationality": "US", - "profile_image_url": "/player-photos/1779603288947_8g2yhba9wad.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2001-01-11", + "stats": {}, + "profile_image_url": "/player-photos/3f8163d9c9641a9e.webp" }, { "id": "player-94e547cd", @@ -852,43 +652,33 @@ "fitness": 100, "team_id": "team-d740ef00", "condition": 100, - "full_name": "Fudge", + "full_name": "Ibrahim Allami", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 82, + "laning": 80, + "teamfighting": 80, "macro_play": 80, "consistency": 80, "shotcalling": 78, - "teamfighting": 80, "champion_pool": 79, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Ibrahim Allami", + "match_name": "Fudge", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-05-23", - "nationality": "AU", - "profile_image_url": "/player-photos/1779602427255_nw0lx0jl8md.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "AU", + "date_of_birth": "2002-05-23", + "stats": {}, + "profile_image_url": "/player-photos/c56ebb381bc649f7.webp" }, { "id": "player-9a2a9c1f", @@ -899,43 +689,33 @@ "fitness": 100, "team_id": "team-sen2025", "condition": 100, - "full_name": "HamBak", + "full_name": "Ham Yoo-jin", "attributes": { - "laning": 79, "mechanics": 80, - "discipline": 80, + "laning": 79, + "teamfighting": 81, "macro_play": 79, "consistency": 79, "shotcalling": 74, - "teamfighting": 81, "champion_pool": 79, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Ham Yoo-jin", + "match_name": "HamBak", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-02-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603285597_kanllwon8eo.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-02-28", + "stats": {}, + "profile_image_url": "/player-photos/5ef80dd8d2ae6ef5.webp" }, { "id": "player-a46a36d0", @@ -946,43 +726,33 @@ "fitness": 100, "team_id": "team-fly2025", "condition": 100, - "full_name": "Gryffinn", + "full_name": "Johnson Le", "attributes": { - "laning": 82, "mechanics": 79, - "discipline": 81, + "laning": 82, + "teamfighting": 79, "macro_play": 81, "consistency": 82, "shotcalling": 74, - "teamfighting": 79, "champion_pool": 79, + "discipline": 81, "mental_resilience": 79 }, - "match_name": "Johnson Le", + "match_name": "Gryffinn", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 88, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2006-09-07", - "nationality": "US", - "profile_image_url": "/player-photos/1779602604903_9wfs6akko37.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2006-09-07", + "stats": {}, + "profile_image_url": "/player-photos/2e034a4f5a77d819.webp" }, { "id": "player-a85d33ee", @@ -990,45 +760,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Cryogen", + "full_name": "Michael Luu", "attributes": { - "laning": 79, "mechanics": 79, - "discipline": 81, + "laning": 79, + "teamfighting": 81, "macro_play": 80, "consistency": 80, "shotcalling": 73, - "teamfighting": 81, "champion_pool": 77, + "discipline": 81, "mental_resilience": 79 }, - "match_name": "Michael Luu", + "match_name": "Cryogen", "loan_listed": false, "potential_base": 88, "transfer_listed": false, - "date_of_birth": "2007-01-20", - "nationality": "VN", - "profile_image_url": "/player-photos/1779602596106_pit6p8n01o.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-fly2025", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2007-01-20", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/1bef2d21b09b85d2.webp" }, { "id": "player-ad124dbf", @@ -1039,43 +795,33 @@ "fitness": 100, "team_id": "team-sen2025", "condition": 100, - "full_name": "Impact", + "full_name": "Jeong Eon-young", "attributes": { - "laning": 83, "mechanics": 85, - "discipline": 84, + "laning": 83, + "teamfighting": 85, "macro_play": 82, "consistency": 82, "shotcalling": 78, - "teamfighting": 85, "champion_pool": 83, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Jeong Eon-young", + "match_name": "Impact", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1995-03-07", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603280799_uykrofva4r.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1995-03-07", + "stats": {}, + "profile_image_url": "/player-photos/fa0145ec82c4a2a3.webp" }, { "id": "player-ad56fd72", @@ -1086,43 +832,33 @@ "fitness": 100, "team_id": "team-c92025", "condition": 100, - "full_name": "APA", + "full_name": "Eain Stearns", "attributes": { - "laning": 72, "mechanics": 80, - "discipline": 78, + "laning": 72, + "teamfighting": 80, "macro_play": 78, "consistency": 74, "shotcalling": 74, - "teamfighting": 80, "champion_pool": 77, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Eain Stearns", + "match_name": "APA", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-03-05", - "nationality": "US", - "profile_image_url": "/player-photos/1779603808931_srt1e8kjbrs.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2002-03-05", + "stats": {}, + "profile_image_url": "/player-photos/e94b22ffb7e417c8.webp" }, { "id": "player-bf445bc6", @@ -1133,43 +869,33 @@ "fitness": 100, "team_id": "team-d740ef00", "condition": 100, - "full_name": "Zinie", + "full_name": "Yoo Baek-jin", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 85, + "laning": 84, + "teamfighting": 85, "macro_play": 85, "consistency": 84, "shotcalling": 78, - "teamfighting": 85, "champion_pool": 83, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Yoo Baek-jin", + "match_name": "Zinie", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-08-31", - "nationality": "KR", - "profile_image_url": "/player-photos/1779602419919_gyefzk4hzhk.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2005-08-31", + "stats": {}, + "profile_image_url": "/player-photos/44abf69fac84e05b.webp" }, { "id": "player-c7c915b5", @@ -1177,45 +903,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "IgNar", + "full_name": "Lee Dong-geun", "attributes": { - "laning": 78, "mechanics": 74, - "discipline": 76, + "laning": 78, + "teamfighting": 74, "macro_play": 75, "consistency": 74, "shotcalling": 74, - "teamfighting": 74, "champion_pool": 77, + "discipline": 76, "mental_resilience": 75 }, - "match_name": "Lee Dong-geun", + "match_name": "IgNar", "loan_listed": false, "potential_base": 75, "transfer_listed": false, - "date_of_birth": "1996-11-20", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603633383_v0ubzllowrd.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-dig2025", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "1996-11-20", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/aab8930b6fdd7887.webp" }, { "id": "player-cd7ce6b2", @@ -1226,43 +938,33 @@ "fitness": 100, "team_id": "team-fly2025", "condition": 100, - "full_name": "GaKGoS", + "full_name": "İbrahim Samet Bulut", "attributes": { - "laning": 81, "mechanics": 80, - "discipline": 76, + "laning": 81, + "teamfighting": 80, "macro_play": 76, "consistency": 79, "shotcalling": 73, - "teamfighting": 80, "champion_pool": 78, + "discipline": 76, "mental_resilience": 76 }, - "match_name": "İbrahim Samet Bulut", + "match_name": "GaKGoS", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 83, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1997-07-17", - "nationality": "TR", - "profile_image_url": "/player-photos/1779602600277_7w47kj3ik0o.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TR", + "date_of_birth": "1997-07-17", + "stats": {}, + "profile_image_url": "/player-photos/daba3b4fcd3a8e4a.webp" }, { "id": "player-d689cc78", @@ -1273,43 +975,33 @@ "fitness": 100, "team_id": "team-c92025", "condition": 100, - "full_name": "Zven", + "full_name": "Jesper Svenningsen", "attributes": { - "laning": 85, "mechanics": 88, - "discipline": 87, + "laning": 85, + "teamfighting": 86, "macro_play": 88, "consistency": 88, "shotcalling": 87, - "teamfighting": 86, "champion_pool": 84, + "discipline": 87, "mental_resilience": 87 }, - "match_name": "Jesper Svenningsen", + "match_name": "Zven", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 89, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1997-06-24", - "nationality": "Dk", - "profile_image_url": "/player-photos/1779603812489_8f5lfaq1w57.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "Dk", + "date_of_birth": "1997-06-24", + "stats": {}, + "profile_image_url": "/player-photos/4fadedf705facdc2.webp" }, { "id": "player-d697a109", @@ -1320,43 +1012,33 @@ "fitness": 100, "team_id": "team-d740ef00", "condition": 100, - "full_name": "Contractz", + "full_name": "Juan Arturo Garcia", "attributes": { - "laning": 80, "mechanics": 80, - "discipline": 82, + "laning": 80, + "teamfighting": 80, "macro_play": 80, "consistency": 80, "shotcalling": 74, - "teamfighting": 80, "champion_pool": 79, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Juan Arturo Garcia", + "match_name": "Contractz", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 80, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-08-25", - "nationality": "US", - "profile_image_url": "/player-photos/1779602431053_7n2oa5pfux3.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "1999-08-25", + "stats": {}, + "profile_image_url": "/player-photos/6bb170541eaa633e.webp" }, { "id": "player-d72814e9", @@ -1364,45 +1046,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "huhi", + "full_name": "Choi Jae-hyun", "attributes": { - "laning": 81, "mechanics": 80, - "discipline": 80, + "laning": 81, + "teamfighting": 80, "macro_play": 81, "consistency": 81, "shotcalling": 74, - "teamfighting": 80, "champion_pool": 79, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Choi Jae-hyun", + "match_name": "huhi", "loan_listed": false, "potential_base": 80, "transfer_listed": false, - "date_of_birth": "1995-08-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603294749_4h8qpxloy3l.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-sen2025", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "1995-08-03", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/f95a04a7340ff7e6.webp" }, { "id": "player-dbf498b8", @@ -1413,43 +1081,33 @@ "fitness": 100, "team_id": "team-cb9503c1", "condition": 100, - "full_name": "Saint", + "full_name": "Kang Sung-in", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 83, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 78, - "teamfighting": 85, "champion_pool": 81, + "discipline": 83, "mental_resilience": 84 }, - "match_name": "Kang Sung-in", + "match_name": "Saint", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-01-01", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603034663_uourhydw5a.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2005-01-01", + "stats": {}, + "profile_image_url": "/player-photos/d6db61831dfd0e6c.webp" }, { "id": "player-e46ae8ca", @@ -1460,43 +1118,33 @@ "fitness": 100, "team_id": "team-cb9503c1", "condition": 100, - "full_name": "Inspired", + "full_name": "Kacper Słoma", "attributes": { - "laning": 83, "mechanics": 84, - "discipline": 82, + "laning": 83, + "teamfighting": 82, "macro_play": 85, "consistency": 84, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 81, + "discipline": 82, "mental_resilience": 84 }, - "match_name": "Kacper Słoma", + "match_name": "Inspired", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 87, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-01-24", - "nationality": "PL", - "profile_image_url": "/player-photos/1779603027991_8la47kxjse.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "PL", + "date_of_birth": "2002-01-24", + "stats": {}, + "profile_image_url": "/player-photos/681de4076002e5ff.webp" }, { "id": "player-e65ce969", @@ -1507,43 +1155,33 @@ "fitness": 100, "team_id": "team-75904cb7", "condition": 100, - "full_name": "Sajed", + "full_name": "Sajed Ziade", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 81, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 74, - "teamfighting": 74, "champion_pool": 77, + "discipline": 81, "mental_resilience": 78 }, - "match_name": "Sajed Ziade", + "match_name": "Sajed", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 82, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-04-10", - "nationality": "US", - "profile_image_url": "/player-photos/1779603412658_1ix77kxw38e.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2004-04-10", + "stats": {}, + "profile_image_url": "/player-photos/cc1f910c2942e516.webp" }, { "id": "player-e75bdb25", @@ -1554,43 +1192,33 @@ "fitness": 100, "team_id": "team-75904cb7", "condition": 100, - "full_name": "Callme", + "full_name": "Oh Ji-hoon", "attributes": { - "laning": 80, "mechanics": 76, - "discipline": 80, + "laning": 80, + "teamfighting": 74, "macro_play": 78, "consistency": 79, "shotcalling": 74, - "teamfighting": 74, "champion_pool": 75, + "discipline": 80, "mental_resilience": 78 }, - "match_name": "Oh Ji-hoon", + "match_name": "Callme", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 84, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-03-30", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603415135_p37chtlfrmd.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-03-30", + "stats": {}, + "profile_image_url": "/player-photos/bce0c29c579d9fb4.webp" }, { "id": "player-ea7077ca", @@ -1601,43 +1229,33 @@ "fitness": 100, "team_id": "team-fly2025", "condition": 100, - "full_name": "Massu", + "full_name": "Fahad Abdulmalek", "attributes": { - "laning": 81, "mechanics": 84, - "discipline": 86, + "laning": 81, + "teamfighting": 83, "macro_play": 80, "consistency": 80, "shotcalling": 82, - "teamfighting": 83, "champion_pool": 81, + "discipline": 86, "mental_resilience": 84 }, - "match_name": "Fahad Abdulmalek", + "match_name": "Massu", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-11-28", - "nationality": "CA", - "profile_image_url": "/player-photos/1779602583497_iqm2novsjr.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CA", + "date_of_birth": "2004-11-28", + "stats": {}, + "profile_image_url": "/player-photos/26eda5e68233e24c.webp" }, { "id": "player-eaa29f7a", @@ -1648,43 +1266,33 @@ "fitness": 100, "team_id": "team-tl2025", "condition": 100, - "full_name": "Josedeodo", + "full_name": "Brandon Joel Villegas", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 82, "macro_play": 82, "consistency": 82, "shotcalling": 79, - "teamfighting": 82, "champion_pool": 79, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Brandon Joel Villegas", + "match_name": "Josedeodo", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 81, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-05-22", - "nationality": "AR", - "profile_image_url": "/player-photos/1779603913886_vwkyxxtnb5g.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "AR", + "date_of_birth": "2000-05-22", + "stats": {}, + "profile_image_url": "/player-photos/daadcf5b95ee7721.webp" }, { "id": "player-ed8c454a", @@ -1695,43 +1303,33 @@ "fitness": 100, "team_id": "team-cb9503c1", "condition": 100, - "full_name": "Berserker", + "full_name": "Kim Min-cheol", "attributes": { - "laning": 85, "mechanics": 86, - "discipline": 83, + "laning": 85, + "teamfighting": 83, "macro_play": 86, "consistency": 86, "shotcalling": 78, - "teamfighting": 83, "champion_pool": 83, + "discipline": 83, "mental_resilience": 84 }, - "match_name": "Kim Min-cheol", + "match_name": "Berserker", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-05-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779603039196_ctxmi23xqq7.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-05-25", + "stats": {}, + "profile_image_url": "/player-photos/d8050523f3c31583.webp" }, { "id": "player-f45fa42d", @@ -1742,43 +1340,33 @@ "fitness": 100, "team_id": "team-fly2025", "condition": 100, - "full_name": "Quad", + "full_name": "Song Soo-hyung", "attributes": { - "laning": 81, "mechanics": 84, - "discipline": 78, + "laning": 81, + "teamfighting": 86, "macro_play": 82, "consistency": 83, "shotcalling": 78, - "teamfighting": 86, "champion_pool": 81, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Song Soo-hyung", + "match_name": "Quad", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 85, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-08-25", - "nationality": "KR", - "profile_image_url": "/player-photos/1779602608275_2ghad4turmh.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-08-25", + "stats": {}, + "profile_image_url": "/player-photos/5b96afa67e488ca4.webp" }, { "id": "player-f7816d63", @@ -1789,43 +1377,33 @@ "fitness": 100, "team_id": "team-c92025", "condition": 100, - "full_name": "Blaber", + "full_name": "Robert Huang", "attributes": { - "laning": 80, "mechanics": 79, - "discipline": 71, + "laning": 80, + "teamfighting": 75, "macro_play": 82, "consistency": 81, "shotcalling": 74, - "teamfighting": 75, "champion_pool": 79, + "discipline": 71, "mental_resilience": 76 }, - "match_name": "Robert Huang", + "match_name": "Blaber", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 79, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-01-04", - "nationality": "US", - "profile_image_url": "/player-photos/1779603806318_ijskwxjumg.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "US", + "date_of_birth": "2000-01-04", + "stats": {}, + "profile_image_url": "/player-photos/95ed818ade54b3c8.webp" }, { "id": "player-fc926e67", @@ -1836,43 +1414,33 @@ "fitness": 100, "team_id": "team-dig2025", "condition": 100, - "full_name": "FBI", + "full_name": "Ian Victor Huang", "attributes": { - "laning": 76, "mechanics": 74, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 74, "consistency": 74, "shotcalling": 78, - "teamfighting": 76, "champion_pool": 75, + "discipline": 76, "mental_resilience": 75 }, - "match_name": "Ian Victor Huang", + "match_name": "FBI", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 75, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-02-11", - "nationality": "AU", - "profile_image_url": "/player-photos/1779603631115_gfcbzfqm646.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "AU", + "date_of_birth": "1999-02-11", + "stats": {}, + "profile_image_url": "/player-photos/8f5d24eb9a7a99d6.webp" } ] } \ No newline at end of file diff --git a/data/players/ldl_players.json b/data/players/ldl_players.json index 2e0b76b7a..7ed29d05f 100644 --- a/data/players/ldl_players.json +++ b/data/players/ldl_players.json @@ -1,5 +1,1297 @@ { "name": "LDL Players", "description": "LDL - 2026 Season", - "players": [] + "players": [ + { + "match_name": "xinsheng", + "id": "player-075cdc01", + "full_name": "Ding Xin-Sheng", + "position": "Top", + "team_id": "team-94b3267f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/c235cc11be9c5194.png" + }, + { + "match_name": "Ke", + "loan_listed": false, + "transfer_listed": false, + "id": "player-0a48f6ed", + "full_name": "Zhang Ke", + "position": "Support", + "team_id": "team-c6cb03ca", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/140305add4bfa8ec.webp" + }, + { + "match_name": "Miyi", + "id": "player-11a98d0e", + "full_name": "Deng Guo Ce", + "position": "Support", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/9a2a0b5f0a7da786.png" + }, + { + "match_name": "Relaxing", + "id": "player-132c37de", + "full_name": "Zhuang Yu-Kai", + "position": "ADC", + "team_id": "team-a73f2996", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/227d64b243e5ef2e.png" + }, + { + "id": "player-87550215", + "wage": 128000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a73f2996", + "position": "ADC", + "condition": 100, + "full_name": "Guo Yi-Hang", + "attributes": { + "mechanics": 80, + "laning": 78, + "teamfighting": 73, + "macro_play": 74, + "consistency": 72, + "shotcalling": 69, + "champion_pool": 81, + "discipline": 81, + "mental_resilience": 73 + }, + "match_name": "Stay", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1920000, + "birth_country": null, + "date_of_birth": "2003-01-19", + "potential_base": 87, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/92533523f9f9b44c.png", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "match_name": "SYWJJ", + "loan_listed": false, + "transfer_listed": false, + "id": "player-1ad3c256", + "full_name": "Or Wing Chit", + "position": "Top", + "team_id": "team-edb9580a", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/f298463371a4dae7.webp" + }, + { + "match_name": "Juice", + "loan_listed": false, + "transfer_listed": false, + "id": "player-1e68af4f", + "full_name": "Zhou Lin", + "position": "Top", + "team_id": "team-0c76150c", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/2cdab0c0a3cd0ee0.webp" + }, + { + "match_name": "luoyiyu", + "id": "player-31b53d20", + "full_name": "Shi Jia-Jun", + "position": "Jungle", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/0881c486ad6c7bfb.png" + }, + { + "match_name": "fishone", + "id": "player-3d7ae2a4", + "full_name": "Yu Yi", + "position": "ADC", + "team_id": "team-37ced0d1", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/748e0da4bcf424d6.png" + }, + { + "match_name": "TENG", + "id": "player-4174cafe", + "full_name": "Chu Xiao-Teng", + "position": "Support", + "team_id": "team-a73f2996", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/5b0a403e1f92e46e.png" + }, + { + "match_name": "Jungoat", + "id": "player-43534499", + "full_name": "Ka De-Rong", + "position": "Jungle", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b2c3144bee4b0b17.png" + }, + { + "id": "player-179ed265", + "wage": 35000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-13997011", + "position": "Mid", + "condition": 100, + "full_name": "Qin Jia-Hao", + "attributes": { + "mechanics": 76, + "laning": 79, + "teamfighting": 74, + "macro_play": 81, + "consistency": 82, + "shotcalling": 77, + "champion_pool": 78, + "discipline": 78, + "mental_resilience": 73 + }, + "match_name": "Linfeng", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 525000, + "birth_country": null, + "date_of_birth": "2005-02-09", + "potential_base": 94, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/412d2d36.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "match_name": "Flying", + "id": "player-4a8ec0a1", + "full_name": "Dai Hang", + "position": "Top", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/0a0b3c3dbe4a345b.png" + }, + { + "match_name": "Ryan3", + "loan_listed": false, + "transfer_listed": false, + "id": "player-580d74c6", + "full_name": "Chen Qi-Hong", + "position": "ADC", + "team_id": "team-c6cb03ca", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/0d5aec9bbe59296d.webp" + }, + { + "match_name": "JiaHao", + "id": "player-601d2b80", + "full_name": "Li Jai-Hao", + "position": "ADC", + "team_id": "team-f97df98e", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/2cf81efb8b00354e.png" + }, + { + "match_name": "pjo", + "id": "player-64c76975", + "full_name": "Lin Yi-Bo", + "position": "Support", + "team_id": "team-37ced0d1", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/48272a562fa69d42.png" + }, + { + "match_name": "Wenbo", + "id": "player-67a8e7d1", + "full_name": "Yang Wen-Bo", + "position": "Top", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b310e53d2eb200c4.png" + }, + { + "match_name": "mxx", + "id": "player-67e3036c", + "full_name": "Qi Zhi-Hong", + "position": "Jungle", + "team_id": "team-a73f2996", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/7afb4e9196e84cbe.png" + }, + { + "match_name": "Starfire", + "id": "player-6e802a7a", + "full_name": "Fu Yi-Liu", + "position": "Jungle", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/f55e403cdc840a07.png" + }, + { + "match_name": "Luxury", + "id": "player-73ea4805", + "full_name": "Qiu Jia-Quan", + "position": "Support", + "team_id": "team-f97df98e", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b81c82221b75e43d.png" + }, + { + "match_name": "putaogou", + "id": "player-7a2950e1", + "full_name": "Ma Han-Chen", + "position": "Jungle", + "team_id": "team-c6cb03ca", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/d27ff43adc4ea1c7.png" + }, + { + "match_name": "OvO", + "id": "player-85fbce5e", + "full_name": "Zhang Jia-Hao", + "position": "Support", + "team_id": "team-94b3267f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/da0387c421e8f374.png" + }, + { + "match_name": "Cyku", + "loan_listed": false, + "transfer_listed": false, + "id": "player-947b7e74", + "full_name": "Chen Jin-Ku", + "position": "Mid", + "team_id": "team-94b3267f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/9ba5fe705160ddba.webp" + }, + { + "match_name": "Liangchen", + "id": "player-993cb5c3", + "full_name": "Zhang Liang-Chen", + "position": "Top", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/1757a37a8114d159.png" + }, + { + "match_name": "Beluga", + "id": "player-aa98b82d", + "full_name": "Wang Shao-Hua", + "position": "Top", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/fd7c03402dcead7c.png" + }, + { + "match_name": "hanghang", + "id": "player-b4ab6c76", + "full_name": "Huang Yu-Hang", + "position": "Support", + "team_id": "team-edb9580a", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/dcd8204b7498d72c.png" + }, + { + "match_name": "5t5", + "id": "player-c1794c0b", + "full_name": "Zeng Jun (曾骏)", + "position": "Jungle", + "team_id": "team-94b3267f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/62bf3890d7d3cfa6.png" + }, + { + "match_name": "sjj", + "id": "player-c179da47", + "full_name": "Wu Xun", + "position": "Top", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/9d5d5f925cd06068.png" + }, + { + "match_name": "Later", + "id": "player-c35f299f", + "full_name": "Zhang Wen-Jian", + "position": "ADC", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/1f1ac09d6b706119.png" + }, + { + "match_name": "Yanxiang", + "loan_listed": false, + "transfer_listed": false, + "id": "player-ca24f005", + "full_name": "Yu Yan-Xiang", + "position": "Jungle", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/fcaaade9ebb5ac94.webp" + }, + { + "match_name": "Hran", + "id": "player-cb568d13", + "full_name": "Yu Hao-Ran", + "position": "ADC", + "team_id": "team-f97df98e", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/db53d2aeb1f27a14.png" + }, + { + "match_name": "heiYue", + "id": "player-ce515dc2", + "full_name": "Xiong Cheng-Gang", + "position": "ADC", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/66d55547a9b37cf6.png" + }, + { + "match_name": "ZiYe", + "id": "player-cebefa78", + "full_name": "Zhang Yi-Hang", + "position": "Support", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/c29c96540b8d4b8c.png" + }, + { + "match_name": "banye", + "id": "player-d475bfda", + "full_name": "Chen Hong-Jun", + "position": "Mid", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/8a2b53cf3a0de142.png" + }, + { + "match_name": "GLFS", + "loan_listed": false, + "transfer_listed": false, + "id": "player-da041064", + "full_name": "Li Hao", + "position": "Jungle", + "team_id": "team-f97df98e", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/adef84e40f02f607.webp" + }, + { + "match_name": "xlun", + "id": "player-da3ce20b", + "full_name": "Shi Jia-Lun", + "position": "Mid", + "team_id": "team-c6cb03ca", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/663c1224d0928b05.png" + }, + { + "match_name": "Mentality", + "id": "player-da456182", + "full_name": "Wei Guan-Zhen", + "position": "Mid", + "team_id": "team-0c76150c", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/73786d640fc7dd73.png" + }, + { + "match_name": "Coward", + "id": "player-df326714", + "full_name": "Zhu Shu-Wei", + "position": "Jungle", + "team_id": "team-f97df98e", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/f044133e54021037.png" + }, + { + "match_name": "chesterbb", + "id": "player-e1f92f35", + "full_name": "Yeung Kwan Ho0", + "position": "ADC", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/239735c0f32b2570.png" + }, + { + "id": "player-64957c79", + "wage": 26000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a73f2996", + "position": "ADC", + "condition": 100, + "full_name": "Zou Jia-Le", + "attributes": { + "mechanics": 80, + "laning": 85, + "teamfighting": 74, + "macro_play": 77, + "consistency": 77, + "shotcalling": 69, + "champion_pool": 79, + "discipline": 76, + "mental_resilience": 81 + }, + "match_name": "Kepler", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 390000, + "birth_country": null, + "date_of_birth": "2002-09-28", + "potential_base": 87, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/07a512d1.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "match_name": "909", + "loan_listed": false, + "transfer_listed": false, + "id": "player-e4d493fa", + "full_name": "Chi Zhi-Hong", + "position": "Mid", + "team_id": "team-8d56ae81", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/f8f44f552e3351e8.webp" + }, + { + "match_name": "Yomiya", + "id": "player-e8b74930", + "full_name": "Yao Ying-Cheng", + "position": "Support", + "team_id": "team-0c76150c", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/d73ab88940403f09.png" + }, + { + "match_name": "Stangling", + "id": "player-ef0914a8", + "full_name": "Liao Zheng-Rong", + "position": "Mid", + "team_id": "team-bf6805f5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "match_name": "charlotte", + "id": "player-f82dd204", + "full_name": "Xue Le-Hui", + "position": "Mid", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/4eccc8fd293a7c4f.png" + }, + { + "match_name": "Elysia13", + "id": "player-f9f3c124", + "full_name": "Huang Jun-Wei", + "position": "Support", + "team_id": "team-13997011", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/52bea21f1fc15f61.png" + } + ] } \ No newline at end of file diff --git a/data/players/lec_players.json b/data/players/lec_players.json index 70fc65834..4851dee4b 100644 --- a/data/players/lec_players.json +++ b/data/players/lec_players.json @@ -8,68 +8,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-movistar-koi", "position": "ADC", "condition": 100, - "full_name": "Supa", + "full_name": "David Martínez García", "photo_url": "/player-photos/103536968833612789.webp", "attributes": { - "laning": 84, "mechanics": 86, - "discipline": 82, + "laning": 84, + "teamfighting": 84, "macro_play": 83, "consistency": 82, "shotcalling": 77, - "teamfighting": 84, "champion_pool": 80, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "David Martínez García", + "match_name": "Supa", "loan_listed": false, "morale_core": {}, "nationality": "ES", - "contract_end": null, + "contract_end": "", "market_value": 160000, "birth_country": null, "date_of_birth": "2000-10-23", @@ -79,14 +42,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103536968833612789.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-103877629120745120", @@ -94,95 +50,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-movistar-koi", "position": "Jungle", "condition": 100, - "full_name": "Elyoya", + "full_name": "Javier Prades Batalla", "photo_url": "/player-photos/103877629120745120.webp", "attributes": { - "laning": 90, "mechanics": 87, - "discipline": 88, + "laning": 90, + "teamfighting": 85, "macro_play": 87, "consistency": 85, "shotcalling": 90, - "teamfighting": 85, "champion_pool": 84, + "discipline": 88, "mental_resilience": 87 }, - "match_name": "Javier Prades Batalla", + "match_name": "Elyoya", "loan_listed": false, "morale_core": {}, "nationality": "ES", - "contract_end": null, + "contract_end": "", "market_value": 200000, "birth_country": null, "date_of_birth": "2000-03-13", @@ -192,14 +84,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103877629120745120.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105830645287286396", @@ -207,86 +92,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "Jungle", "condition": 100, - "full_name": "Sheo", + "full_name": "Théo Borile", "photo_url": "/player-photos/105830645287286396.webp", "attributes": { - "laning": 75, "mechanics": 78, - "discipline": 72, + "laning": 75, + "teamfighting": 77, "macro_play": 80, "consistency": 76, "shotcalling": 78, - "teamfighting": 77, "champion_pool": 75, + "discipline": 72, "mental_resilience": 71 }, - "match_name": "Théo Borile", + "match_name": "Sheo", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 100000, "birth_country": null, "date_of_birth": "2001-07-05", @@ -296,14 +126,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105830645287286396.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107605583684952312", @@ -311,41 +134,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-vitality", "position": "Support", "condition": 100, - "full_name": "Fleshy", + "full_name": "Kadir Kemiksiz", "photo_url": "/player-photos/107605583684952312.webp", "attributes": { - "laning": 82, "mechanics": 81, - "discipline": 80, + "laning": 82, + "teamfighting": 80, "macro_play": 78, "consistency": 78, "shotcalling": 80, - "teamfighting": 80, "champion_pool": 80, + "discipline": 80, "mental_resilience": 79 }, - "match_name": "Kadir Kemiksiz", + "match_name": "Fleshy", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "2000-11-24", @@ -355,14 +168,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107605583684952312.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105501717406803640", @@ -370,82 +176,27 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-932ee946", - "team_name": "KT Rolster", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-giantx-lec", "position": "ADC", "condition": 100, - "full_name": "Noah", + "full_name": "Hyeon-taek Oh", "photo_url": "/player-photos/105501717406803640.webp", "attributes": { - "laning": 85, "mechanics": 85, - "discipline": 83, + "laning": 85, + "teamfighting": 83, "macro_play": 81, "consistency": 80, "shotcalling": 77, - "teamfighting": 83, "champion_pool": 80, + "discipline": 83, "mental_resilience": 79 }, - "match_name": "Hyeon-taek Oh", + "match_name": "Noah", "loan_listed": false, "morale_core": {}, "nationality": "KR", @@ -459,14 +210,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105501717406803640.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105647947016264573", @@ -474,59 +218,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-giantx-lec", "position": "Mid", "condition": 100, - "full_name": "Jackies", + "full_name": "Adam Jeřábek", "photo_url": "/player-photos/105647947016264573.webp", "attributes": { - "laning": 81, "mechanics": 83, - "discipline": 78, + "laning": 81, + "teamfighting": 82, "macro_play": 76, "consistency": 75, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 77, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Adam Jeřábek", + "match_name": "Jackies", "loan_listed": false, "morale_core": {}, "nationality": "CZ", - "contract_end": null, + "contract_end": "", "market_value": 150000, "birth_country": null, "date_of_birth": "2004-10-06", @@ -536,14 +252,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105647947016264573.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-109705412728201213", @@ -551,50 +260,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-fnatic", "position": "Top", "condition": 100, - "full_name": "Empyros", + "full_name": "Panagiotis Tantis", "photo_url": "/player-photos/109705412728201213.webp", "attributes": { - "laning": 73, "mechanics": 74, - "discipline": 79, + "laning": 73, + "teamfighting": 74, "macro_play": 75, "consistency": 78, "shotcalling": 74, - "teamfighting": 74, "champion_pool": 74, + "discipline": 79, "mental_resilience": 76 }, - "match_name": "Panagiotis Tantis", + "match_name": "Empyros", "loan_listed": false, "morale_core": {}, "nationality": "GR", - "contract_end": null, + "contract_end": "", "market_value": 120000, "birth_country": null, "date_of_birth": "2004-04-01", @@ -604,14 +294,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/109705412728201213.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107564404490889053", @@ -619,68 +302,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-movistar-koi", "position": "Support", "condition": 100, - "full_name": "Alvaro", + "full_name": "Álvaro Fernández del Amo", "photo_url": "/player-photos/107564404490889053.webp", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 84, + "laning": 84, + "teamfighting": 88, "macro_play": 85, "consistency": 80, "shotcalling": 84, - "teamfighting": 88, "champion_pool": 80, + "discipline": 84, "mental_resilience": 83 }, - "match_name": "Álvaro Fernández del Amo", + "match_name": "Alvaro", "loan_listed": false, "morale_core": {}, "nationality": "ES", - "contract_end": null, + "contract_end": "", "market_value": 200000, "birth_country": null, "date_of_birth": "2003-07-15", @@ -690,14 +336,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107564404490889053.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-102787200059605684", @@ -705,104 +344,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-g2-esports", "position": "Support", "condition": 100, - "full_name": "Labrov", + "full_name": "Labros Papoutsakis", "photo_url": "/player-photos/102787200059605684.webp", "attributes": { - "laning": 84, "mechanics": 83, - "discipline": 82, + "laning": 84, + "teamfighting": 83, "macro_play": 82, "consistency": 80, "shotcalling": 77, - "teamfighting": 83, "champion_pool": 80, + "discipline": 82, "mental_resilience": 80 }, - "match_name": "Labros Papoutsakis", + "match_name": "Labrov", "loan_listed": false, "morale_core": {}, "nationality": "GR", - "contract_end": null, + "contract_end": "", "market_value": 160000, "birth_country": null, "date_of_birth": "2002-02-12", @@ -812,14 +378,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/102787200059605684.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-106625308523122120", @@ -827,68 +386,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-fly2025", - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-fly2025", - "team_name": "FlyQuest", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-fly2025", - "team_name": "FlyQuest", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-karmine-corp", "position": "Support", "condition": 100, - "full_name": "Busio", + "full_name": "Alan Cwalina", "photo_url": "/player-photos/106625308523122120.webp", "attributes": { - "laning": 89, "mechanics": 88, - "discipline": 83, + "laning": 89, + "teamfighting": 85, "macro_play": 84, "consistency": 84, "shotcalling": 85, - "teamfighting": 85, "champion_pool": 84, + "discipline": 83, "mental_resilience": 84 }, - "match_name": "Alan Cwalina", + "match_name": "Busio", "loan_listed": false, "morale_core": {}, "nationality": "US", - "contract_end": null, + "contract_end": "", "market_value": 200000, "birth_country": null, "date_of_birth": "2003-10-22", @@ -898,14 +420,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/106625308523122120.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-110350224593953686", @@ -913,68 +428,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-movistar-koi", "position": "Top", "condition": 100, - "full_name": "Myrwn", + "full_name": "Alex Pastor Villarejo", "photo_url": "/player-photos/110350224593953686.webp", "attributes": { - "laning": 85, "mechanics": 86, - "discipline": 78, + "laning": 85, + "teamfighting": 85, "macro_play": 80, "consistency": 75, "shotcalling": 75, - "teamfighting": 85, "champion_pool": 90, + "discipline": 78, "mental_resilience": 85 }, - "match_name": "Alex Pastor Villarejo", + "match_name": "Myrwn", "loan_listed": false, "morale_core": {}, "nationality": "ES", - "contract_end": null, + "contract_end": "", "market_value": 170000, "birth_country": null, "date_of_birth": "2003-06-13", @@ -984,14 +462,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/110350224593953686.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105537190986692036", @@ -999,77 +470,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-karmine-corp", "position": "Jungle", "condition": 100, - "full_name": "Yike", + "full_name": "Martin Sundelin", "photo_url": "/player-photos/105537190986692036.webp", "attributes": { - "laning": 86, "mechanics": 89, - "discipline": 84, + "laning": 86, + "teamfighting": 87, "macro_play": 83, "consistency": 84, "shotcalling": 84, - "teamfighting": 87, "champion_pool": 85, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Martin Sundelin", + "match_name": "Yike", "loan_listed": false, "morale_core": {}, "nationality": "SE", - "contract_end": null, + "contract_end": "", "market_value": 180000, "birth_country": null, "date_of_birth": "2000-11-11", @@ -1079,14 +504,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105537190986692036.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107128052280762804", @@ -1094,50 +512,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-g2-esports", "position": "Jungle", "condition": 100, - "full_name": "SkewMond", + "full_name": "Rudy Semaan", "photo_url": "/player-photos/107128052280762804.webp", "attributes": { - "laning": 88, "mechanics": 87, - "discipline": 86, + "laning": 88, + "teamfighting": 86, "macro_play": 84, "consistency": 86, "shotcalling": 82, - "teamfighting": 86, "champion_pool": 83, + "discipline": 86, "mental_resilience": 88 }, - "match_name": "Rudy Semaan", + "match_name": "SkewMond", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 240000, "birth_country": null, "date_of_birth": "2004-08-09", @@ -1147,14 +546,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107128052280762804.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107840393299826151", @@ -1162,50 +554,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-natus-vincere", "position": "Mid", "condition": 100, - "full_name": "Poby", + "full_name": "Sung-won Yun", "photo_url": "/player-photos/107840393299826151.webp", "attributes": { - "laning": 81, "mechanics": 80, - "discipline": 80, + "laning": 81, + "teamfighting": 80, "macro_play": 82, "consistency": 84, "shotcalling": 78, - "teamfighting": 80, "champion_pool": 80, + "discipline": 80, "mental_resilience": 81 }, - "match_name": "Sung-won Yun", + "match_name": "Poby", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 160000, "birth_country": null, "date_of_birth": "2006-02-07", @@ -1215,14 +588,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107840393299826151.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107045034481599547", @@ -1230,59 +596,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-fnatic", "position": "Mid", "condition": 100, - "full_name": "Vladi", + "full_name": "Vladimiros Kourtidis", "photo_url": "/player-photos/107045034481599547.webp", "attributes": { - "laning": 77, "mechanics": 80, - "discipline": 75, + "laning": 77, + "teamfighting": 79, "macro_play": 79, "consistency": 73, "shotcalling": 78, - "teamfighting": 79, "champion_pool": 77, + "discipline": 75, "mental_resilience": 77 }, - "match_name": "Vladimiros Kourtidis", + "match_name": "Vladi", "loan_listed": false, "morale_core": {}, "nationality": "GR", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2005-08-12", @@ -1292,14 +630,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107045034481599547.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "player-cb07c2cc", @@ -1307,72 +638,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "KT Rolster Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "KT Rolster Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-bd98ddef", - "team_name": "HANJIN BRION", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Misa Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "ADC", "condition": 100, - "full_name": "Hype", + "full_name": "Byeon Jeong-hyeon", "attributes": { - "laning": 75, "mechanics": 75, - "discipline": 77, + "laning": 75, + "teamfighting": 70, "macro_play": 74, "consistency": 69, "shotcalling": 72, - "teamfighting": 70, "champion_pool": 74, + "discipline": 77, "mental_resilience": 73 }, - "match_name": "Byeon Jeong-hyeon", + "match_name": "Hype", "loan_listed": false, "morale_core": {}, "nationality": "South Korea", @@ -1385,16 +670,14 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "natural_position": "ADC", - "profile_image_url": null, + "natural_position": "Adc", + "profile_image_url": "/player-photos/d631e67f79ced9dc.png", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "lec-player-98767975968177297", @@ -1402,131 +685,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-g2-esports", "position": "Mid", "condition": 100, - "full_name": "Caps", + "full_name": "Rasmus Winther", "photo_url": "/player-photos/98767975968177297.webp", "attributes": { - "laning": 85, "mechanics": 85, - "discipline": 90, + "laning": 85, + "teamfighting": 88, "macro_play": 93, "consistency": 90, "shotcalling": 93, - "teamfighting": 88, "champion_pool": 86, + "discipline": 90, "mental_resilience": 92 }, - "match_name": "Rasmus Winther", + "match_name": "Caps", "loan_listed": false, "morale_core": {}, "nationality": "DK", - "contract_end": null, + "contract_end": "", "market_value": 230000, "birth_country": null, "date_of_birth": "1999-11-17", @@ -1536,14 +719,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/98767975968177297.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107464179845128878", @@ -1551,50 +727,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-giantx-lec", "position": "Jungle", "condition": 100, - "full_name": "ISMA", + "full_name": "Ismaïl Boualem", "photo_url": "/player-photos/107464179845128878.webp", "attributes": { - "laning": 77, "mechanics": 79, - "discipline": 82, + "laning": 77, + "teamfighting": 78, "macro_play": 79, "consistency": 78, "shotcalling": 80, - "teamfighting": 78, "champion_pool": 76, + "discipline": 82, "mental_resilience": 79 }, - "match_name": "Ismaïl Boualem", + "match_name": "ISMA", "loan_listed": false, "morale_core": {}, "nationality": "BE", - "contract_end": null, + "contract_end": "", "market_value": 120000, "birth_country": null, "date_of_birth": "2001-06-20", @@ -1604,14 +761,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107464179845128878.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-103495716771322725", @@ -1619,95 +769,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "team-2c4f82f9", - "team_name": "T1", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-2c4f82f9", - "team_name": "T1", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-61bd92d5", - "team_name": "NS RedForce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-41bf07a6", - "team_name": "Dplus KIA", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-karmine-corp", "position": "Top", "condition": 100, - "full_name": "Canna", + "full_name": "Chang-dong Kim", "photo_url": "/player-photos/103495716771322725.webp", "attributes": { - "laning": 88, "mechanics": 84, - "discipline": 88, + "laning": 88, + "teamfighting": 86, "macro_play": 88, "consistency": 88, "shotcalling": 82, - "teamfighting": 86, "champion_pool": 85, + "discipline": 88, "mental_resilience": 86 }, - "match_name": "Chang-dong Kim", + "match_name": "Canna", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 190000, "birth_country": null, "date_of_birth": "2000-02-11", @@ -1717,14 +803,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103495716771322725.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-108205130709313212", @@ -1732,59 +811,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-bc4c40ec", - "team_name": "Kiwoom DRX", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-karmine-corp", "position": "Mid", "condition": 100, - "full_name": "kyeahoo", + "full_name": "Yea-hoo Kang", "photo_url": "/player-photos/108205130709313212.webp", "attributes": { - "laning": 82, "mechanics": 86, - "discipline": 85, + "laning": 82, + "teamfighting": 84, "macro_play": 82, "consistency": 81, "shotcalling": 74, - "teamfighting": 84, "champion_pool": 83, + "discipline": 85, "mental_resilience": 79 }, - "match_name": "Yea-hoo Kang", + "match_name": "kyeahoo", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 190000, "birth_country": null, "date_of_birth": "2005-08-13", @@ -1794,14 +845,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/108205130709313212.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-99322214618656216", @@ -1809,131 +853,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Splyce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Splyce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Splyce", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-sk-gaming", "position": "Top", "condition": 100, - "full_name": "Wunder", + "full_name": "Martin Nordahl Hansen", "photo_url": "/player-photos/99322214618656216.webp", "attributes": { - "laning": 76, "mechanics": 75, - "discipline": 72, + "laning": 76, + "teamfighting": 77, "macro_play": 76, "consistency": 74, "shotcalling": 79, - "teamfighting": 77, "champion_pool": 82, + "discipline": 72, "mental_resilience": 77 }, - "match_name": "Martin Nordahl Hansen", + "match_name": "Wunder", "loan_listed": false, "morale_core": {}, "nationality": "DK", - "contract_end": null, + "contract_end": "", "market_value": 100000, "birth_country": null, "date_of_birth": "1998-11-09", @@ -1943,14 +887,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/99322214618656216.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-103889902476986558", @@ -1958,41 +895,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-sk-gaming", "position": "Mid", "condition": 100, - "full_name": "LIDER", + "full_name": "Adam Ilyasov", "photo_url": "/player-photos/103889902476986558.webp", "attributes": { - "laning": 75, "mechanics": 76, - "discipline": 70, + "laning": 75, + "teamfighting": 75, "macro_play": 72, "consistency": 69, "shotcalling": 74, - "teamfighting": 75, "champion_pool": 68, + "discipline": 70, "mental_resilience": 72 }, - "match_name": "Adam Ilyasov", + "match_name": "LIDER", "loan_listed": false, "morale_core": {}, "nationality": "NO", - "contract_end": null, + "contract_end": "", "market_value": 70000, "birth_country": null, "date_of_birth": "1999-07-03", @@ -2002,14 +929,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103889902476986558.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105515296576479523", @@ -2017,50 +937,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "Jungle", "condition": 100, - "full_name": "Boukada", + "full_name": "Mehdi Lahlou", "photo_url": "/player-photos/105515296576479523.webp", "attributes": { - "laning": 69, "mechanics": 72, - "discipline": 70, + "laning": 69, + "teamfighting": 72, "macro_play": 67, "consistency": 71, "shotcalling": 70, - "teamfighting": 72, "champion_pool": 68, + "discipline": 70, "mental_resilience": 69 }, - "match_name": "Mehdi Lahlou", + "match_name": "Boukada", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 80000, "birth_country": null, "date_of_birth": "2002-10-01", @@ -2070,14 +971,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105515296576479523.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105503548109547493", @@ -2085,59 +979,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-vitality", "position": "Jungle", "condition": 100, - "full_name": "Lyncas", + "full_name": "Linas Nauncikas", "photo_url": "/player-photos/105503548109547493.webp", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 82, + "laning": 82, + "teamfighting": 83, "macro_play": 82, "consistency": 80, "shotcalling": 82, - "teamfighting": 83, "champion_pool": 78, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Linas Nauncikas", + "match_name": "Lyncas", "loan_listed": false, "morale_core": {}, "nationality": "LT", - "contract_end": null, + "contract_end": "", "market_value": 170000, "birth_country": null, "date_of_birth": "2003-12-10", @@ -2147,14 +1013,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105503548109547493.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-98767975961872793", @@ -2162,131 +1021,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esportsg", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-tl2025", - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-tl2025", - "team_name": "Team Liquid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "eu-lcs-l-misfits", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "eu-lcs-l-misfits", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "eu-lcs-l-misfits", - "team_name": "Misfits", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-g2-esports", "position": "ADC", "condition": 100, - "full_name": "Hans Sama", + "full_name": "Steven Liv", "photo_url": "/player-photos/98767975961872793.webp", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 85, + "laning": 84, + "teamfighting": 84, "macro_play": 84, "consistency": 86, "shotcalling": 83, - "teamfighting": 84, "champion_pool": 79, + "discipline": 85, "mental_resilience": 84 }, - "match_name": "Steven Liv", + "match_name": "Hans Sama", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 170000, "birth_country": null, "date_of_birth": "1999-09-02", @@ -2296,14 +1055,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/98767975961872793.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107492067202132417", @@ -2311,41 +1063,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-fnatic", "position": "Support", "condition": 100, - "full_name": "Lospa", + "full_name": "Joon-hyeong Park", "photo_url": "/player-photos/107492067202132417.webp", "attributes": { - "laning": 82, "mechanics": 81, - "discipline": 78, + "laning": 82, + "teamfighting": 80, "macro_play": 80, "consistency": 78, "shotcalling": 75, - "teamfighting": 80, "champion_pool": 77, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Joon-hyeong Park", + "match_name": "Lospa", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 150000, "birth_country": null, "date_of_birth": "2002-09-30", @@ -2355,14 +1097,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107492067202132417.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105501834624360050", @@ -2370,59 +1105,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "ADC", "condition": 100, - "full_name": "Ice", + "full_name": "Yoon Sang-hoon", "photo_url": "/player-photos/105501834624360050.webp", "attributes": { - "laning": 81, "mechanics": 84, - "discipline": 80, + "laning": 81, + "teamfighting": 81, "macro_play": 80, "consistency": 82, "shotcalling": 72, - "teamfighting": 81, "champion_pool": 78, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Yoon Sang-hoon", + "match_name": "Ice", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2001-04-09", @@ -2432,14 +1139,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105501834624360050.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-101389808348806587", @@ -2447,59 +1147,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-sk-gaming", "position": "Jungle", "condition": 100, - "full_name": "Skeanz", - "photo_url": null, + "full_name": "Duncan Marquet", + "photo_url": "/player-photos/101389808348806587.webp", "attributes": { - "laning": 72, "mechanics": 74, - "discipline": 75, + "laning": 72, + "teamfighting": 72, "macro_play": 73, "consistency": 76, "shotcalling": 75, - "teamfighting": 72, "champion_pool": 76, + "discipline": 75, "mental_resilience": 75 }, - "match_name": "Duncan Marquet", + "match_name": "Skeanz", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 90000, "birth_country": null, "date_of_birth": "2000-09-25", @@ -2508,15 +1180,8 @@ "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], - "profile_image_url": "/player-photos/1778443774092_w3rovgcm13.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/f4492cc60da2dece.webp", + "potential_revealed": null }, { "id": "lec-player-105548731617719496", @@ -2524,41 +1189,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-natus-vincere", "position": "Jungle", "condition": 100, - "full_name": "Rhilech", + "full_name": "Enes Uçan", "photo_url": "/player-photos/105548731617719496.webp", "attributes": { - "laning": 81, "mechanics": 85, - "discipline": 80, + "laning": 81, + "teamfighting": 84, "macro_play": 80, "consistency": 80, "shotcalling": 82, - "teamfighting": 84, "champion_pool": 79, + "discipline": 80, "mental_resilience": 84 }, - "match_name": "Enes Uçan", + "match_name": "Rhilech", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 210000, "birth_country": null, "date_of_birth": "2005-10-15", @@ -2568,14 +1223,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105548731617719496.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-102174699705191142", @@ -2583,41 +1231,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "Mid", "condition": 100, - "full_name": "Serin", + "full_name": "Tolga Ölmez", "photo_url": "/player-photos/102174699705191142.webp", "attributes": { - "laning": 80, "mechanics": 77, - "discipline": 78, + "laning": 80, + "teamfighting": 76, "macro_play": 75, "consistency": 78, "shotcalling": 75, - "teamfighting": 76, "champion_pool": 75, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Tolga Ölmez", + "match_name": "Serin", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2002-04-10", @@ -2627,14 +1265,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/102174699705191142.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107492114500277895", @@ -2642,41 +1273,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "ADC", "condition": 100, - "full_name": "Paduck", + "full_name": "Seok-hyeon Park", "photo_url": "/player-photos/107492114500277895.webp", "attributes": { - "laning": 78, "mechanics": 80, - "discipline": 78, + "laning": 78, + "teamfighting": 78, "macro_play": 78, "consistency": 79, "shotcalling": 68, - "teamfighting": 78, "champion_pool": 77, + "discipline": 78, "mental_resilience": 75 }, - "match_name": "Seok-hyeon Park", + "match_name": "Paduck", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "2005-02-12", @@ -2686,14 +1307,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107492114500277895.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-99566406047571736", @@ -2701,113 +1315,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "eu-lcs-l-fc-schalke-04", - "team_name": "FC Schalke 04 ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Team SoloMid", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Team SoloMid", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-g2-esports", "position": "Top", "condition": 100, - "full_name": "BrokenBlade", + "full_name": "Sergen Çelik", "photo_url": "/player-photos/99566406047571736.webp", "attributes": { - "laning": 86, "mechanics": 84, - "discipline": 83, + "laning": 86, + "teamfighting": 84, "macro_play": 86, "consistency": 80, "shotcalling": 84, - "teamfighting": 84, "champion_pool": 88, + "discipline": 83, "mental_resilience": 83 }, - "match_name": "Sergen Çelik", + "match_name": "BrokenBlade", "loan_listed": false, "morale_core": {}, "nationality": "DE", - "contract_end": null, + "contract_end": "", "market_value": 170000, "birth_country": null, "date_of_birth": "2000-01-19", @@ -2817,14 +1349,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/99566406047571736.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-109461265532592848", @@ -2832,50 +1357,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-karmine-corp", "position": "ADC", "condition": 100, - "full_name": "Caliste", + "full_name": "Caliste Henry-Hennebert", "photo_url": "/player-photos/109461265532592848.webp", "attributes": { - "laning": 87, "mechanics": 88, - "discipline": 85, + "laning": 87, + "teamfighting": 85, "macro_play": 82, "consistency": 85, "shotcalling": 82, - "teamfighting": 85, "champion_pool": 80, + "discipline": 85, "mental_resilience": 87 }, - "match_name": "Caliste Henry-Hennebert", + "match_name": "Caliste", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 230000, "birth_country": null, "date_of_birth": "2006-08-28", @@ -2885,14 +1391,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/109461265532592848.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-99322214629661297", @@ -2900,131 +1399,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "Excel Espots", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "Splyce", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Splyce", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-sk-gaming", "position": "Support", "condition": 100, - "full_name": "Mikyx", + "full_name": "Mihael Mehle", "photo_url": "/player-photos/99322214629661297.webp", "attributes": { - "laning": 79, "mechanics": 78, - "discipline": 78, + "laning": 79, + "teamfighting": 78, "macro_play": 81, "consistency": 77, "shotcalling": 84, - "teamfighting": 78, "champion_pool": 82, + "discipline": 78, "mental_resilience": 78 }, - "match_name": "Mihael Mehle", + "match_name": "Mikyx", "loan_listed": false, "morale_core": {}, "nationality": "SI", - "contract_end": null, + "contract_end": "", "market_value": 120000, "birth_country": null, "date_of_birth": "1998-11-02", @@ -3034,14 +1433,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/99322214629661297.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105700869624784693", @@ -3049,41 +1441,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-natus-vincere", "position": "Top", "condition": 100, - "full_name": "Maynter", + "full_name": "Volodymyr Sorokin", "photo_url": "/player-photos/105700869624784693.webp", "attributes": { - "laning": 81, "mechanics": 76, - "discipline": 82, + "laning": 81, + "teamfighting": 78, "macro_play": 77, "consistency": 82, "shotcalling": 76, - "teamfighting": 78, "champion_pool": 75, + "discipline": 82, "mental_resilience": 78 }, - "match_name": "Volodymyr Sorokin", + "match_name": "Maynter", "loan_listed": false, "morale_core": {}, "nationality": "UA", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "2000-12-15", @@ -3093,14 +1475,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105700869624784693.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107767810249714879", @@ -3108,50 +1483,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "Top", "condition": 100, - "full_name": "Rooster", + "full_name": "Yun-hwan Shin", "photo_url": "/player-photos/107767810249714879.webp", "attributes": { - "laning": 82, "mechanics": 80, - "discipline": 78, + "laning": 82, + "teamfighting": 76, "macro_play": 72, "consistency": 75, "shotcalling": 68, - "teamfighting": 76, "champion_pool": 72, + "discipline": 78, "mental_resilience": 77 }, - "match_name": "Yun-hwan Shin", + "match_name": "Rooster", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "2005-04-28", @@ -3161,14 +1517,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107767810249714879.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107492119089043087", @@ -3176,41 +1525,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "Support", "condition": 100, - "full_name": "Way", + "full_name": "Han GIl", "photo_url": "/player-photos/107492119089043087.webp", "attributes": { - "laning": 74, "mechanics": 77, - "discipline": 79, + "laning": 74, + "teamfighting": 76, "macro_play": 78, "consistency": 78, "shotcalling": 68, - "teamfighting": 76, "champion_pool": 78, + "discipline": 79, "mental_resilience": 75 }, - "match_name": "Han GIl", + "match_name": "Way", "loan_listed": false, "morale_core": {}, "nationality": "KR", - "contract_end": null, + "contract_end": "", "market_value": 120000, "birth_country": null, "date_of_birth": "2002-06-29", @@ -3220,14 +1559,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107492119089043087.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-102787200044335760", @@ -3235,104 +1567,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "MAD Lions", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-vitality", "position": "ADC", "condition": 100, - "full_name": "Carzzy", + "full_name": "Matyáš Orság", "photo_url": "/player-photos/102787200044335760.webp", "attributes": { - "laning": 84, "mechanics": 83, - "discipline": 77, + "laning": 84, + "teamfighting": 83, "macro_play": 81, "consistency": 76, "shotcalling": 80, - "teamfighting": 83, "champion_pool": 81, + "discipline": 77, "mental_resilience": 79 }, - "match_name": "Matyáš Orság", + "match_name": "Carzzy", "loan_listed": false, "morale_core": {}, "nationality": "CZ", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2002-01-31", @@ -3342,14 +1601,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/102787200044335760.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105501802535116331", @@ -3357,91 +1609,27 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Kiwoon DRX Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-2166882d", - "team_name": "DN SOOPers", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-giantx-lec", "position": "Support", "condition": 100, - "full_name": "Jun", + "full_name": "Yoon Se-jun", "photo_url": "/player-photos/105501802535116331.webp", "attributes": { - "laning": 86, "mechanics": 84, - "discipline": 82, + "laning": 86, + "teamfighting": 83, "macro_play": 84, "consistency": 82, "shotcalling": 80, - "teamfighting": 83, "champion_pool": 80, + "discipline": 82, "mental_resilience": 82 }, - "match_name": "Yoon Se-jun", + "match_name": "Jun", "loan_listed": false, "morale_core": {}, "nationality": "KR", @@ -3455,14 +1643,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105501802535116331.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107605411481021064", @@ -3470,50 +1651,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-vitality", "position": "Top", "condition": 100, - "full_name": "Naak Nako", + "full_name": "Kaan Okan", "photo_url": "/player-photos/107605411481021064.webp", "attributes": { - "laning": 88, "mechanics": 90, - "discipline": 84, + "laning": 88, + "teamfighting": 86, "macro_play": 85, "consistency": 85, "shotcalling": 82, - "teamfighting": 86, "champion_pool": 86, + "discipline": 84, "mental_resilience": 85 }, - "match_name": "Kaan Okan", + "match_name": "Naak Nako", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 240000, "birth_country": null, "date_of_birth": "2005-03-24", @@ -3523,14 +1685,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107605411481021064.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-103805069759346933", @@ -3538,50 +1693,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-natus-vincere", "position": "Support", "condition": 100, - "full_name": "Parus", + "full_name": "Polat Çiçek", "photo_url": "/player-photos/103805069759346933.webp", "attributes": { - "laning": 84, "mechanics": 82, - "discipline": 81, + "laning": 84, + "teamfighting": 82, "macro_play": 85, "consistency": 81, "shotcalling": 84, - "teamfighting": 82, "champion_pool": 82, + "discipline": 81, "mental_resilience": 83 }, - "match_name": "Polat Çiçek", + "match_name": "Parus", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 190000, "birth_country": null, "date_of_birth": "2003-02-22", @@ -3591,14 +1727,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103805069759346933.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-103495716738607011", @@ -3606,41 +1735,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-giantx-lec", - "team_name": "GIANTX", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-giantx-lec", "position": "Top", "condition": 100, - "full_name": "Lot", + "full_name": "Eren Yıldız", "photo_url": "/player-photos/103495716738607011.webp", "attributes": { - "laning": 80, "mechanics": 82, - "discipline": 78, + "laning": 80, + "teamfighting": 79, "macro_play": 76, "consistency": 75, "shotcalling": 78, - "teamfighting": 79, "champion_pool": 76, + "discipline": 78, "mental_resilience": 76 }, - "match_name": "Eren Yıldız", + "match_name": "Lot", "loan_listed": false, "morale_core": {}, "nationality": "TR", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2004-01-02", @@ -3650,14 +1769,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/103495716738607011.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105504920899018806", @@ -3665,68 +1777,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-movistar-koi", - "team_name": "Movistar KOI", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-c92025", - "team_name": "Cloud9", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "team-c92025", - "team_name": "Cloud9", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-movistar-koi", "position": "Mid", "condition": 100, - "full_name": "Jojopyun", + "full_name": "Joseph Joon Pyun", "photo_url": "/player-photos/105504920899018806.webp", "attributes": { - "laning": 93, "mechanics": 91, - "discipline": 80, + "laning": 93, + "teamfighting": 88, "macro_play": 87, "consistency": 82, "shotcalling": 86, - "teamfighting": 88, "champion_pool": 82, + "discipline": 80, "mental_resilience": 85 }, - "match_name": "Joseph Joon Pyun", + "match_name": "Jojopyun", "loan_listed": false, "morale_core": {}, "nationality": "CA", - "contract_end": null, + "contract_end": "", "market_value": 240000, "birth_country": null, "date_of_birth": "2004-10-01", @@ -3736,14 +1811,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105504920899018806.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-100238780551262852", @@ -3751,104 +1819,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Misfits", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Misfits", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-fnatic", "position": "Jungle", "condition": 100, - "full_name": "Razork", + "full_name": "Iván Martín Díaz", "photo_url": "/player-photos/100238780551262852.webp", "attributes": { - "laning": 81, "mechanics": 84, - "discipline": 81, + "laning": 81, + "teamfighting": 83, "macro_play": 80, "consistency": 78, "shotcalling": 80, - "teamfighting": 83, "champion_pool": 82, + "discipline": 81, "mental_resilience": 79 }, - "match_name": "Iván Martín Díaz", + "match_name": "Razork", "loan_listed": false, "morale_core": {}, "nationality": "ES", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "2000-10-07", @@ -3858,14 +1853,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/100238780551262852.webp", - "potential_revealed": null, - "natural_position": "Jungle", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-102181528883745160", @@ -3873,95 +1861,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-0e114265", - "team_name": "Vivo Keyd Stars", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Rogue", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "Support", "condition": 100, - "full_name": "Trymbi", + "full_name": "Adrian Trybus", "photo_url": "/player-photos/102181528883745160.webp", "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 73, + "laning": 72, + "teamfighting": 74, "macro_play": 74, "consistency": 75, "shotcalling": 77, - "teamfighting": 74, "champion_pool": 78, + "discipline": 73, "mental_resilience": 75 }, - "match_name": "Adrian Trybus", + "match_name": "Trymbi", "loan_listed": false, "morale_core": {}, "nationality": "PL", - "contract_end": null, + "contract_end": "", "market_value": 80000, "birth_country": null, "date_of_birth": "2000-10-20", @@ -3971,14 +1895,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/102181528883745160.webp", - "potential_revealed": null, - "natural_position": "Support", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-104287359934240404", @@ -3986,64 +1903,27 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Victory Five", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "team-861ba8cb", - "team_name": "Hanwha Life Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-natus-vincere", - "team_name": "Natus Vincere", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-natus-vincere", "position": "ADC", "condition": 100, - "full_name": "SamD", + "full_name": "Jae-hoon Lee", "photo_url": "/player-photos/104287359934240404.webp", "attributes": { - "laning": 78, "mechanics": 81, - "discipline": 81, + "laning": 78, + "teamfighting": 82, "macro_play": 76, "consistency": 80, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 80, + "discipline": 81, "mental_resilience": 78 }, - "match_name": "Jae-hoon Lee", + "match_name": "SamD", "loan_listed": false, "morale_core": {}, "nationality": "KR", @@ -4057,14 +1937,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/104287359934240404.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105554437688383476", @@ -4072,86 +1945,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-shifters", - "team_name": "Shifters", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "FC Schalke 04 ", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-shifters", "position": "Mid", "condition": 100, - "full_name": "nuc", + "full_name": "Ilias Bizriken", "photo_url": "/player-photos/105554437688383476.webp", "attributes": { - "laning": 80, "mechanics": 82, - "discipline": 78, + "laning": 80, + "teamfighting": 80, "macro_play": 81, "consistency": 80, "shotcalling": 80, - "teamfighting": 80, "champion_pool": 80, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Ilias Bizriken", + "match_name": "nuc", "loan_listed": false, "morale_core": {}, "nationality": "FR", - "contract_end": null, + "contract_end": "", "market_value": 130000, "birth_country": null, "date_of_birth": "2002-10-17", @@ -4161,14 +1979,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105554437688383476.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-107156544177574787", @@ -4176,50 +1987,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "Top", "condition": 100, - "full_name": "Tracyn", + "full_name": "Sebastian Wojtoń", "photo_url": "/player-photos/107156544177574787.webp", "attributes": { - "laning": 76, "mechanics": 80, - "discipline": 80, + "laning": 76, + "teamfighting": 74, "macro_play": 74, "consistency": 76, "shotcalling": 77, - "teamfighting": 74, "champion_pool": 72, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Sebastian Wojtoń", + "match_name": "Tracyn", "loan_listed": false, "morale_core": {}, "nationality": "PL", - "contract_end": null, + "contract_end": "", "market_value": 150000, "birth_country": null, "date_of_birth": "2005-09-16", @@ -4229,14 +2021,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/107156544177574787.webp", - "potential_revealed": null, - "natural_position": "Top", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-100356590519370319", @@ -4244,104 +2029,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "MAD Lions", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-vitality", "position": "Mid", "condition": 100, - "full_name": "Humanoid", + "full_name": "Marek Brázda", "photo_url": "/player-photos/100356590519370319.webp", "attributes": { - "laning": 86, "mechanics": 88, - "discipline": 78, + "laning": 86, + "teamfighting": 86, "macro_play": 85, "consistency": 75, "shotcalling": 85, - "teamfighting": 86, "champion_pool": 85, + "discipline": 78, "mental_resilience": 80 }, - "match_name": "Marek Brázda", + "match_name": "Humanoid", "loan_listed": false, "morale_core": {}, "nationality": "CZ", - "contract_end": null, + "contract_end": "", "market_value": 160000, "birth_country": null, "date_of_birth": "2000-03-14", @@ -4351,14 +2063,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/100356590519370319.webp", - "potential_revealed": null, - "natural_position": "Mid", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "player-e8115334", @@ -4366,54 +2071,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-team-heretics-lec", - "team_name": "Team Heretics", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-team-heretics-lec", "position": "Mid", "condition": 100, - "full_name": "Daglas", + "full_name": "Kacper Dagiel", "attributes": { - "laning": 78, "mechanics": 79, - "discipline": 74, + "laning": 78, + "teamfighting": 76, "macro_play": 77, "consistency": 72, "shotcalling": 67, - "teamfighting": 76, "champion_pool": 74, + "discipline": 74, "mental_resilience": 71 }, - "match_name": "Kacper Dagiel", + "match_name": "Daglas", "loan_listed": false, "morale_core": {}, "nationality": "Poland", @@ -4427,15 +2104,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Mid", - "profile_image_url": "/player-photos/1778521405223_gzfapz3o6ee.webp", + "profile_image_url": "/player-photos/315b2a75.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "lec-player-99322214653265200", @@ -4443,131 +2118,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "lec-karmine-corp", - "team_name": "Karmine Corp", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "lec-team-vitality", - "team_name": "Team Vitality", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Origen", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "FC Schalke 04 ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "FC Schalke 04 ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "", - "team_name": "FC Schalke 04 ", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "lec-fnatic", - "team_name": "Fnatic", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-fnatic", "position": "ADC", "condition": 100, - "full_name": "Upset", + "full_name": "Elias Lipp", "photo_url": "/player-photos/99322214653265200.webp", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 82, + "laning": 84, + "teamfighting": 80, "macro_play": 81, "consistency": 82, "shotcalling": 79, - "teamfighting": 80, "champion_pool": 76, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Elias Lipp", + "match_name": "Upset", "loan_listed": false, "morale_core": {}, "nationality": "DE", - "contract_end": null, + "contract_end": "", "market_value": 140000, "birth_country": null, "date_of_birth": "1999-12-16", @@ -4577,14 +2152,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/99322214653265200.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null }, { "id": "lec-player-105553696718837337", @@ -4592,41 +2160,31 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-sk-gaming", - "team_name": "SK Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "lec-sk-gaming", "position": "ADC", "condition": 100, - "full_name": "Jopa", + "full_name": "Josip Čančar", "photo_url": "/player-photos/105553696718837337.webp", "attributes": { - "laning": 80, "mechanics": 82, - "discipline": 80, + "laning": 80, + "teamfighting": 82, "macro_play": 76, "consistency": 80, "shotcalling": 77, - "teamfighting": 82, "champion_pool": 79, + "discipline": 80, "mental_resilience": 80 }, - "match_name": "Josip Čančar", + "match_name": "Jopa", "loan_listed": false, "morale_core": {}, "nationality": "HR", - "contract_end": null, + "contract_end": "", "market_value": 160000, "birth_country": null, "date_of_birth": "2003-11-03", @@ -4636,14 +2194,7 @@ "transfer_offers": [], "champion_mastery": [], "profile_image_url": "/player-photos/105553696718837337.webp", - "potential_revealed": null, - "natural_position": "ADC", - "alternate_positions": [], - "traits": [], - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_revealed": null } ] } \ No newline at end of file diff --git a/data/players/les_players.json b/data/players/les_players.json index a7705aa1d..5fa654419 100644 --- a/data/players/les_players.json +++ b/data/players/les_players.json @@ -3,1175 +3,1511 @@ "description": "LES - 2026 Season", "players": [ { - "id": "player-ae7ddfdc", - "match_name": "Lukas Thoma", - "full_name": "Lurox", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-0009236e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mohamed Rahli", "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 73, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 72, + "mechanics": 72, + "laning": 70, + "teamfighting": 71, + "macro_play": 71, + "consistency": 72, + "shotcalling": 70, "champion_pool": 69, + "discipline": 71, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "traits": [], - "contract_end": null, + "match_name": "Myrtus", + "loan_listed": false, + "contract_end": "2006-10-01", + "transfer_listed": false, + "position": "Support", + "team_id": "team-8baee3fd", + "nationality": "FR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f10b156f", - "team_name": "Team Heretics Academy", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d454e47718c3a465.webp" }, { - "id": "player-84b65132", - "match_name": "Ethe", - "full_name": "Ethe", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 66, - "discipline": 73, - "macro_play": 67, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 70 - }, - "condition": 100, + "id": "player-01097f36", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-5d7b3ec4", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Besmir Jakupi", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "iLevi", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-129835c5", + "nationality": "AL", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a57473bc30b3fef6.webp" }, { - "id": "player-e0564ecf", - "match_name": "NightSlayer", - "full_name": "Ivan Oleksandrovich Bilous", - "date_of_birth": "2008-01-18", - "nationality": "UA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0356e082", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Batu Kaygusuz", "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 72, - "macro_play": 72, + "mechanics": 74, + "laning": 73, + "teamfighting": 74, + "macro_play": 74, "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 + "shotcalling": 65, + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "traits": [], - "contract_end": null, + "match_name": "Batuuu", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-f10b156f", + "nationality": "TR", + "date_of_birth": "2006-10-01", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/dd76de473232277a.webp" }, { - "id": "player-99cc0f13", - "match_name": "Pasameelcelo", - "full_name": "Jordi Franco Carreras", - "date_of_birth": "2000-01-01", - "nationality": "AD", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 - }, - "condition": 100, + "id": "player-05bf3172", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-ac846213", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-5d7b3ec4", + "condition": 100, + "full_name": "Marc Villalba de la Arada", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 72, + "mental_resilience": 70 + }, + "match_name": "Marcv1", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 75, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": "2002-01-01", + "stats": {}, + "profile_image_url": "/player-photos/d3a3c6122b3c6786.webp" }, { - "id": "player-d421b0b0", - "match_name": "ManoloGap", - "full_name": "ManoloGap", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-067b9a1f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d0d82673", + "condition": 100, + "full_name": "Kaii", "attributes": { - "laning": 66, - "mechanics": 71, - "discipline": 71, + "mechanics": 70, + "laning": 70, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 69, "champion_pool": 71, + "discipline": 70, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Jorge Saiz Hoyos", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": "2005-01-01", + "stats": {}, + "profile_image_url": "/player-photos/08832f94df713de5.webp" }, { - "id": "player-a3298211", - "match_name": "Papiteero", - "full_name": "Papiteero", - "date_of_birth": "2000-01-01", - "nationality": "PT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0db426ec", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Tomáš Buštík", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 72, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 72, + "mechanics": 70, + "laning": 70, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, + "shotcalling": 66, "champion_pool": 71, - "mental_resilience": 72 + "discipline": 69, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "traits": [], - "contract_end": null, + "match_name": "TIMR", + "loan_listed": false, + "contract_end": "2004-01-01", + "transfer_listed": false, + "position": "Support", + "team_id": "team-d0d82673", + "nationality": "CZ", + "date_of_birth": null, "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/ce7020dd7d08e7d1.webp" }, { - "id": "player-dd59bec5", - "match_name": "Pegaso", - "full_name": "Pegaso", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-0ffbaa57", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5d7b3ec4", + "condition": 100, + "full_name": "Alejandro Botella Santos", "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 73, + "mechanics": 66, + "laning": 64, + "teamfighting": 66, "macro_play": 66, - "consistency": 66, + "consistency": 65, "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 67, + "discipline": 69, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Clicker", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 74, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "ES", + "date_of_birth": "2001-01-01", + "stats": {}, + "profile_image_url": "/player-photos/09b703c013c9a084.webp" }, { "id": "player-13ab177c", - "match_name": "Ivama", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ac846213", + "condition": 100, "full_name": "Iván Torn Cubero", - "date_of_birth": "2003-01-01", - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 74, + "laning": 72, + "teamfighting": 74, "macro_play": 72, "consistency": 72, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ivama", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "ES", + "date_of_birth": "2003-01-01", + "stats": {}, + "profile_image_url": "/player-photos/689c080b00d86fba.webp" }, { - "id": "player-a1e8bb06", - "match_name": "Midnight", - "full_name": "Midnight", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-1c6a23ab", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d0d82673", + "condition": 100, + "full_name": "Raúl Moreno Valero", "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 72, - "macro_play": 67, - "consistency": 68, + "mechanics": 70, + "laning": 70, + "teamfighting": 71, + "macro_play": 71, + "consistency": 70, "shotcalling": 71, - "teamfighting": 66, "champion_pool": 69, - "mental_resilience": 70 + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Hydra", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-668b7148", - "match_name": "Kozi", - "full_name": "Jarosław Marchewka", - "date_of_birth": "2005-04-06", - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "ES", + "date_of_birth": "2002-01-01", + "stats": {}, + "profile_image_url": "/player-photos/05700fe1d19b57ab.webp" }, { - "id": "player-74525cde", - "match_name": "Th3Antonio", - "full_name": "Antonio Espinosa Bejarano", - "date_of_birth": "1999-04-12", - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-8130e9c4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-06974122", + "position": "Mid", + "condition": 100, + "full_name": "Sergio Bouzende Rodrigues", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 70, + "laning": 67, + "teamfighting": 67, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 70 + "champion_pool": 66, + "discipline": 68, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-854f6893", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Macaquinho", + "loan_listed": false, + "morale_core": {}, + "nationality": "Portugal", + "contract_end": "2026-02-20", "market_value": 0, - "stats": {}, - "career": [], + "date_of_birth": "2003-07-30", + "potential_base": 70, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, + "champion_mastery": [], + "profile_image_url": "/player-photos/20feb0880200f2f4.png", "potential_revealed": null, - "potential_research_started_on": null, + "alternate_positions": [], "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null, + "stats": {} }, { - "id": "player-4bc8debd", - "match_name": "Daglas", - "full_name": "Kacper Karol Dagiel", - "date_of_birth": "2005-10-23", - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-3f82c25b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Amadeu Dias de Carvalho", "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, + "mechanics": 70, + "laning": 70, "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 + "macro_play": 68, + "consistency": 68, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 66, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "traits": [], - "contract_end": null, + "match_name": "Attila", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-854f6893", + "nationality": "PT", + "date_of_birth": "1996-02-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/088b93e2cc14760f.webp" + }, + { + "id": "player-4a2757e8", "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c6a23ab", - "match_name": "Hydra", - "full_name": "Hydra", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 - }, - "condition": 100, "morale": 100, "fitness": 100, - "team_id": "team-d0d82673", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-05bf3172", - "match_name": "Marcv1", - "full_name": "Marcv1", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "condition": 100, + "full_name": "Unai San Juan Fajardo", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 72, - "macro_play": 66, + "laning": 68, + "teamfighting": 66, + "macro_play": 68, "consistency": 66, "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 67, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5d7b3ec4", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-87e53592", - "match_name": "13", - "full_name": "Zayan Taeau", - "date_of_birth": "2003-06-20", - "nationality": "FR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, - "teamfighting": 72, "champion_pool": 71, - "mental_resilience": 72 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0ffbaa57", - "match_name": "Clicker", - "full_name": "Clicker", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 66, "discipline": 69, - "macro_play": 66, - "consistency": 65, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 67, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Deleted", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-5d7b3ec4", - "traits": [], - "contract_end": null, + "nationality": "ES", + "date_of_birth": "2002-01-01", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-4a5d7fe9", - "match_name": "Time", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baee3fd", + "condition": 100, "full_name": "Tiago Almeida", - "date_of_birth": "2002-12-06", - "nationality": "PT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 70, "mechanics": 71, - "discipline": 72, + "laning": 70, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 69, + "discipline": 72, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Time", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PT", + "date_of_birth": "2002-12-06", + "stats": {}, + "profile_image_url": "/player-photos/390e8b80f1a17053.webp" }, { - "id": "player-e301a123", - "match_name": "bluerzor", - "full_name": "Dániel Subicz", - "date_of_birth": "1999-05-04", - "nationality": "HU", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-4bc8debd", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f10b156f", + "condition": 100, + "full_name": "Kacper Karol Dagiel", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 73, + "teamfighting": 72, "macro_play": 74, "consistency": 74, "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Daglas", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": "2005-10-23", + "stats": {}, + "profile_image_url": "/player-photos/8a37fe952042959b.webp" }, { - "id": "player-dfd47326", - "match_name": "Miniduke", - "full_name": "smael Martínez Cortés", - "date_of_birth": "1997-11-03", - "nationality": "ES", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 72, - "macro_play": 69, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 71 - }, - "condition": 100, + "id": "player-5a324e7c", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-854f6893", - "traits": [], - "contract_end": null, + "team_id": "team-129835c5", + "condition": 100, + "full_name": "Tomasz Skwarczynski", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "ESCIK", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2002-04-11", + "stats": {}, + "profile_image_url": "/player-photos/0f4451ac29baad61.webp" + }, + { + "id": "player-6285401f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Kellie", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "Joel Rodríguez Pérez", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-ac846213", + "nationality": "ES", + "date_of_birth": "2002-01-01", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/b6675f5a15f95481.webp" + }, + { + "id": "player-62c86d6e", + "wage": 0, "career": [], - "training_focus": null, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f10b156f", + "condition": 100, + "full_name": "Cengizhan Teker", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 73, + "macro_play": 73, + "consistency": 74, + "shotcalling": 65, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "Mercy9", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TR", + "date_of_birth": "2005-06-05", + "stats": {}, + "profile_image_url": "/player-photos/a85f622ad8fdab23.webp" + }, + { + "id": "player-64040f64", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f10b156f", + "condition": 100, + "full_name": "Shin Jae-yoon", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 73, + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 72 + }, + "match_name": "Lure", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 75, "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2003-05-16", + "stats": {}, + "profile_image_url": "/player-photos/52c6161cdb1af328.webp" + }, + { + "id": "player-668b7148", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-129835c5", + "condition": 100, + "full_name": "Jarosław Marchewka", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Kozi", "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "2005-04-06", + "stats": {}, + "profile_image_url": "/player-photos/d0df2fcaac2bc9c7.webp" + }, + { + "id": "player-7f89d2c9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-06974122", + "position": "ADC", + "condition": 100, + "full_name": "Sergio Vicente Gisbert", + "attributes": { + "mechanics": 73, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 66, + "mental_resilience": 68 + }, + "match_name": "Legolas", + "loan_listed": false, "morale_core": {}, - "potential_base": 70, + "nationality": "Spain", + "contract_end": "2027-12-31", + "market_value": 0, + "date_of_birth": "2000-11-16", + "potential_base": 53, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/c0cf7311094e8023.png", "potential_revealed": null, + "alternate_positions": [], + "potential_research_eta_days": null, "potential_research_started_on": null, + "stats": {} + }, + { + "id": "player-74525cde", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-854f6893", + "condition": 100, + "full_name": "Antonio Espinosa Bejarano", + "attributes": { + "mechanics": 70, + "laning": 70, + "teamfighting": 71, + "macro_play": 70, + "consistency": 70, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "Th3Antonio", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 71, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "ES", + "date_of_birth": "1999-04-12", + "stats": {}, + "profile_image_url": "/player-photos/3e79f6d6a8a10140.webp" + }, + { + "id": "player-04bfa395", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-06974122", + "position": "Top", + "condition": 100, + "full_name": "Eric Lozano Gutierrez", + "attributes": { + "mechanics": 70, + "laning": 66, + "teamfighting": 63, + "macro_play": 72, + "consistency": 68, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 66, + "mental_resilience": 68 + }, + "match_name": "Selenex", + "loan_listed": false, + "morale_core": {}, + "nationality": "Spain", + "contract_end": "2026-11-16", + "market_value": 0, + "date_of_birth": "2004-01-01", + "potential_base": 81, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/de885f0e0db2d2cc.png", + "potential_revealed": null, + "alternate_positions": [], "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null, + "stats": {} }, { - "id": "player-62c86d6e", - "match_name": "Mercy9", - "full_name": "Cengizhan Teker", - "date_of_birth": "2005-06-05", - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", + "id": "player-35e757a5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ac846213", + "condition": 100, + "full_name": "Pauporter", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 74, + "mental_resilience": 73 + }, + "match_name": "Pau Vintró Nogué", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "ES", + "date_of_birth": "September 22, 2004", + "stats": {}, + "profile_image_url": "/player-photos/21f521d258260614.webp" + }, + { + "id": "player-7e57a5f1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ac846213", + "condition": 100, + "full_name": "Adrián Tejero Gomez", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "adrianlaneitor", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 75, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": "2003-01-01", + "stats": {}, + "profile_image_url": "/player-photos/20be45fce119e131.webp" + }, + { + "id": "player-800ae09b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baee3fd", + "condition": 100, + "full_name": "Bartłomiej Tomasz Przewoźnik", + "attributes": { + "mechanics": 72, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 72 + }, + "match_name": "Fresskowy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "1999-11-26", + "stats": {}, + "profile_image_url": "/player-photos/854f5b54c08a84c5.webp" + }, + { + "id": "player-84b65132", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5d7b3ec4", + "condition": 100, + "full_name": "Raúl Campos Vico", + "attributes": { + "mechanics": 66, + "laning": 72, + "teamfighting": 68, + "macro_play": 67, + "consistency": 70, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 70 + }, + "match_name": "Ethe", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "ES", + "date_of_birth": "2002-01-01", + "stats": {}, + "profile_image_url": "/player-photos/6ea4c8fa353c905c.webp" + }, + { + "id": "player-87e53592", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baee3fd", + "condition": 100, + "full_name": "Zayan Taeau", + "attributes": { + "mechanics": 71, + "laning": 71, + "teamfighting": 72, + "macro_play": 71, + "consistency": 71, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 72 + }, + "match_name": "13", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 74, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "FR", + "date_of_birth": "2003-06-20", + "stats": {}, + "profile_image_url": "/player-photos/8b1c3821de55072d.webp" + }, + { + "id": "player-99cc0f13", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ac846213", + "condition": 100, + "full_name": "Jordi Franco Carreras", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 73, - "consistency": 74, - "shotcalling": 65, + "mechanics": 72, + "laning": 72, "teamfighting": 73, - "champion_pool": 71, + "macro_play": 72, + "consistency": 72, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pasameelcelo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AD", + "date_of_birth": "2000-01-01", + "stats": {}, + "profile_image_url": "/player-photos/ffebe21f116c2c3d.webp" }, { - "id": "player-067b9a1f", - "match_name": "Kaii", - "full_name": "Kaii", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-130f6999", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d0d82673", + "condition": 100, + "full_name": "Daniel Gómez Martínez", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 70, + "laning": 68, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 71, - "mental_resilience": 70 + "discipline": 74, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d0d82673", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Dani", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "ES", + "date_of_birth": "2006-01-01", "stats": {}, + "profile_image_url": "/player-photos/e0e1ea718c57aa00.webp" + }, + { + "id": "player-a1e8bb06", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5d7b3ec4", + "condition": 100, + "full_name": "Víctor Caro Rodríguez", + "attributes": { + "mechanics": 68, + "laning": 66, + "teamfighting": 66, + "macro_play": 67, + "consistency": 68, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 70 + }, + "match_name": "Midnight", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 75, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "ES", + "date_of_birth": "2000-01-01", + "stats": {}, + "profile_image_url": "/player-photos/00d66714a9e9b76a.webp" }, { - "id": "player-7e57a5f1", - "match_name": "adrianlaneitor", - "full_name": "Adrián Tejero Gomez", - "date_of_birth": "2003-01-01", - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-a3298211", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f10b156f", + "condition": 100, + "full_name": "Papiteero", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, + "mechanics": 74, + "laning": 74, "teamfighting": 72, + "macro_play": 72, + "consistency": 73, + "shotcalling": 70, "champion_pool": 71, - "mental_resilience": 73 + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ac846213", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Antero Trindade Baldaia", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PT", + "date_of_birth": "2000-01-01", + "stats": {}, + "profile_image_url": "/player-photos/4a6ec278d499d7e9.webp" }, { - "id": "player-800ae09b", - "match_name": "Fresskowy", - "full_name": "Bartłomiej Tomasz Przewoźnik", - "date_of_birth": "1999-11-26", - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-ae7ddfdc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f10b156f", + "condition": 100, + "full_name": "Lurox", "attributes": { + "mechanics": 71, "laning": 73, - "mechanics": 72, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 66, - "teamfighting": 73, + "teamfighting": 72, + "macro_play": 70, + "consistency": 71, + "shotcalling": 71, "champion_pool": 69, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baee3fd", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lukas Thoma", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/e85ec6b735a049c7.webp" + }, + { + "id": "player-d421b0b0", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-854f6893", + "condition": 100, + "full_name": "Manuel García Azcúnaga", + "attributes": { + "mechanics": 71, + "laning": 66, + "teamfighting": 69, + "macro_play": 70, + "consistency": 70, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 71, + "mental_resilience": 70 + }, + "match_name": "ManoloGap", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "ES", + "date_of_birth": "2002-01-09", + "stats": {}, + "profile_image_url": "/player-photos/c08978ed69b61d2b.webp" }, { - "id": "player-5a324e7c", - "match_name": "ESCIK", - "full_name": "Tomasz Skwarczynski", - "date_of_birth": "2002-04-11", - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-da0e2d68", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-129835c5", + "condition": 100, + "full_name": "Mert Kılıç", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, + "laning": 74, "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 65, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "ANDARIEL", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TR", + "date_of_birth": "2003-11-14", "stats": {}, + "profile_image_url": "/player-photos/6f26700e0cbc20bb.webp" + }, + { + "id": "player-dd59bec5", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d0d82673", + "condition": 100, + "full_name": "Edison Giovanny Rivera Menéndez", + "attributes": { + "mechanics": 70, + "laning": 68, + "teamfighting": 68, + "macro_play": 66, + "consistency": 66, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 71 + }, + "match_name": "Pegaso", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "ES", + "date_of_birth": "2005-01-01", + "stats": {}, + "profile_image_url": "/player-photos/af82e53170e15d55.webp" }, { "id": "player-de7b9a68", - "match_name": "Flakked", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-854f6893", + "condition": 100, "full_name": "Víctor Lirola", - "date_of_birth": "2001-04-25", - "nationality": "ES", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 71, "mechanics": 70, - "discipline": 68, + "laning": 71, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 70, "champion_pool": 71, + "discipline": 68, "mental_resilience": 70 }, - "condition": 100, + "match_name": "Flakked", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 71, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "ES", + "date_of_birth": "2001-04-25", + "stats": {}, + "profile_image_url": "/player-photos/e709c7a1bc3d0378.webp" + }, + { + "id": "player-dfd47326", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-854f6893", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Ismael Martínez Cortés", + "attributes": { + "mechanics": 68, + "laning": 66, + "teamfighting": 66, + "macro_play": 69, + "consistency": 66, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 71 + }, + "match_name": "Miniduke", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "ES", + "date_of_birth": "1997-11-03", + "stats": {}, + "profile_image_url": "/player-photos/6466b77323e4a4ca.webp" }, { - "id": "player-64040f64", - "match_name": "Lure", - "full_name": "Shin Jae-yoon", - "date_of_birth": "2003-05-16", - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e0564ecf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baee3fd", + "condition": 100, + "full_name": "Ivan Oleksandrovich Bilous", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 70, - "macro_play": 74, + "mechanics": 73, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, "consistency": 74, "shotcalling": 66, - "teamfighting": 73, "champion_pool": 69, - "mental_resilience": 72 + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f10b156f", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "NightSlayer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "UA", + "date_of_birth": "2008-01-18", + "stats": {}, + "profile_image_url": "/player-photos/baf2477bb521aa61.webp" }, { - "id": "player-da0e2d68", - "match_name": "ANDARIEL", - "full_name": "Mert Kılıç", - "date_of_birth": "2003-11-14", - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e301a123", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-129835c5", + "condition": 100, + "full_name": "Dániel Subicz", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, + "shotcalling": 66, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-129835c5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "bluerzor", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 74, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HU", + "date_of_birth": "1999-05-04", "stats": {}, + "profile_image_url": "/player-photos/1394f9bb62d07109.webp" + }, + { + "id": "player-b7bba21b", + "wage": 0, "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-06974122", + "position": "Jungle", + "condition": 100, + "full_name": "Luis Pérez García", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 71, + "macro_play": 68, + "consistency": 70, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 65, + "mental_resilience": 68 + }, + "match_name": "Koldo", + "loan_listed": false, + "morale_core": {}, + "nationality": "Spain", + "contract_end": "2027-01-01", + "market_value": 0, + "date_of_birth": "2000-11-07", + "potential_base": 61, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, + "champion_mastery": [], + "profile_image_url": "/player-photos/00cf7ef379017d3a.png", "potential_revealed": null, + "alternate_positions": [], + "potential_research_eta_days": null, "potential_research_started_on": null, + "stats": {} + }, + { + "id": "player-2970f50f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-06974122", + "position": "Support", + "condition": 100, + "full_name": "Victor Guzmán Fernández", + "attributes": { + "mechanics": 73, + "laning": 72, + "teamfighting": 72, + "macro_play": 70, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 71, + "mental_resilience": 70 + }, + "match_name": "Oscure", + "loan_listed": false, + "morale_core": {}, + "nationality": "Spain", + "contract_end": "2026-11-16", + "market_value": 0, + "date_of_birth": "2000-04-30", + "potential_base": 65, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/fdcbb2478dd1a6a6.png", + "potential_revealed": null, + "alternate_positions": [], "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null, + "stats": {} } ] -} +} \ No newline at end of file diff --git a/data/players/lfl_players.json b/data/players/lfl_players.json index 4bdcd0e40..0f2b894cd 100644 --- a/data/players/lfl_players.json +++ b/data/players/lfl_players.json @@ -3,606 +3,1696 @@ "description": "LFL - 2026 Season", "players": [ { - "id": "player-46016bc5", - "match_name": "Comp", - "full_name": "Comp", - "date_of_birth": "December 20, 2001", - "nationality": "GR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 74, "mechanics": 71, - "discipline": 73, - "macro_play": 76, - "consistency": 76, - "shotcalling": 68, - "teamfighting": 71, - "champion_pool": 72, - "mental_resilience": 73 + "laning": 70, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, + "shotcalling": 72, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ab04f649", - "traits": [], - "contract_end": null, + "loan_listed": false, + "transfer_listed": false, + "id": "player-33fa1d36", + "match_name": "Hazel", + "full_name": "Costin Pestrițu", + "position": "ADC", + "team_id": "team-af25d742", + "nationality": "RO", + "date_of_birth": "2007-05-24", "wage": 0, "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/7a0bd29da91e3c67.png" }, { - "id": "player-d678e843", - "match_name": "Leny", - "full_name": "Leny", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 72, - "mechanics": 67, - "discipline": 70, - "macro_play": 66, + "mechanics": 74, + "laning": 74, + "teamfighting": 69, + "macro_play": 71, "consistency": 71, "shotcalling": 73, - "teamfighting": 75, - "champion_pool": 69, - "mental_resilience": 68 + "champion_pool": 71, + "discipline": 69, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, + "loan_listed": false, "transfer_listed": false, + "id": "player-1239a9d4", + "match_name": "Soldier", + "full_name": "Thomas Thierry Haudecoeur", + "position": "ADC", + "team_id": "team-c12fef91", + "nationality": "FR", + "date_of_birth": "2002-11-06", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/dc1b7e9fc5ea8aa0.png" + }, + { + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 74, + "macro_play": 71, + "consistency": 70, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 67 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-b3ed08a3", + "match_name": "Dajor", + "full_name": "Oliver Ryppa", + "position": "Mid", + "team_id": "team-c12fef91", + "nationality": "DE", + "date_of_birth": "2003-04-18", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/5884b5f817543de3.png" }, { - "id": "player-e9941b6c", - "match_name": "SPOOKY", - "full_name": "SPOOKY", - "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { + "mechanics": 76, "laning": 76, - "mechanics": 73, - "discipline": 76, - "macro_play": 74, - "consistency": 75, - "shotcalling": 68, - "teamfighting": 75, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, "champion_pool": 73, - "mental_resilience": 75 + "discipline": 76, + "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-92b46fef", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2002-01-21", + "transfer_listed": false, + "id": "player-c1aeab8c", + "match_name": "Manaty", + "full_name": "Stéphane Dimier", + "position": "Jungle", + "team_id": "team-f8f7f78d", + "nationality": "FR", + "date_of_birth": "January 21, 2002", + "wage": 0, + "market_value": 0, + "career": [], + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/d68e24accbfb0fa7.png" }, { - "id": "player-7ccb1e71", - "match_name": "Hiro", - "full_name": "Hiro", - "date_of_birth": null, - "nationality": "", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, - "shotcalling": 74, - "teamfighting": 76, + "shotcalling": 72, "champion_pool": 73, + "discipline": 76, "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "loan_listed": false, + "transfer_listed": false, + "id": "player-c3e1f0ed", + "match_name": "Nisqy", + "full_name": "Yasin Dinçe", + "position": "Mid", "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": null, + "nationality": "BE", + "date_of_birth": "1998-07-28", "wage": 0, "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/8b5c71d3ac18ddc8.png" }, { - "id": "player-18134b3e", - "match_name": "Sleyer", - "full_name": "Sleyer", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 76, "mechanics": 76, - "discipline": 76, + "laning": 76, + "teamfighting": 76, "macro_play": 76, "consistency": 76, "shotcalling": 73, - "teamfighting": 76, "champion_pool": 73, + "discipline": 76, "mental_resilience": 76 }, - "condition": 100, - "morale": 100, - "fitness": 75, + "loan_listed": false, + "transfer_listed": false, + "id": "player-18134b3e", + "match_name": "Sleyer", + "full_name": "Eric Xie", + "position": "Top", "team_id": "team-f8f7f78d", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, + "nationality": "FR", + "date_of_birth": "2006-02-25", + "wage": 0, + "market_value": 0, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6d2ca6cd", - "match_name": "CRoNiiK", - "full_name": "CRoNiiK", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 69, - "mechanics": 72, - "discipline": 70, + "mechanics": 74, + "laning": 74, + "teamfighting": 75, "macro_play": 75, - "consistency": 71, - "shotcalling": 72, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 70 + "consistency": 74, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-51d38a65", + "match_name": "Nafkelah", + "full_name": "Andrija Kovačević", + "position": "Mid", + "team_id": "team-92b46fef", + "nationality": "ME", + "date_of_birth": "2002-11-13", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/beba55d22f5de453.png" }, { - "id": "player-907d3b20", - "match_name": "Avra", - "full_name": "Avra", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 64, - "mechanics": 68, - "discipline": 73, - "macro_play": 68, - "consistency": 68, - "shotcalling": 68, + "mechanics": 76, + "laning": 74, "teamfighting": 74, - "champion_pool": 68, - "mental_resilience": 69 + "macro_play": 76, + "consistency": 75, + "shotcalling": 68, + "champion_pool": 72, + "discipline": 75, + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-34370c14", + "match_name": "Jool", + "full_name": "Kang Dong-su", + "position": "Mid", + "team_id": "team-012b64d1", + "nationality": "KR", + "date_of_birth": "2001-12-30", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/2645197a71a38024.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-84bc0f06", + "match_name": "Czajek", + "full_name": "Mateusz Czajka", + "position": "Mid", + "team_id": "team-8f3d532a", + "nationality": "PL", + "date_of_birth": "2003-08-24", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9da0c1c808936432.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-41469f7f", + "match_name": "Wao", + "full_name": "Wao Dai", + "position": "Top", + "team_id": "team-f8f7f78d", + "nationality": "FR", + "date_of_birth": "2003-05-30", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/efd6c40afe81a05d.png" + }, + { + "attributes": { + "mechanics": 67, + "laning": 67, + "teamfighting": 67, + "macro_play": 66, + "consistency": 71, + "shotcalling": 73, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 71 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-21f20aaa", + "match_name": "Zoelys", + "full_name": "Théo Le Scornec", + "position": "Support", + "team_id": "team-da97809e", + "nationality": "France", + "date_of_birth": "2003-05-26", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/318d098a4ddc72c5.png" + }, + { + "attributes": { + "mechanics": 73, + "laning": 72, + "teamfighting": 73, + "macro_play": 74, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 72, + "discipline": 74, + "mental_resilience": 73 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-921486a9", + "match_name": "Yeti", + "full_name": "Szymon Wójcicki", + "position": "Top", + "team_id": "team-92b46fef", + "nationality": "PL", + "date_of_birth": "2007-04-13", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/3a545143db5fd281.png" + }, + { + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 70, + "macro_play": 68, + "consistency": 68, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 74 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-eec70e60", + "match_name": "Czekolad", + "full_name": "Paweł Szczepanik", + "position": "Mid", + "team_id": "team-ab04f649", + "nationality": "PL", + "date_of_birth": "2000-02-15", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/c61468b9b5ffce89.png" + }, + { + "id": "player-a0f2c2a3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-c12fef91", + "position": "Support", + "condition": 100, + "full_name": "Alexandru Kolozsvari", + "attributes": { + "mechanics": 64, + "laning": 70, + "teamfighting": 67, + "macro_play": 74, + "consistency": 68, + "shotcalling": 72, + "champion_pool": 72, + "discipline": 75, + "mental_resilience": 73 + }, + "match_name": "Whiteinn", + "loan_listed": false, + "morale_core": {}, + "nationality": "Romania", + "contract_end": "2027-12-31", + "market_value": 0, + "date_of_birth": "2000-10-03", + "potential_base": 71, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/767a773db24fd345.png", + "potential_revealed": null, + "alternate_positions": [], + "potential_research_eta_days": null, + "potential_research_started_on": null, + "stats": {} + }, + { + "attributes": { + "mechanics": 82, + "laning": 80, + "teamfighting": 81, + "macro_play": 82, + "consistency": 80, + "shotcalling": 73, + "champion_pool": 78, + "discipline": 77, + "mental_resilience": 79 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-55f73cae", + "match_name": "Steeelback", + "full_name": "Pierre Medjald", + "position": "Support", + "team_id": "team-92b46fef", + "nationality": "France", + "date_of_birth": "1996-08-16", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/07a956bcd2d32037.png" + }, + { + "attributes": { + "mechanics": 74, + "laning": 75, + "teamfighting": 71, + "macro_play": 71, + "consistency": 75, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 69, + "mental_resilience": 70 + }, + "loan_listed": false, + "contract_end": "2003-02-27", + "transfer_listed": false, + "id": "player-cf9d39e8", + "match_name": "Vertigo", + "full_name": "Maximilian Rassi", + "position": "Top", + "team_id": "team-ab04f649", + "nationality": "AT", + "date_of_birth": "February 27, 2003", + "wage": 0, + "market_value": 0, + "career": [], + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/485a67d5d097d3c9.png" + }, + { + "attributes": { + "mechanics": 71, + "laning": 74, + "teamfighting": 71, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 73 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-46016bc5", + "match_name": "Comp", + "full_name": "Markos Stamkopoulo", + "position": "ADC", + "team_id": "team-ab04f649", + "nationality": "GR", + "date_of_birth": "2001-12-20", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/a5da3a7fb6327aeb.png" + }, + { + "attributes": { + "mechanics": 67, + "laning": 70, + "teamfighting": 64, + "macro_play": 70, + "consistency": 70, + "shotcalling": 73, + "champion_pool": 67, + "discipline": 76, + "mental_resilience": 73 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-e58e15b0", + "match_name": "Jezu", + "full_name": "Jean Massol", + "position": "ADC", + "team_id": "team-f8f7f78d", + "nationality": "FR", + "date_of_birth": "2000-07-27", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/88a607b51245dcc8.webp" + }, + { + "attributes": { + "mechanics": 70, + "laning": 66, + "teamfighting": 72, + "macro_play": 67, + "consistency": 67, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 72 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-37d0587c", + "match_name": "xKenzuke", + "full_name": "Serkan Atılgan", + "position": "Mid", + "team_id": "team-ed48a04c", + "nationality": "DE", + "date_of_birth": "1999-06-17", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/d509b906abafc998.png" + }, + { + "attributes": { + "mechanics": 74, + "laning": 72, + "teamfighting": 72, + "macro_play": 75, + "consistency": 73, + "shotcalling": 72, + "champion_pool": 73, + "discipline": 66, + "mental_resilience": 70 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-3caf8e7f", + "match_name": "Thayger", + "full_name": "Francisco Mazo Sánchez", + "position": "Jungle", + "team_id": "team-da97809e", + "nationality": "ES", + "date_of_birth": "2002-01-27", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b06cd32174dc25da.png" + }, + { + "attributes": { + "mechanics": 69, + "laning": 73, + "teamfighting": 70, + "macro_play": 72, + "consistency": 72, + "shotcalling": 73, + "champion_pool": 70, + "discipline": 76, + "mental_resilience": 71 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-b518f01f", + "match_name": "Prime", + "full_name": "Olivier Pierre Julien Payet", + "position": "Support", + "team_id": "team-af25d742", + "nationality": "France", + "date_of_birth": "2007-02-24", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/138096f2b2a4c7c0.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 72, + "teamfighting": 70, + "macro_play": 71, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 67, + "discipline": 64, + "mental_resilience": 70 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-a6650037", + "match_name": "Mersa", + "full_name": "Mertai Sari", + "position": "Support", + "team_id": "team-ab04f649", + "nationality": "Greece", + "date_of_birth": "2002-08-22", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b32734ad441fc0f7.png" + }, + { + "attributes": { + "mechanics": 74, + "laning": 70, + "teamfighting": 72, + "macro_play": 74, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 78, + "discipline": 75, + "mental_resilience": 76 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-5832d129", + "match_name": "Thomas", + "full_name": "Tomislav Nanjara", + "position": "Support", + "team_id": "team-0f9010b5", + "nationality": "HR", + "date_of_birth": "2003-06-20", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/334b5696d1bcbc83.png" + }, + { + "attributes": { + "mechanics": 78, + "laning": 77, + "teamfighting": 80, + "macro_play": 76, + "consistency": 78, + "shotcalling": 73, + "champion_pool": 79, + "discipline": 75, + "mental_resilience": 76 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-b6ba9cef", + "match_name": "Piero", + "full_name": "Kim Jung-hun", + "position": "Support", + "team_id": "team-012b64d1", + "nationality": "KR", + "date_of_birth": "2002-07-15", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/f40f12227715ddef.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 75, + "teamfighting": 74, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 72 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-3cbf1cc7", + "match_name": "Yukino", + "full_name": "Johnny Hoang Dang", + "position": "Jungle", + "team_id": "team-af25d742", + "nationality": "US", + "date_of_birth": "2006-02-14", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/0be298628aa78feb.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 71, + "teamfighting": 76, + "macro_play": 70, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 70, + "discipline": 76, + "mental_resilience": 76 + }, + "loan_listed": false, + "potential_base": 80, + "transfer_listed": false, + "id": "player-a13f38f9", + "match_name": "Riippp", + "full_name": "Arnaud Mesmin", + "position": "Support", + "team_id": "team-f8f7f78d", + "nationality": "France", + "date_of_birth": "1995-10-13", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/43073dfbadc8dbdc.png" + }, + { + "attributes": { + "mechanics": 68, + "laning": 69, + "teamfighting": 71, + "macro_play": 64, + "consistency": 67, + "shotcalling": 68, + "champion_pool": 69, + "discipline": 69, + "mental_resilience": 69 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-5b1f0d31", + "match_name": "Hungry Panda", + "full_name": "Nikos Nikolaidis", + "position": "Support", + "team_id": "team-ab04f649", + "nationality": "GR", + "date_of_birth": "1999-01-31", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/db9397c6bcac2690.webp" + }, + { + "attributes": { + "mechanics": 75, + "laning": 76, + "teamfighting": 75, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 75, + "mental_resilience": 75 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-ac8226c5", + "match_name": "Potent", + "full_name": "Mehdi Ahmed Bouchaffra", + "position": "Top", + "team_id": "team-8f3d532a", + "nationality": "FR", + "date_of_birth": "2002-07-14", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/c74b9e32513e1dfa.png" + }, + { + "attributes": { + "mechanics": 67, + "laning": 68, + "teamfighting": 72, + "macro_play": 69, + "consistency": 69, + "shotcalling": 68, + "champion_pool": 71, + "discipline": 66, + "mental_resilience": 67 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-80f3388d", + "match_name": "Axelent", + "full_name": "Nikola Petrusev", + "position": "ADC", + "team_id": "team-0f9010b5", + "nationality": "MK", + "date_of_birth": "2004-05-14", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/d1323e68c9272eed.png" + }, + { + "attributes": { + "mechanics": 68, + "laning": 71, + "teamfighting": 70, + "macro_play": 67, + "consistency": 67, + "shotcalling": 67, + "champion_pool": 69, + "discipline": 76, + "mental_resilience": 71 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-d10a8c0b", + "match_name": "Kaboom", + "full_name": "Osman Onur Korkmaz", + "position": "Jungle", + "team_id": "team-c12fef91", + "nationality": "TR", + "date_of_birth": "2006-03-24", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/66d2b5a074099923.png" + }, + { + "id": "player-7ccb1e71", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f8f7f78d", + "condition": 100, + "full_name": "Alexandre El Hodebey", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 74, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Hiro", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 82, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "FR", + "date_of_birth": "2002-06-23", + "stats": {}, + "profile_image_url": "/player-photos/6990e8e9d5240326.webp" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 75, + "mental_resilience": 75 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-1878f1ea", + "match_name": "Stefan", + "full_name": "Stefan Nikolić", + "position": "Jungle", + "team_id": "team-0f9010b5", + "nationality": "RS", + "date_of_birth": "2002-10-15", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/a239160dadb77bdb.png" + }, + { + "attributes": { + "mechanics": 68, + "laning": 64, + "teamfighting": 74, + "macro_play": 68, + "consistency": 68, + "shotcalling": 68, + "champion_pool": 68, + "discipline": 73, + "mental_resilience": 69 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-907d3b20", + "match_name": "Avra", + "full_name": "Berkant Ilhan", + "position": "ADC", + "team_id": "team-ed48a04c", + "nationality": "DE", + "date_of_birth": "2003-06-04", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/2c4fa4362ba8801a.png" + }, + { + "attributes": { + "mechanics": 71, + "laning": 72, + "teamfighting": 74, + "macro_play": 70, + "consistency": 72, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 74, + "mental_resilience": 73 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-9ff9e905", + "match_name": "Shift", + "full_name": "Marcel Bąk", + "position": "Jungle", + "team_id": "team-ab04f649", + "nationality": "PL", + "date_of_birth": "2005-01-20", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/80feffc5937b673d.png" + }, + { + "attributes": { + "mechanics": 72, + "laning": 68, + "teamfighting": 70, + "macro_play": 71, + "consistency": 71, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 75, + "mental_resilience": 74 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-96954747", + "match_name": "OMON", + "full_name": "Šimon Řiháček", + "position": "Mid", + "team_id": "team-da97809e", + "nationality": "CZ", + "date_of_birth": "2003-07-02", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/ed9fd345a6acd502.png" + }, + { + "id": "player-756b6429", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-92b46fef", + "position": "Jungle", + "condition": 100, + "full_name": "Miroslav Gochev", + "attributes": { + "mechanics": 73, + "laning": 76, + "teamfighting": 75, + "macro_play": 74, + "consistency": 75, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 75 + }, + "match_name": "Spooky", + "loan_listed": false, + "morale_core": {}, + "nationality": "BG", + "contract_end": "2027-12-31", + "market_value": 0, + "date_of_birth": "1996-08-12", + "potential_base": 68, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/856b35aeb235962b.png", + "potential_revealed": null, + "alternate_positions": [], + "potential_research_eta_days": null, + "potential_research_started_on": null, + "stats": {} }, { - "id": "player-bdfcb9da", - "match_name": "Kobs", - "full_name": "Kobs", - "date_of_birth": null, + "attributes": { + "mechanics": 75, + "laning": 72, + "teamfighting": 72, + "macro_play": 75, + "consistency": 75, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 75 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-51df346f", + "match_name": "Kamiloo", + "full_name": "Kamil Bruno Mehdi Wahid Haudegond", + "position": "Mid", + "team_id": "team-af25d742", + "nationality": "", + "date_of_birth": "2005-07-20", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/17476e71cbee5599.png" + }, + { + "attributes": { + "mechanics": 65, + "laning": 65, + "teamfighting": 72, + "macro_play": 66, + "consistency": 66, + "shotcalling": 73, + "champion_pool": 68, + "discipline": 68, + "mental_resilience": 70 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-ab9a4ff2", + "match_name": "Booshi", + "full_name": "Théo Mouchiroud", + "position": "ADC", + "team_id": "team-ed48a04c", "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", + "date_of_birth": "2006-01-01", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/4347f3a5722720ff.webp" + }, + { + "attributes": { + "mechanics": 71, + "laning": 65, + "teamfighting": 69, + "macro_play": 65, + "consistency": 65, + "shotcalling": 67, + "champion_pool": 72, + "discipline": 71, + "mental_resilience": 70 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-b0ccaf5c", + "match_name": "Mxe", + "full_name": "Aziz Görkem Altınpınar", + "position": "Support", + "team_id": "team-ed48a04c", + "nationality": "TR", + "date_of_birth": "2003-01-13", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/443143c2976070c8.png" + }, + { + "attributes": { + "mechanics": 74, + "laning": 75, + "teamfighting": 69, + "macro_play": 70, + "consistency": 74, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 68, + "mental_resilience": 69 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-f7c9d948", + "match_name": "Carlsen", + "full_name": "Carl Ulsted Carlsen", + "position": "Top", + "team_id": "team-da97809e", + "nationality": "DK", + "date_of_birth": "2005-12-15", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/649ee64076169ddb.png" + }, + { + "id": "player-a6317295", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-da97809e", + "position": "Mid", + "condition": 100, + "full_name": "Omon", + "attributes": { + "mechanics": 72, + "laning": 68, + "teamfighting": 70, + "macro_play": 71, + "consistency": 71, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 75, + "mental_resilience": 74 + }, + "match_name": "Omon", + "loan_listed": false, + "morale_core": {}, + "nationality": "Czech Republic", + "contract_end": "2027-12-31", + "market_value": 0, + "date_of_birth": "July 2, 2003", + "potential_base": 56, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "profile_image_url": "/player-photos/e01e970b640559a6.png", + "potential_revealed": null, "alternate_positions": [], + "potential_research_eta_days": null, + "potential_research_started_on": null, + "stats": {} + }, + { + "attributes": { + "mechanics": 70, + "laning": 70, + "teamfighting": 67, + "macro_play": 68, + "consistency": 68, + "shotcalling": 67, + "champion_pool": 70, + "discipline": 67, + "mental_resilience": 65 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-f5fa5a71", + "match_name": "Aetinoth", + "full_name": "Berat Tıknazoğlu", + "position": "ADC", + "team_id": "team-012b64d1", + "nationality": "TR", + "date_of_birth": "2005-10-10", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/d6517a50ed27a31a.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-b5cee998", + "match_name": "Dawciu", + "full_name": "Dawid Drzyzga", + "position": "Jungle", + "team_id": "team-8f3d532a", + "nationality": "PL", + "date_of_birth": "2008-03-21", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/9689f629fc30c5df.png" + }, + { "attributes": { - "laning": 66, "mechanics": 65, - "discipline": 72, + "laning": 66, + "teamfighting": 69, "macro_play": 64, "consistency": 64, "shotcalling": 73, - "teamfighting": 69, "champion_pool": 68, + "discipline": 72, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 75, + "loan_listed": false, + "transfer_listed": false, + "id": "player-bdfcb9da", + "match_name": "Kobs", + "full_name": "Rayan Mahiddine", + "position": "Jungle", "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "DZ", + "date_of_birth": "2003-10-10", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/15a393a0810286e3.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 75, + "macro_play": 75, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 74 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-649fea90", + "match_name": "Kryze", + "full_name": "Felix Hellström", + "position": "Top", + "team_id": "team-012b64d1", + "nationality": "SE", + "date_of_birth": "1999-07-01", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/463de3a2dd10a807.png" + }, + { + "attributes": { + "mechanics": 73, + "laning": 74, + "teamfighting": 73, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 73 + }, + "loan_listed": false, + "transfer_listed": false, + "id": "player-b4eeb986", + "match_name": "Harpoon", + "full_name": "Franciszek Gryszkiewicz", + "position": "ADC", + "team_id": "team-da97809e", + "nationality": "PL", + "date_of_birth": "2005-04-18", + "wage": 0, + "market_value": 0, "career": [], - "training_focus": null, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/35519da3de306e77.png" + }, + { + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 74, + "mental_resilience": 75 + }, + "loan_listed": false, "transfer_listed": false, + "id": "player-215c6224", + "match_name": "Zicssi", + "full_name": "Lanzo Ciajolo", + "position": "Jungle", + "team_id": "team-012b64d1", + "nationality": "FR", + "date_of_birth": "2002-05-16", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/86e51b3b11ae821d.png" + }, + { + "attributes": { + "mechanics": 67, + "laning": 72, + "teamfighting": 75, + "macro_play": 66, + "consistency": 71, + "shotcalling": 73, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 68 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-d678e843", + "match_name": "Leny", + "full_name": "Leny Albertini", + "position": "Top", + "team_id": "team-ed48a04c", + "nationality": "FR", + "date_of_birth": "2002-12-09", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/248a7fd8ead4075d.png" }, { - "id": "player-96954747", - "match_name": "OMON", - "full_name": "OMON", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { + "mechanics": 70, "laning": 68, - "mechanics": 72, - "discipline": 75, - "macro_play": 71, - "consistency": 71, + "teamfighting": 71, + "macro_play": 75, + "consistency": 75, "shotcalling": 68, - "teamfighting": 70, "champion_pool": 73, - "mental_resilience": 74 + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-da97809e", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2005-10-17", + "transfer_listed": false, + "id": "player-d78ea8eb", + "match_name": "Vizzpers", + "full_name": "Villas Burkal Stadager", + "position": "ADC", + "team_id": "team-8f3d532a", + "nationality": "DK", + "date_of_birth": "2005-10-17", + "wage": 0, + "market_value": 0, + "career": [], + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/6d21389cf7217cb8.webp" }, { - "id": "player-ab9a4ff2", - "match_name": "Booshi", - "full_name": "Booshi", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 68, - "macro_play": 66, - "consistency": 66, + "mechanics": 75, + "laning": 75, + "teamfighting": 75, + "macro_play": 77, + "consistency": 75, "shotcalling": 73, - "teamfighting": 72, - "champion_pool": 68, - "mental_resilience": 70 + "champion_pool": 75, + "discipline": 80, + "mental_resilience": 77 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "loan_listed": false, + "transfer_listed": false, + "id": "player-ac3d6ef5", + "match_name": "Dekap", + "full_name": "Waleed Mohammed Ismail", + "position": "Support", + "team_id": "team-8f3d532a", + "nationality": "Jordan", + "date_of_birth": "0200-12-11", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/51a1fad1763852a8.png" + }, + { + "id": "player-87c2dd42", + "wage": 0, "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-0f9010b5", + "position": "Mid", + "condition": 100, + "full_name": "Tautvydas Gegeckas", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 68, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Toffe", + "loan_listed": false, + "morale_core": {}, + "nationality": "LT", + "contract_end": "2027-12-31", + "market_value": 0, + "date_of_birth": "2005-05-02", + "potential_base": 80, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, + "champion_mastery": [], + "profile_image_url": "/player-photos/e52abbfe7cb277ff.png", "potential_revealed": null, - "potential_research_started_on": null, + "alternate_positions": [], "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null, + "stats": {} }, { - "id": "player-37d0587c", - "match_name": "xKenzuke", - "full_name": "xKenzuke", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 66, - "mechanics": 70, - "discipline": 70, - "macro_play": 67, - "consistency": 67, + "mechanics": 73, + "laning": 76, + "teamfighting": 75, + "macro_play": 74, + "consistency": 75, "shotcalling": 68, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 72 + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-e9941b6c", + "match_name": "SPOOKY", + "full_name": "Miroslav Gochev", + "position": "Jungle", + "team_id": "team-92b46fef", + "nationality": "BG", + "date_of_birth": "1999-08-12", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/93e78a0a5335689a.webp" }, { - "id": "player-b0ccaf5c", - "match_name": "Mxe", - "full_name": "Mxe", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 65, - "mechanics": 71, - "discipline": 71, - "macro_play": 65, - "consistency": 65, - "shotcalling": 67, - "teamfighting": 69, - "champion_pool": 72, - "mental_resilience": 70 + "mechanics": 70, + "laning": 74, + "teamfighting": 68, + "macro_play": 68, + "consistency": 72, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 67 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-ed48a04c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "transfer_listed": false, + "id": "player-66c732be", + "match_name": "Badlulu", + "full_name": "Lucas Piochaud", + "position": "Top", + "team_id": "team-c12fef91", + "nationality": "FR", + "date_of_birth": "2002-10-13", + "wage": 0, + "market_value": 0, + "career": [], + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/e4d6c0287beaeb93.png" }, { - "id": "player-d78ea8eb", - "match_name": "Vizzpers", - "full_name": "Vizzpers", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 72, - "macro_play": 75, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, "consistency": 75, "shotcalling": 68, - "teamfighting": 71, "champion_pool": 73, - "mental_resilience": 72 + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-8f3d532a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-944ccd91", + "match_name": "Spooder", + "full_name": "Muhanad Maitham Sharad", + "position": "Top", + "team_id": "team-0f9010b5", + "nationality": "SE", + "date_of_birth": "2002-09-05", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/acf1c00337b35de1.png" }, { - "id": "player-680876c1", - "match_name": "whiteinn", - "full_name": "whiteinn", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], "attributes": { - "laning": 70, - "mechanics": 64, - "discipline": 75, + "mechanics": 76, + "laning": 73, + "teamfighting": 70, "macro_play": 74, - "consistency": 68, + "consistency": 74, "shotcalling": 72, - "teamfighting": 67, - "champion_pool": 72, - "mental_resilience": 73 + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-c12fef91", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "loan_listed": false, + "transfer_listed": false, + "id": "player-be7cd48a", + "match_name": "Tao", + "full_name": "Xu Hongtao Alessandro", + "position": "Top", + "team_id": "team-af25d742", + "nationality": "IT", + "date_of_birth": "2008-01-01", + "wage": 0, + "market_value": 0, + "career": [], + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/987039206b2f7832.png" + }, + { + "id": "player-1df87a66", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-92b46fef", + "condition": 100, + "full_name": "Matthew Luke Smith", + "attributes": { + "mechanics": 71, + "laning": 68, + "teamfighting": 70, + "macro_play": 72, + "consistency": 72, + "shotcalling": 69, + "champion_pool": 71, + "discipline": 75, + "mental_resilience": 71 + }, + "match_name": "Deadly", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GB", + "date_of_birth": "1996-08-18", + "stats": {}, + "profile_image_url": "/player-photos/d600eaa83b9b013a.png" } ] } \ No newline at end of file diff --git a/data/players/lit_players.json b/data/players/lit_players.json index 41f53b362..0bd006e7f 100644 --- a/data/players/lit_players.json +++ b/data/players/lit_players.json @@ -3,1552 +3,1684 @@ "description": "LIT - 2026 Season", "players": [ { - "id": "player-8e38444c", - "match_name": "Jekko", - "full_name": "Jekko", - "date_of_birth": null, - "nationality": "GE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-067976ac", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-763ea26a", + "condition": 100, + "full_name": "Groudon", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, + "mechanics": 65, + "laning": 66, + "teamfighting": 67, + "macro_play": 64, + "consistency": 64, "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 + "champion_pool": 66, + "discipline": 73, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Groudon", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-7bbc503e", - "match_name": "Divine", - "full_name": "Divine", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-06a9166c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3ee8399a", + "condition": 100, + "full_name": "Leonardo Scozzafava", "attributes": { + "mechanics": 71, "laning": 71, - "mechanics": 70, - "discipline": 73, - "macro_play": 70, + "teamfighting": 71, + "macro_play": 72, "consistency": 71, "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lerax", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": null, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-073090b1", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d8e80ef5", + "condition": 100, + "full_name": "Matteo Scarcelli", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 71, + "macro_play": 71, + "consistency": 73, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 69, + "mental_resilience": 71 + }, + "match_name": "Vigil", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "IT", + "date_of_birth": "2000-12-21", + "stats": {}, + "profile_image_url": "/player-photos/f4ecc53fb22d4f91.webp" }, { - "id": "player-67a886c5", - "match_name": "TheSerius", - "full_name": "TheSerius", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0acb8a1c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-78e0cf99", + "condition": 100, + "full_name": "Mattia Scandroglio", "attributes": { - "laning": 69, "mechanics": 67, - "discipline": 71, - "macro_play": 70, - "consistency": 67, + "laning": 71, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 66, + "champion_pool": 68, + "discipline": 69, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "PiskHeLLo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-563cbcb2", - "match_name": "SkaR", - "full_name": "SkaR", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0dfb662e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d4e0b415", + "condition": 100, + "full_name": "Dario Alessio Bandrabur Bohm", "attributes": { - "laning": 70, "mechanics": 69, - "discipline": 70, + "laning": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 69, + "discipline": 69, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Alessio", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RO", + "date_of_birth": "2004-08-09", + "stats": {}, + "profile_image_url": "/player-photos/46c81de88533eb77.webp" }, { - "id": "player-ad8464c8", - "match_name": "Strava", - "full_name": "Strava", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 58, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 57, - "champion_pool": 59, - "mental_resilience": 59 - }, - "condition": 100, + "id": "player-15e5688a", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Andrea Orefice", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "OrthoZero", + "position": "Support", + "team_id": "team-d6fcaa33", + "nationality": "IT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/cd0b285ae7e2e79a.webp" + }, + { + "id": "player-266381ca", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d8e80ef5", + "condition": 100, + "full_name": "Achille Matrone", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 72, + "macro_play": 73, + "consistency": 73, + "shotcalling": 65, + "champion_pool": 69, + "discipline": 69, + "mental_resilience": 71 + }, + "match_name": "Tyrone", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": "2006-07-29", + "stats": {}, + "profile_image_url": null }, { - "id": "player-4a6df48c", - "match_name": "The Mountain", - "full_name": "Marco Benvenuto", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2c4ae948", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a272304b", + "condition": 100, + "full_name": "Arman Akrawi", "attributes": { - "laning": 69, "mechanics": 69, - "discipline": 70, - "macro_play": 69, + "laning": 69, + "teamfighting": 71, + "macro_play": 70, "consistency": 69, "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 68, + "champion_pool": 69, + "discipline": 71, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Sjakal", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DK", + "date_of_birth": "1999-05-09", "stats": {}, + "profile_image_url": null + }, + { + "id": "player-2c967921", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-78e0cf99", + "condition": 100, + "full_name": "Alessandro Zappalà", + "attributes": { + "mechanics": 69, + "laning": 65, + "teamfighting": 65, + "macro_play": 69, + "consistency": 67, + "shotcalling": 65, + "champion_pool": 66, + "discipline": 69, + "mental_resilience": 70 + }, + "match_name": "Fragola", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 73, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-d55c0238", - "match_name": "Doxy", - "full_name": "Doxy", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-337fb4a3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d8e80ef5", + "condition": 100, + "full_name": "Nemanja Mirčić", "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 73, - "macro_play": 72, - "consistency": 72, + "mechanics": 73, + "laning": 73, + "teamfighting": 71, + "macro_play": 73, + "consistency": 73, "shotcalling": 65, - "teamfighting": 72, "champion_pool": 70, + "discipline": 69, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "APP", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RS", + "date_of_birth": "2006-11-27", + "stats": {}, + "profile_image_url": "/player-photos/a1ee28d56bf5444f.webp" }, { - "id": "player-54f90112", - "match_name": "Sharon", - "full_name": "Sharon", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 69, - "discipline": 65, - "macro_play": 68, - "consistency": 71, - "shotcalling": 64, - "teamfighting": 69, - "champion_pool": 66, - "mental_resilience": 68 - }, - "condition": 100, + "id": "player-4a6df48c", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-78e0cf99", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-d4e0b415", + "condition": 100, + "full_name": "Marco Benvenuto", + "attributes": { + "mechanics": 69, + "laning": 69, + "teamfighting": 70, + "macro_play": 69, + "consistency": 69, + "shotcalling": 65, + "champion_pool": 68, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "The Mountain", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-073090b1", - "match_name": "Vigil", - "full_name": "Matteo Scarcelli", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-4f110393", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3ee8399a", + "condition": 100, + "full_name": "Lorenzo Silvestri", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 69, + "mechanics": 71, + "laning": 71, + "teamfighting": 71, "macro_play": 71, - "consistency": 73, + "consistency": 71, "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, + "champion_pool": 69, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "RaptoSauros", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/9b72163293517311.webp" }, { "id": "player-4f3ce207", - "match_name": "lobellan", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-78e0cf99", + "condition": 100, "full_name": "Emanuele Bevione", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 68, "mechanics": 69, - "discipline": 70, + "laning": 68, + "teamfighting": 69, "macro_play": 67, "consistency": 67, "shotcalling": 65, - "teamfighting": 69, "champion_pool": 68, + "discipline": 70, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Lobellan", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": "2003-03-20", + "stats": {}, + "profile_image_url": null }, { - "id": "player-337fb4a3", - "match_name": "APP", - "full_name": "APP", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-527ce39b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d6fcaa33", + "condition": 100, + "full_name": "Matteo Memè", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 69, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 65, - "teamfighting": 71, "champion_pool": 70, - "mental_resilience": 71 + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "MeMo1", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CA", + "date_of_birth": null, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-54f90112", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-78e0cf99", + "condition": 100, + "full_name": "Muhammed Mirza Esen", + "attributes": { + "mechanics": 69, + "laning": 72, + "teamfighting": 69, + "macro_play": 68, + "consistency": 71, + "shotcalling": 64, + "champion_pool": 66, + "discipline": 65, + "mental_resilience": 68 + }, + "match_name": "Sharon", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 75, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-788aebad", - "match_name": "Raffy", - "full_name": "Raffy", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "career": [], + "id": "player-55ef3ff2", + "match_name": "BeWhite", + "full_name": "Matteo Violi", + "position": "Mid", + "team_id": "team-d4e0b415", + "nationality": "", + "date_of_birth": "2003-10-21", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/375ab8d241b16c3c.webp" + }, + { + "id": "player-563cbcb2", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-dacb4a17", + "condition": 100, + "full_name": "Alessandro Torresi", + "attributes": { + "mechanics": 69, + "laning": 70, + "teamfighting": 69, + "macro_play": 69, + "consistency": 69, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "SkaR", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 76, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/5d3bc37cb6a84848.webp" + }, + { + "id": "player-5ec4849e", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3ee8399a", + "condition": 100, + "full_name": "Alper Yaşar", + "attributes": { + "mechanics": 71, + "laning": 71, + "teamfighting": 73, + "macro_play": 71, + "consistency": 71, + "shotcalling": 64, + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 72 + }, + "match_name": "Lesranct", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "TR", + "date_of_birth": "2004-03-24", + "stats": {}, + "profile_image_url": null }, { - "id": "player-2c967921", - "match_name": "Fragola", - "full_name": "Fragola", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-601e5b71", + "match_name": "Loeloal", + "full_name": "Alessandro Torcoli", + "position": "Mid", + "team_id": "team-dacb4a17", + "nationality": "", "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-61529687", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-763ea26a", + "condition": 100, + "full_name": "Andrea Dilluvio", "attributes": { + "mechanics": 67, "laning": 65, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, + "teamfighting": 69, + "macro_play": 67, "consistency": 67, "shotcalling": 65, - "teamfighting": 65, - "champion_pool": 66, - "mental_resilience": 70 + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78e0cf99", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pericolo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 75, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": "2001-01-08", + "stats": {}, + "profile_image_url": null }, { - "id": "player-9096cebf", - "match_name": "Alvanai", - "full_name": "Alvanai", - "date_of_birth": null, - "nationality": "AL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 67, - "macro_play": 68, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 67 - }, - "condition": 100, + "id": "player-67a886c5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "TheSerius", + "attributes": { + "mechanics": 67, + "laning": 69, + "teamfighting": 68, + "macro_play": 70, + "consistency": 67, + "shotcalling": 65, + "champion_pool": 66, + "discipline": 71, + "mental_resilience": 69 + }, + "match_name": "TheSerius", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 75, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-dd41a2c5", - "match_name": "DejaVu", - "full_name": "DejaVu", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-6f6bd458", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d8e80ef5", + "condition": 100, + "full_name": "Adrian Jackowski", "attributes": { - "laning": 70, - "mechanics": 72, - "discipline": 69, - "macro_play": 72, - "consistency": 71, - "shotcalling": 65, + "mechanics": 73, + "laning": 72, "teamfighting": 71, + "macro_play": 73, + "consistency": 73, + "shotcalling": 65, "champion_pool": 70, - "mental_resilience": 69 + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Adi1", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": "2002-02-07", + "stats": {}, + "profile_image_url": "/player-photos/9c3f603ce334dc87.webp" }, { - "id": "player-f19770c3", - "match_name": "Daskhai", - "full_name": "Efe Bostanci", - "date_of_birth": null, - "nationality": "Tk", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-710e5daf", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Roberto Di Bella", "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 72, - "macro_play": 73, - "consistency": 73, + "mechanics": 71, + "laning": 72, + "teamfighting": 72, + "macro_play": 71, + "consistency": 71, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 69, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Bubba", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-3ee8399a", - "traits": [], - "contract_end": null, + "nationality": "IT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-0acb8a1c", - "match_name": "PiskHello", - "full_name": "PiskHello", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 67, - "discipline": 69, - "macro_play": 69, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 68, - "mental_resilience": 69 - }, - "condition": 100, + "id": "player-723b52e9", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-78e0cf99", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-d4e0b415", + "condition": 100, + "full_name": "Luca Migliore", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Luke", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-266381ca", - "match_name": "Tyrone", - "full_name": "Tyrone", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-788aebad", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d6fcaa33", + "condition": 100, + "full_name": "Raffaele Livigni", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 69, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 65, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 71 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Raffy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/c8b92e7e2ba10647.webp" }, { - "id": "player-b0fd7f8b", - "match_name": "ilyy", - "full_name": "lia Iakobashvili", - "date_of_birth": null, - "nationality": "GE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-7bbc503e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a272304b", + "condition": 100, + "full_name": "Alex Corona", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, + "mechanics": 70, + "laning": 71, + "teamfighting": 70, + "macro_play": 70, + "consistency": 71, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 70, - "mental_resilience": 73 + "discipline": 73, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Divine", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-06a9166c", - "match_name": "Lerax", - "full_name": "Lerax", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-81ee1914", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dacb4a17", + "condition": 100, + "full_name": "Riccardo Tata", "attributes": { + "mechanics": 70, "laning": 71, - "mechanics": 71, - "discipline": 73, - "macro_play": 72, - "consistency": 71, + "teamfighting": 70, + "macro_play": 69, + "consistency": 69, "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 72 + "champion_pool": 70, + "discipline": 69, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Rharesh", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": "1995-07-27", + "stats": {}, + "profile_image_url": "/player-photos/953a757ce014235c.webp" }, { - "id": "player-88057298", - "match_name": "naau", - "full_name": "naau", - "date_of_birth": null, - "nationality": "ES", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-82d152cd", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Pietro Biffi", "attributes": { - "laning": 67, - "mechanics": 72, - "discipline": 65, - "macro_play": 71, - "consistency": 70, - "shotcalling": 69, + "mechanics": 69, + "laning": 70, "teamfighting": 69, + "macro_play": 71, + "consistency": 69, + "shotcalling": 65, "champion_pool": 68, - "mental_resilience": 68 + "discipline": 70, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, + "match_name": "S1D", + "position": "Support", + "team_id": "team-a272304b", + "nationality": "IT", + "date_of_birth": "1997-10-30", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/4bde13a83a2be6c9.webp" + }, + { "career": [], - "training_focus": null, + "loan_listed": false, "transfer_listed": false, + "id": "player-843fa280", + "match_name": "MT", + "full_name": "Luca Mancinelli", + "position": "Support", + "team_id": "team-763ea26a", + "nationality": "", + "date_of_birth": "2001-10-09", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-84e571f0", + "match_name": "Downfall", + "full_name": "Hailiang Ye", + "position": "Support", + "team_id": "team-d6fcaa33", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { "id": "player-876931b4", - "match_name": "Mario", - "full_name": "Mario", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dacb4a17", + "condition": 100, + "full_name": "Mario D'Agostino", "attributes": { - "laning": 69, "mechanics": 70, - "discipline": 71, + "laning": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 65, - "teamfighting": 69, "champion_pool": 70, + "discipline": 71, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Mario", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-5ec4849e", - "match_name": "Lesranct", - "full_name": "Lesranct", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-88057298", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-763ea26a", + "condition": 100, + "full_name": "Arnau Fores Garcia", "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 73, + "mechanics": 72, + "laning": 67, + "teamfighting": 69, "macro_play": 71, - "consistency": 71, - "shotcalling": 64, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 + "consistency": 70, + "shotcalling": 69, + "champion_pool": 68, + "discipline": 65, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Naau", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "ES", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/3918b8dd270c37e8.webp" }, { - "id": "player-067976ac", - "match_name": "Groudon", - "full_name": "Groudon", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-8e38444c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d6fcaa33", + "condition": 100, + "full_name": "Jemal Revazishvili", "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 73, - "macro_play": 64, - "consistency": 64, + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, "shotcalling": 65, - "teamfighting": 67, - "champion_pool": 66, - "mental_resilience": 69 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, + "match_name": "Jekko", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "GE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/5d1544ee0107b0a6.webp" + }, + { + "id": "player-9096cebf", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Giannis Hasanaj", + "attributes": { + "mechanics": 69, + "laning": 71, + "teamfighting": 73, + "macro_play": 68, + "consistency": 70, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "Alvanai", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "AL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-a35f01d8", - "match_name": "Izo", - "full_name": "Izo", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d4e0b415", + "condition": 100, + "full_name": "Igor Lapot", "attributes": { - "laning": 69, "mechanics": 70, - "discipline": 73, + "laning": 69, + "teamfighting": 73, "macro_play": 71, "consistency": 70, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 69, + "discipline": 73, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Izo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-2c4ae948", - "match_name": "Sjakal", - "full_name": "Arman Akrawi", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 71, - "macro_play": 70, - "consistency": 69, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 70 - }, - "condition": 100, + "id": "player-ad8464c8", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-a272304b", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-763ea26a", + "condition": 100, + "full_name": "Davide Bravetti", + "attributes": { + "mechanics": 59, + "laning": 58, + "teamfighting": 57, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 59 + }, + "match_name": "Strava", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6f6bd458", - "match_name": "adi1", - "full_name": "adi1", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-ada017e3", + "match_name": "Xen0gan", + "full_name": "Andrea Morabito", + "position": "Mid", + "team_id": "team-d6fcaa33", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 71, - "macro_play": 73, - "consistency": 73, - "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, - "mental_resilience": 71 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-527ce39b", - "match_name": "MeMo1", - "full_name": "MeMo1", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-b0fd7f8b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d6fcaa33", + "condition": 100, + "full_name": "Ilia Iakobashvili", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 73, + "laning": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 70, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ilyy", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-0dfb662e", - "match_name": "Alessio", - "full_name": "Alessio", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-b30df4f0", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Gabriele Iannarelli", "attributes": { - "laning": 69, - "mechanics": 69, - "discipline": 69, - "macro_play": 69, - "consistency": 69, + "mechanics": 71, + "laning": 70, + "teamfighting": 72, + "macro_play": 72, + "consistency": 70, "shotcalling": 65, - "teamfighting": 69, "champion_pool": 69, - "mental_resilience": 69 + "discipline": 69, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d4e0b415", - "traits": [], - "contract_end": null, + "match_name": "Shredder", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-dacb4a17", + "nationality": "IT", + "date_of_birth": "2001-09-10", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-c23c330a", - "match_name": "xHikama", - "full_name": "xHikama", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-b7ad2e29", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Vittorio Massolo", "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 72, - "macro_play": 69, - "consistency": 69, + "mechanics": 73, + "laning": 70, + "teamfighting": 71, + "macro_play": 71, + "consistency": 73, "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, + "champion_pool": 70, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a272304b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Click", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-61529687", - "match_name": "Pericolo", - "full_name": "Pericolo", - "date_of_birth": null, + "transfer_listed": false, + "position": "Support", + "team_id": "team-d8e80ef5", "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 67, - "discipline": 72, - "macro_play": 67, - "consistency": 67, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 69 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-763ea26a", - "traits": [], - "contract_end": null, + "date_of_birth": "1997-11-22", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/ceed3b5c23a715d8.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-b8795a9a", + "match_name": "Sveglia", + "full_name": "Jiabao Liu", + "position": "Top", + "team_id": "team-dacb4a17", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-81ee1914", - "match_name": "Rharesh", - "full_name": "Rharesh", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-c23c330a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a272304b", + "condition": 100, + "full_name": "Mattia Narciso", "attributes": { + "mechanics": 69, "laning": 71, - "mechanics": 70, - "discipline": 69, + "teamfighting": 69, "macro_play": 69, "consistency": 69, "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 69 + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-dacb4a17", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "XHikama", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "IT", + "date_of_birth": "2003-07-01", + "stats": {}, + "profile_image_url": null }, { - "id": "player-4f110393", - "match_name": "RaptoSauros", - "full_name": "RaptoSauros", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-d0582781", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Giuseppe Capogrosso", "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 71, - "macro_play": 71, - "consistency": 71, + "mechanics": 65, + "laning": 67, + "teamfighting": 65, + "macro_play": 72, + "consistency": 72, "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 69, - "mental_resilience": 71 + "champion_pool": 66, + "discipline": 70, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "traits": [], - "contract_end": null, + "match_name": "Banino", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-763ea26a", + "nationality": "IT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-710e5daf", - "match_name": "Bubba", - "full_name": "Bubba", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-d55c0238", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a272304b", + "condition": 100, + "full_name": "Rafael Adl Zarabi", "attributes": { + "mechanics": 70, "laning": 72, - "mechanics": 71, - "discipline": 73, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 + "macro_play": 72, + "consistency": 72, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3ee8399a", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Doxy", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DK", + "date_of_birth": "1998-03-18", + "stats": {}, + "profile_image_url": "/player-photos/2f79f34f78135d43.webp" }, { - "id": "player-b7ad2e29", - "match_name": "Click", - "full_name": "Click", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-dd41a2c5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dacb4a17", + "condition": 100, + "full_name": "Andrea Declara", "attributes": { + "mechanics": 72, "laning": 70, - "mechanics": 73, - "discipline": 70, - "macro_play": 71, - "consistency": 73, - "shotcalling": 65, "teamfighting": 71, + "macro_play": 72, + "consistency": 71, + "shotcalling": 65, "champion_pool": 70, - "mental_resilience": 71 + "discipline": 69, + "mental_resilience": 69 }, - "condition": 100, + "match_name": "DejaVu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "IT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-e2cb121a", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-d8e80ef5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Vincenzo Biganini", + "attributes": { + "mechanics": 69, + "laning": 69, + "teamfighting": 71, + "macro_play": 67, + "consistency": 70, + "shotcalling": 65, + "champion_pool": 68, + "discipline": 67, + "mental_resilience": 69 + }, + "match_name": "Corriragazzo", + "position": "Support", + "team_id": "team-d4e0b415", + "nationality": "IT", + "date_of_birth": "2002-05-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/e2037a9c70c146c7.webp" + }, + { + "id": "player-ecf0b1a1", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alf-Kristian Haaland Sund", + "attributes": { + "mechanics": 69, + "laning": 68, + "teamfighting": 69, + "macro_play": 72, + "consistency": 69, + "shotcalling": 65, + "champion_pool": 68, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "Nash", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-78e0cf99", + "nationality": "NO", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/48019e3c05488cfe.webp" }, { - "id": "player-15e5688a", - "match_name": "OrthoZero", - "full_name": "OrthoZero", - "date_of_birth": null, - "nationality": "IT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-f19770c3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3ee8399a", + "condition": 100, + "full_name": "Efe Bostanci", "attributes": { + "mechanics": 72, "laning": 73, - "mechanics": 73, - "discipline": 73, + "teamfighting": 73, "macro_play": 73, "consistency": 73, "shotcalling": 65, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 73 + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d6fcaa33", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dashkai", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "Tk", + "date_of_birth": "2005-11-19", + "stats": {}, + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/ljl_players.json b/data/players/ljl_players.json index f3ce2830c..9fd48c0e4 100644 --- a/data/players/ljl_players.json +++ b/data/players/ljl_players.json @@ -3,1380 +3,1341 @@ "description": "LJL - 2026 Season", "players": [ { - "id": "player-e3c72023", - "match_name": "Damocles", - "full_name": "Damocles", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 66, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 67, - "mental_resilience": 70 - }, - "condition": 100, + "id": "player-153eb47e", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-15282d93", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-153eb47e", - "match_name": "Ravvy", - "full_name": "Ravvy", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "condition": 100, + "full_name": "Kotarou Yoshida", "attributes": { - "laning": 66, "mechanics": 65, - "discipline": 74, + "laning": 66, + "teamfighting": 64, "macro_play": 65, "consistency": 66, "shotcalling": 71, - "teamfighting": 64, "champion_pool": 69, + "discipline": 74, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ravvy", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 74, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": "2007-01-01", + "stats": {}, + "profile_image_url": "/player-photos/44863fb670502f9c.webp" }, { - "id": "player-dd92bd81", - "match_name": "Potential", - "full_name": "Potential", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-2363745a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b6b8bfae", + "condition": 100, + "full_name": "Choi El-lim", "attributes": { - "laning": 72, - "mechanics": 69, - "discipline": 72, - "macro_play": 71, - "consistency": 72, + "mechanics": 74, + "laning": 74, + "teamfighting": 68, + "macro_play": 74, + "consistency": 74, "shotcalling": 65, - "teamfighting": 71, - "champion_pool": 70, + "champion_pool": 71, + "discipline": 68, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Ellim", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2000-05-25", + "stats": {}, + "profile_image_url": "/player-photos/b7cc98727b49e405.webp" }, { - "id": "player-6b674954", - "match_name": "Grit", - "full_name": "Grit", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2afb7943", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-208c3750", + "condition": 100, + "full_name": "Koga Kanno", "attributes": { - "laning": 70, - "mechanics": 66, - "discipline": 74, - "macro_play": 66, - "consistency": 66, + "mechanics": 70, + "laning": 74, + "teamfighting": 69, + "macro_play": 68, + "consistency": 72, "shotcalling": 71, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 + "champion_pool": 67, + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-15282d93", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Karaage", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": "2005-09-25", + "stats": {}, + "profile_image_url": null }, { "id": "player-36d9e8f1", - "match_name": "Masamune Hosokawa", - "full_name": "Kurahuto", - "date_of_birth": "2005-01-01", - "nationality": "JP", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Masamune Hosokawa", "attributes": { - "laning": 72, "mechanics": 66, - "discipline": 69, + "laning": 72, + "teamfighting": 68, "macro_play": 68, "consistency": 66, "shotcalling": 71, - "teamfighting": 68, "champion_pool": 71, + "discipline": 69, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Kurahuto", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-15282d93", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "JP", + "date_of_birth": "2005-01-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/50552350db1e733c.webp" + }, + { + "id": "player-439b3373", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b6b8bfae", + "condition": 100, + "full_name": "Kouki Ohno", + "attributes": { + "mechanics": 73, + "laning": 71, + "teamfighting": 70, + "macro_play": 71, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 68, + "mental_resilience": 70 + }, + "match_name": "kkkkkkkkk", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "JP", + "date_of_birth": "2008-02-14", + "stats": {}, + "profile_image_url": "/player-photos/d4c3642f796961c9.webp" }, { - "id": "player-5ebe8018", - "match_name": "chico", - "full_name": "chico", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-4c9945ee", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-208c3750", + "condition": 100, + "full_name": "Kodai Tamura", "attributes": { - "laning": 72, "mechanics": 70, - "discipline": 73, + "laning": 70, + "teamfighting": 68, "macro_play": 71, "consistency": 71, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 69, - "mental_resilience": 72 + "discipline": 70, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "rre", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "JP", + "date_of_birth": "2004-09-23", + "stats": {}, + "profile_image_url": "/player-photos/fdea0f1723992953.webp" }, { - "id": "player-d3466c39", - "match_name": "Archer", - "full_name": "Archer", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-53a3ce82", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e977febc", + "condition": 100, + "full_name": "An Chi-wan ", "attributes": { + "mechanics": 74, "laning": 74, - "mechanics": 72, - "discipline": 73, - "macro_play": 73, - "consistency": 73, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 65, - "teamfighting": 73, "champion_pool": 71, - "mental_resilience": 72 + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, + "match_name": "Elative", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/c8c45f88ce0290a1.webp" + }, + { + "id": "player-563ef4e7", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-c1e9468d", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-e977febc", + "condition": 100, + "full_name": "Takefumi Kosaka", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Jericho", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": "2003-02-13", "stats": {}, + "profile_image_url": "/player-photos/c12cde320e9b74f3.webp" + }, + { + "id": "player-5cd0da40", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Lee Yong-min", + "attributes": { + "mechanics": 70, + "laning": 72, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, + "shotcalling": 65, + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 71 + }, + "match_name": "Saver", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-208c3750", + "nationality": "KR", + "date_of_birth": "2004-02-16", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/154929a7e3213598.webp" }, { - "id": "player-439b3373", - "match_name": "kkkkkkkkk", - "full_name": "kkkkkkkkk", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-5ebe8018", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8d244b3a", + "condition": 100, + "full_name": "Hibiki Yamane", "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 68, + "mechanics": 70, + "laning": 72, + "teamfighting": 74, "macro_play": 71, "consistency": 71, "shotcalling": 71, - "teamfighting": 70, "champion_pool": 69, - "mental_resilience": 70 + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Chico", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "JP", + "date_of_birth": "2008-01-01", "stats": {}, + "profile_image_url": "/player-photos/b548400af31ccee8.webp" + }, + { + "id": "player-6b674954", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-15282d93", + "condition": 100, + "full_name": "Kazuki Aoshima", + "attributes": { + "mechanics": 66, + "laning": 70, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 74, + "mental_resilience": 70 + }, + "match_name": "Grit", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 75, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "JP", + "date_of_birth": "2008-01-01", + "stats": {}, + "profile_image_url": "/player-photos/8d1bb7d2d89ce7c6.webp" }, { - "id": "player-db55752a", - "match_name": "Fluid", - "full_name": "Fluid", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-78e792c2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8d244b3a", + "condition": 100, + "full_name": "Koji Kuwajima", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 72, - "macro_play": 70, + "laning": 70, + "teamfighting": 70, + "macro_play": 72, "consistency": 70, "shotcalling": 71, - "teamfighting": 70, "champion_pool": 70, + "discipline": 74, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Razer", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": "2004-01-01", + "stats": {}, + "profile_image_url": "/player-photos/904679788ef916e2.webp" }, { "id": "player-7f025de3", - "match_name": "Gimi", - "full_name": "Gimi", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e977febc", + "condition": 100, + "full_name": "Kim Min-gyu", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 65, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Gimi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2002-07-11", + "stats": {}, + "profile_image_url": "/player-photos/da0dc26288bc30aa.webp" }, { "id": "player-83f85b6e", - "match_name": "SnowRabbit", - "full_name": "SnowRabbit", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-208c3750", + "condition": 100, + "full_name": "Yukito Yasuda", "attributes": { - "laning": 70, "mechanics": 71, - "discipline": 71, + "laning": 70, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 70, "champion_pool": 69, + "discipline": 71, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SnowRabbit\t", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2008-11-27", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "JP", + "date_of_birth": "2008-11-07", + "stats": {}, + "profile_image_url": "/player-photos/b87ac32872f0d69b.webp" }, { - "id": "player-9dcea337", - "match_name": "YellowYoshi", - "full_name": "YellowYoshi", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-8760a44b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c1e9468d", + "condition": 100, + "full_name": "Masaki Kawashima", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 72, + "mechanics": 73, + "laning": 73, + "teamfighting": 72, "macro_play": 72, "consistency": 72, "shotcalling": 71, - "teamfighting": 72, "champion_pool": 71, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, + "match_name": "ankochan", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "JP", + "date_of_birth": "2004-04-27", + "stats": {}, + "profile_image_url": "/player-photos/bac6b57111f1cef1.webp" + }, + { + "id": "player-8af60465", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-c1e9468d", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Bruce Scott Torres Nano", + "attributes": { + "mechanics": 74, + "laning": 72, + "teamfighting": 73, + "macro_play": 71, + "consistency": 72, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 68, + "mental_resilience": 70 + }, + "match_name": "Bruce", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-b6b8bfae", + "nationality": "PE", + "date_of_birth": "2004-04-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d7841784947e3007.webp" }, { - "id": "player-e7e8db44", - "match_name": "HRK", - "full_name": "HRK", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-97a276cb", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b6b8bfae", + "condition": 100, + "full_name": "Shunsuke Kumagai", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 74, + "laning": 70, + "teamfighting": 66, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 69, - "mental_resilience": 72 + "discipline": 68, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "MayR", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "JP", + "date_of_birth": "2007-10-01", + "stats": {}, + "profile_image_url": "/player-photos/a56a09db398f473e.webp" }, { - "id": "player-53a3ce82", - "match_name": "Elative", - "full_name": "Elative", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, + "id": "player-9d2d1fef", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-e977febc", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-208c3750", + "condition": 100, + "full_name": "Kazuhira Arihara", + "attributes": { + "mechanics": 70, + "laning": 71, + "teamfighting": 69, + "macro_play": 70, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "p1ng", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/1bd410748fe08691.webp" }, { - "id": "player-f5e239e2", - "match_name": "DICE", - "full_name": "DICE", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-9dcea337", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c1e9468d", + "condition": 100, + "full_name": "Yoshiki Fujimoto", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 66, + "mechanics": 72, + "laning": 72, + "teamfighting": 72, "macro_play": 72, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 70 + "consistency": 72, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "YellowYoshi\t", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2002-04-03", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/69a71c1a3d931952.webp" }, { "id": "player-b9563853", - "match_name": "Alps", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e82d1866", + "condition": 100, "full_name": "Alps", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 71, "mechanics": 70, - "discipline": 70, + "laning": 71, + "teamfighting": 73, "macro_play": 70, "consistency": 71, "shotcalling": 71, - "teamfighting": 73, "champion_pool": 69, + "discipline": 70, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Alps", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-d638f08f", - "match_name": "Ramune", - "full_name": "Ramune", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-bc5636c3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Han Seung-mi", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 72, + "laning": 73, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, + "shotcalling": 65, "champion_pool": 71, + "discipline": 72, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Patch", + "loan_listed": false, + "contract_end": "2027-01-01", + "transfer_listed": false, + "position": "Support", "team_id": "team-c1e9468d", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/6323b1956119a2a3.webp" }, { - "id": "player-da956576", - "match_name": "advance", - "full_name": "advance", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-bcb852e4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e82d1866", + "condition": 100, + "full_name": "suyahime", "attributes": { - "laning": 74, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 74, - "shotcalling": 65, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 72 + "mechanics": 70, + "laning": 70, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "suyahime", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-efe50e62", - "match_name": "tol2", - "full_name": "tol2", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-2363745a", - "match_name": "Ellim", - "full_name": "Ellim", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-c7fd6212", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-208c3750", + "condition": 100, + "full_name": "Sim Eun-ho ", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 68, - "macro_play": 74, - "consistency": 74, + "mechanics": 72, + "laning": 70, + "teamfighting": 70, + "macro_play": 71, + "consistency": 71, "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 70 + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "HyunSim", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2003-04-29", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/d40d396a9ba02dd8.webp" }, { "id": "player-cfeacc2b", - "match_name": "Kangkuk", - "full_name": "Kangkuk", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8d244b3a", + "condition": 100, + "full_name": "Kim Kang-ku", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 71, + "laning": 70, + "teamfighting": 74, "macro_play": 71, "consistency": 70, "shotcalling": 65, - "teamfighting": 74, "champion_pool": 71, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Kangkuk", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "KR", + "date_of_birth": "2005-11-22", + "stats": {}, + "profile_image_url": "/player-photos/d5b3b5ac084cbc08.webp" }, { - "id": "player-2afb7943", - "match_name": "Karaage", - "full_name": "Karaage", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d0aeefae", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "UKyo", "attributes": { - "laning": 74, "mechanics": 70, - "discipline": 72, - "macro_play": 68, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 71 + "laning": 73, + "teamfighting": 70, + "macro_play": 72, + "consistency": 71, + "shotcalling": 65, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "traits": [], - "contract_end": null, + "match_name": "UKyo", + "position": "Support", + "team_id": "team-e82d1866", + "nationality": "BR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-f7b42ea9", - "match_name": "Eria", - "full_name": "Eria", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d3466c39", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c1e9468d", + "condition": 100, + "full_name": "Lee Keun-hee", "attributes": { - "laning": 70, - "mechanics": 70, + "mechanics": 72, + "laning": 74, + "teamfighting": 73, + "macro_play": 73, + "consistency": 73, + "shotcalling": 65, + "champion_pool": 71, "discipline": 73, - "macro_play": 71, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 69, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Archer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "1998-12-17", + "stats": {}, + "profile_image_url": "/player-photos/acb269790d3a1be4.webp" }, { - "id": "player-563ef4e7", - "match_name": "Jericho", - "full_name": "Jericho", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d638f08f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c1e9468d", + "condition": 100, + "full_name": "Osamu Ozawa", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, - "mental_resilience": 74 + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e977febc", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Ramune", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": "1997-11-02", + "stats": {}, + "profile_image_url": "/player-photos/52319f20264a5e80.webp" }, { - "id": "player-e6aa5e38", - "match_name": "Gecko", - "full_name": "Gecko", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-d80790ca", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "An Chi-wanf", "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 74, - "macro_play": 71, - "consistency": 71, - "shotcalling": 65, + "mechanics": 74, + "laning": 74, "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "traits": [], - "contract_end": null, + "match_name": "f4ke", + "loan_listed": false, + "contract_end": "2027-01-01", + "transfer_listed": false, + "position": "Support", + "team_id": "team-e977febc", + "nationality": "JP", + "date_of_birth": null, "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/0579f3bd7f72a8b2.webp" }, { - "id": "player-c7fd6212", - "match_name": "HyunSim", - "full_name": "HyunSim", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-da956576", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e82d1866", + "condition": 100, + "full_name": "advance", "attributes": { - "laning": 70, "mechanics": 72, - "discipline": 71, - "macro_play": 71, - "consistency": 71, + "laning": 74, + "teamfighting": 74, + "macro_play": 72, + "consistency": 74, "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "advance", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-8760a44b", - "match_name": "ankochan", - "full_name": "ankochan", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-db55752a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8d244b3a", + "condition": 100, + "full_name": "Yutaka Inoue", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, + "mechanics": 70, + "laning": 70, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, + "champion_pool": 70, + "discipline": 72, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c1e9468d", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Fluid", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2004-01-01", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "JP", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/1606cdb91aec9f28.webp" + }, + { + "id": "player-dd92bd81", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-15282d93", + "condition": 100, + "full_name": "Lee Si-hyung", + "attributes": { + "mechanics": 69, + "laning": 72, + "teamfighting": 71, + "macro_play": 71, + "consistency": 72, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 70 + }, + "match_name": "Potential", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2007-01-01", + "stats": {}, + "profile_image_url": "/player-photos/4a51f01bd97f9dc9.webp" }, { - "id": "player-9d2d1fef", - "match_name": "p1ng", - "full_name": "p1ng", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-e3c72023", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-15282d93", + "condition": 100, + "full_name": "Park Jae-hyun", "attributes": { + "mechanics": 66, "laning": 71, - "mechanics": 70, - "discipline": 70, + "teamfighting": 68, "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 69, - "champion_pool": 69, + "consistency": 70, + "shotcalling": 65, + "champion_pool": 67, + "discipline": 70, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Damocles", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "KR", + "date_of_birth": "2003-05-05", + "stats": {}, + "profile_image_url": "/player-photos/e619fba5c4b2961c.webp" }, { - "id": "player-78e792c2", - "match_name": "Razer", - "full_name": "Razer", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-e6aa5e38", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8d244b3a", + "condition": 100, + "full_name": "Jeon Sang-il", "attributes": { - "laning": 70, - "mechanics": 70, + "mechanics": 71, + "laning": 71, + "teamfighting": 74, + "macro_play": 71, + "consistency": 71, + "shotcalling": 65, + "champion_pool": 69, "discipline": 74, - "macro_play": 72, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 70, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8d244b3a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Gecko", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "KR", + "date_of_birth": "2006-04-16", + "stats": {}, + "profile_image_url": "/player-photos/bbfeecc54b7d9e94.webp" }, { - "id": "player-4c9945ee", - "match_name": "rre", - "full_name": "rre", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e7e8db44", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e82d1866", + "condition": 100, + "full_name": "HRK", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 70, - "macro_play": 71, - "consistency": 71, + "laning": 70, + "teamfighting": 71, + "macro_play": 70, + "consistency": 70, "shotcalling": 71, - "teamfighting": 68, "champion_pool": 69, - "mental_resilience": 70 + "discipline": 74, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-208c3750", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "HRK", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "JP", + "date_of_birth": null, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-efe50e62", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e977febc", + "condition": 100, + "full_name": "Haruki Shibata", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "tol2", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "JP", + "date_of_birth": "2002-10-17", + "stats": {}, + "profile_image_url": "/player-photos/81c13699f2527635.webp" }, { - "id": "player-bcb852e4", - "match_name": "suyahime", - "full_name": "suyahime", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f5e239e2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b6b8bfae", + "condition": 100, + "full_name": "Hong Do-hyeon", "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 72, + "consistency": 74, "shotcalling": 65, - "teamfighting": 70, - "champion_pool": 70, + "champion_pool": 69, + "discipline": 66, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e82d1866", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "DICE", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/a3d6a0787349f720.webp" }, { - "id": "player-97a276cb", - "match_name": "MayR", - "full_name": "MayR", - "date_of_birth": null, - "nationality": "JP", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f7b42ea9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e82d1866", + "condition": 100, + "full_name": "Eria", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 68, - "macro_play": 70, + "laning": 70, + "teamfighting": 71, + "macro_play": 71, "consistency": 70, "shotcalling": 71, - "teamfighting": 66, "champion_pool": 69, - "mental_resilience": 70 + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-b6b8bfae", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Eria", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "JP", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/lpl_players.json b/data/players/lpl_players.json index 9a01333f8..25ed0331a 100644 --- a/data/players/lpl_players.json +++ b/data/players/lpl_players.json @@ -2,6 +2,53 @@ "name": "LPL Players", "description": "LPL - 2026 Season", "players": [ + { + "id": "player-70fdb65d", + "wage": 125000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-75263716", + "position": "Jungle", + "condition": 100, + "full_name": "Mao An", + "attributes": { + "mechanics": 78, + "laning": 79, + "teamfighting": 72, + "macro_play": 76, + "consistency": 78, + "shotcalling": 76, + "champion_pool": 82, + "discipline": 83, + "mental_resilience": 75 + }, + "match_name": "Aki ", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1875000, + "birth_country": null, + "date_of_birth": "2000-04-09", + "potential_base": 82, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/bcb1228e0892c38c.png", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, { "id": "player-00ca28af", "wage": 0, @@ -11,43 +58,33 @@ "fitness": 100, "team_id": "team-5facf88e", "condition": 100, - "full_name": "Cube", + "full_name": "Dai Yi", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 86, + "laning": 86, + "teamfighting": 83, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 83, "champion_pool": 82, + "discipline": 86, "mental_resilience": 84 }, - "match_name": "Dai Yi", + "match_name": "Cube", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-07-19", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584093008_5s608ufopo8.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2002-07-19", + "stats": {}, + "profile_image_url": "/player-photos/96a387c533fdb872.webp" }, { "id": "player-017fd477", @@ -55,45 +92,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "fengyue", + "full_name": "Wang Run-lai", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 84, + "laning": 82, + "teamfighting": 81, "macro_play": 79, "consistency": 81, "shotcalling": 83, - "teamfighting": 81, "champion_pool": 83, + "discipline": 84, "mental_resilience": 84 }, - "match_name": "Wang Run-lai", + "match_name": "fengyue", "loan_listed": false, "potential_base": 86, "transfer_listed": false, - "date_of_birth": "2005-11-06", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584199765_usxku6z7iy.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-b777d366", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2005-11-06", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/e3aecd7e73c94d61.webp" }, { "id": "player-01c31869", @@ -104,43 +127,33 @@ "fitness": 100, "team_id": "team-0a33a07d", "condition": 100, - "full_name": "Care", + "full_name": "Yang Jie", "attributes": { - "laning": 87, "mechanics": 87, - "discipline": 87, + "laning": 87, + "teamfighting": 85, "macro_play": 88, "consistency": 88, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 86, + "discipline": 87, "mental_resilience": 87 }, - "match_name": "Yang Jie", + "match_name": "Care", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-09-18", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583663804_tohq5dft4ya.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2002-09-18", + "stats": {}, + "profile_image_url": "/player-photos/815d26950559d50e.webp" }, { "id": "player-04a99f75", @@ -151,43 +164,33 @@ "fitness": 100, "team_id": "team-ec9ab429", "condition": 100, - "full_name": "sheer", + "full_name": "Xu Wen-jie", "attributes": { - "laning": 88, "mechanics": 89, - "discipline": 85, + "laning": 88, + "teamfighting": 86, "macro_play": 88, "consistency": 89, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 84, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Xu Wen-jie", + "match_name": "sheer", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-06-25", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583500646_5uk9o6si2w2.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-06-25", + "stats": {}, + "profile_image_url": "/player-photos/4ae2b11a221e5480.webp" }, { "id": "player-06c4a09c", @@ -198,43 +201,33 @@ "fitness": 100, "team_id": "team-d6ad5a14", "condition": 100, - "full_name": "Wei", + "full_name": "Yan Yang-wei", "attributes": { - "laning": 92, "mechanics": 86, - "discipline": 86, + "laning": 92, + "teamfighting": 89, "macro_play": 83, "consistency": 88, "shotcalling": 89, - "teamfighting": 89, "champion_pool": 87, + "discipline": 86, "mental_resilience": 87 }, - "match_name": "Yan Yang-wei", + "match_name": "Wei", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-08-08", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583050219_p03dwylegfi.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-08-08", + "stats": {}, + "profile_image_url": "/player-photos/ea2bc7bd165199a6.webp" }, { "id": "player-06fbfb97", @@ -245,43 +238,33 @@ "fitness": 100, "team_id": "team-a84cce06", "condition": 100, - "full_name": "Climber", + "full_name": "Wu Hong-Tao", "attributes": { - "laning": 89, "mechanics": 89, - "discipline": 89, + "laning": 89, + "teamfighting": 89, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 89, "champion_pool": 86, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Wu Hong-Tao", + "match_name": "Climber", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 99, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-07", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584557646_ehwatjg2b6a.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-06-07", + "stats": {}, + "profile_image_url": "/player-photos/1df0f1c0ae085dcf.webp" }, { "id": "player-11e9bd69", @@ -292,43 +275,33 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "re0", + "full_name": "Xu Han-Yang", "attributes": { - "laning": 89, "mechanics": 85, - "discipline": 88, + "laning": 89, + "teamfighting": 85, "macro_play": 86, "consistency": 87, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 84, + "discipline": 88, "mental_resilience": 87 }, - "match_name": "Xu Han-Yang", + "match_name": "re0", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-01-01", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583790293_3hs7c2oh0ja.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-01-01", + "stats": {}, + "profile_image_url": "/player-photos/9754960dc06510a5.webp" }, { "id": "player-152e90c3", @@ -339,43 +312,33 @@ "fitness": 100, "team_id": "team-dc1429f2", "condition": 100, - "full_name": "Burdol", + "full_name": "Noh Tae-yoon ", "attributes": { - "laning": 86, "mechanics": 84, - "discipline": 82, + "laning": 86, + "teamfighting": 84, "macro_play": 86, "consistency": 86, "shotcalling": 78, - "teamfighting": 84, "champion_pool": 81, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Noh Tae-yoon ", + "match_name": "Burdol", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-09-21", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583290613_kcte0ftxf8j.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-09-21", + "stats": {}, + "profile_image_url": "/player-photos/85d72da9d9ebd5c3.webp" }, { "id": "player-162d9954", @@ -386,43 +349,33 @@ "fitness": 100, "team_id": "team-6481a859", "condition": 100, - "full_name": "GALA", + "full_name": "Chen Wei", "attributes": { - "laning": 91, "mechanics": 89, - "discipline": 84, + "laning": 91, + "teamfighting": 85, "macro_play": 90, "consistency": 90, "shotcalling": 89, - "teamfighting": 85, "champion_pool": 89, + "discipline": 84, "mental_resilience": 87 }, - "match_name": "Chen Wei", + "match_name": "GALA", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 87, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-02-14", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583190103_w8lnykzuhk.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2001-02-14", + "stats": {}, + "profile_image_url": "/player-photos/019b6e9021177ccf.webp" }, { "id": "player-16d7d670", @@ -430,45 +383,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Zhuo", + "full_name": "Wang Xu-zhuo", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 79, + "laning": 84, + "teamfighting": 85, "macro_play": 85, "consistency": 85, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 82, + "discipline": 79, "mental_resilience": 80 }, - "match_name": "Wang Xu-zhuo", + "match_name": "Zhuo", "loan_listed": false, "potential_base": 85, "transfer_listed": false, - "date_of_birth": "2001-02-13", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583669214_mew6otvgcy.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-0a33a07d", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2001-02-13", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/9b420a0875f90fb7.webp" }, { "id": "player-18d10e93", @@ -476,45 +415,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Hang", + "full_name": "Fu Ming-Hang", "attributes": { - "laning": 84, "mechanics": 77, - "discipline": 85, + "laning": 84, + "teamfighting": 78, "macro_play": 77, "consistency": 81, "shotcalling": 83, - "teamfighting": 78, "champion_pool": 81, + "discipline": 85, "mental_resilience": 80 }, - "match_name": "Fu Ming-Hang", + "match_name": "Hang", "loan_listed": false, "potential_base": 88, "transfer_listed": false, - "date_of_birth": "2003-02-05", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584456083_8sg5fuyxdi6.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-a324dc9d", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2003-02-05", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/223f927b9a61236d.webp" }, { "id": "player-1e98bad0", @@ -522,45 +447,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Meiko", + "full_name": "Tian Ye", "attributes": { - "laning": 83, "mechanics": 77, - "discipline": 80, + "laning": 83, + "teamfighting": 80, "macro_play": 78, "consistency": 84, "shotcalling": 83, - "teamfighting": 80, "champion_pool": 82, + "discipline": 80, "mental_resilience": 79 }, - "match_name": "Tian Ye", + "match_name": "Meiko", "loan_listed": false, "potential_base": 87, "transfer_listed": false, - "date_of_birth": "1998-06-06", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583058006_7gb4ld0jl95.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-d6ad5a14", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "1998-06-06", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/240c2485bf9423b4.webp" }, { "id": "player-1e98cb08", @@ -571,43 +482,33 @@ "fitness": 100, "team_id": "team-3bd486ec", "condition": 100, - "full_name": "Tarzan", + "full_name": "Lee Seung-yong", "attributes": { - "laning": 92, "mechanics": 87, - "discipline": 84, + "laning": 92, + "teamfighting": 88, "macro_play": 90, "consistency": 90, "shotcalling": 84, - "teamfighting": 88, "champion_pool": 87, + "discipline": 84, "mental_resilience": 88 }, - "match_name": "Lee Seung-yong", + "match_name": "Tarzan", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1999-08-23", - "nationality": "KR", - "profile_image_url": "/player-photos/1779582320731_xlf4wexv5kb.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "1999-08-23", + "stats": {}, + "profile_image_url": "/player-photos/fb771deaee9341bf.webp" }, { "id": "player-27cf75ca", @@ -618,43 +519,33 @@ "fitness": 100, "team_id": "team-3bd486ec", "condition": 100, - "full_name": "Shanks", + "full_name": "Cui Xiao-jun", "attributes": { - "laning": 88, "mechanics": 90, - "discipline": 86, + "laning": 88, + "teamfighting": 90, "macro_play": 84, "consistency": 90, "shotcalling": 89, - "teamfighting": 90, "champion_pool": 87, + "discipline": 86, "mental_resilience": 87 }, - "match_name": "Cui Xiao-jun", + "match_name": "Shanks", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-05-13", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582326296_lljdpmntq6j.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2001-05-13", + "stats": {}, + "profile_image_url": "/player-photos/83181b4deb7e3708.webp" }, { "id": "player-28e11204", @@ -665,43 +556,33 @@ "fitness": 100, "team_id": "team-a84cce06", "condition": 100, - "full_name": "sasi", + "full_name": "Yan Rui", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 86, + "laning": 86, + "teamfighting": 86, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 83, + "discipline": 86, "mental_resilience": 86 }, - "match_name": "Yan Rui", + "match_name": "sasi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 101, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-08-26", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584555018_s62deyv73h.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-08-26", + "stats": {}, + "profile_image_url": "/player-photos/3f2801cc5658fc08.webp" }, { "id": "player-2e23dc2d", @@ -709,45 +590,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "MISSING", + "full_name": "Lou Yun-feng", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 81, + "laning": 84, + "teamfighting": 81, "macro_play": 84, "consistency": 86, "shotcalling": 83, - "teamfighting": 81, "champion_pool": 79, + "discipline": 81, "mental_resilience": 81 }, - "match_name": "Lou Yun-feng", + "match_name": "MISSING", "loan_listed": false, "potential_base": 90, "transfer_listed": false, - "date_of_birth": "2001-05-26", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583515539_ug359mbp7p.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-ec9ab429", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2001-05-26", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/81f058f9db03e766.webp" }, { "id": "player-31c22349", @@ -758,43 +625,33 @@ "fitness": 100, "team_id": "team-38a818e5", "condition": 100, - "full_name": "Ahn", + "full_name": "An Shan-Ye ", "attributes": { - "laning": 85, "mechanics": 87, - "discipline": 78, + "laning": 85, + "teamfighting": 84, "macro_play": 89, "consistency": 89, "shotcalling": 81, - "teamfighting": 84, "champion_pool": 82, + "discipline": 78, "mental_resilience": 82 }, - "match_name": "An Shan-Ye ", + "match_name": "Ahn", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-03", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584326130_5vezol8uzxp.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-06-03", + "stats": {}, + "profile_image_url": "/player-photos/af41c29e64f094e4.webp" }, { "id": "player-31f5219f", @@ -805,43 +662,80 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "Hery", + "full_name": "Wang He-yong", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 85, + "laning": 86, + "teamfighting": 82, "macro_play": 85, "consistency": 85, "shotcalling": 83, - "teamfighting": 82, "champion_pool": 82, + "discipline": 85, "mental_resilience": 83 }, - "match_name": "Wang He-yong", + "match_name": "Hery", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-12-05", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583776867_qbqclwjgpkn.webp", "position": "Top", - "natural_position": "Top", - "traits": [], + "nationality": "CN", + "date_of_birth": "2003-12-05", + "stats": {}, + "profile_image_url": "/player-photos/5084a5e97ad65212.webp" + }, + { + "id": "player-ddb2ac55", + "wage": 128000, "stats": { "appearances": 0 }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-b777d366", + "position": "Support", + "condition": 100, + "full_name": "Ying Xin-Yuan", + "attributes": { + "mechanics": 77, + "laning": 70, + "teamfighting": 83, + "macro_play": 76, + "consistency": 81, + "shotcalling": 76, + "champion_pool": 73, + "discipline": 83, + "mental_resilience": 82 + }, + "match_name": "Niket", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1920000, + "birth_country": null, + "date_of_birth": "2003-11-26", + "potential_base": 87, "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/68f41f85.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-3996f004", @@ -849,45 +743,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Xiaoxia", + "full_name": "Xia Jing-yao", "attributes": { - "laning": 88, "mechanics": 83, - "discipline": 85, + "laning": 88, + "teamfighting": 86, "macro_play": 81, "consistency": 83, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 82, + "discipline": 85, "mental_resilience": 83 }, - "match_name": "Xia Jing-yao", + "match_name": "Xiaoxia", "loan_listed": false, "potential_base": 91, "transfer_listed": false, - "date_of_birth": "2008-04-09", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584567852_qu2tzwgpab.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-a84cce06", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2008-04-09", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/8779c57f6960a0c6.webp" }, { "id": "player-3b463ee9", @@ -898,43 +778,33 @@ "fitness": 100, "team_id": "team-ca28739d", "condition": 100, - "full_name": "Xiaohao", + "full_name": "Peng Hao", "attributes": { - "laning": 86, "mechanics": 79, - "discipline": 74, + "laning": 86, + "teamfighting": 74, "macro_play": 80, "consistency": 82, "shotcalling": 83, - "teamfighting": 74, "champion_pool": 81, + "discipline": 74, "mental_resilience": 79 }, - "match_name": "Peng Hao", + "match_name": "Xiaohao", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-08-06", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582727679_1t0e9rpqdj3.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-08-06", + "stats": {}, + "profile_image_url": "/player-photos/e0616d48c8728d59.webp" }, { "id": "player-3b5cdf20", @@ -945,43 +815,33 @@ "fitness": 100, "team_id": "team-ec9ab429", "condition": 100, - "full_name": "BuLLDoG", + "full_name": "Lee Tae-young", "attributes": { - "laning": 85, "mechanics": 88, - "discipline": 86, + "laning": 85, + "teamfighting": 88, "macro_play": 88, "consistency": 88, "shotcalling": 81, - "teamfighting": 88, "champion_pool": 84, + "discipline": 86, "mental_resilience": 87 }, - "match_name": "Lee Tae-young", + "match_name": "BuLLDoG", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-12", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583506493_p3d60ll148.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-06-12", + "stats": {}, + "profile_image_url": "/player-photos/1f42066092681104.webp" }, { "id": "player-40dbc127", @@ -992,43 +852,33 @@ "fitness": 100, "team_id": "team-dc1429f2", "condition": 100, - "full_name": "Heng", + "full_name": "Yang Cui-heng", "attributes": { - "laning": 86, "mechanics": 80, - "discipline": 80, + "laning": 86, + "teamfighting": 80, "macro_play": 83, "consistency": 84, "shotcalling": 83, - "teamfighting": 80, "champion_pool": 82, + "discipline": 80, "mental_resilience": 81 }, - "match_name": "Yang Cui-heng", + "match_name": "Heng", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-06-20", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583297541_ndbv8au4cd.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-06-20", + "stats": {}, + "profile_image_url": "/player-photos/2d5c876add335636.webp" }, { "id": "player-40f34aa5", @@ -1039,43 +889,33 @@ "fitness": 100, "team_id": "team-d6ad5a14", "condition": 100, - "full_name": "Nia", + "full_name": "Zou Guang-Lu", "attributes": { - "laning": 81, "mechanics": 81, - "discipline": 86, + "laning": 81, + "teamfighting": 83, "macro_play": 79, "consistency": 84, "shotcalling": 83, - "teamfighting": 83, "champion_pool": 81, + "discipline": 86, "mental_resilience": 84 }, - "match_name": "Zou Guang-Lu", + "match_name": "Nia", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-10-10", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583045326_tiz4c5c3ex.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-10-10", + "stats": {}, + "profile_image_url": "/player-photos/94cc3770578eae26.webp" }, { "id": "player-44156cbe", @@ -1086,43 +926,33 @@ "fitness": 100, "team_id": "team-dd4bc6a5", "condition": 100, - "full_name": "XUN", + "full_name": "Peng Li-xun", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 86, + "laning": 92, + "teamfighting": 87, "macro_play": 90, "consistency": 92, "shotcalling": 84, - "teamfighting": 87, "champion_pool": 89, + "discipline": 86, "mental_resilience": 88 }, - "match_name": "Peng Li-xun", + "match_name": "XUN", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-02-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779582532527_fq90qcfxdss.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-02-05", + "stats": {}, + "profile_image_url": "/player-photos/3f1eadb9384801ff.webp" }, { "id": "player-4a1c8820", @@ -1133,44 +963,34 @@ "fitness": 100, "team_id": "team-dd4bc6a5", "condition": 100, - "full_name": "Viper", + "full_name": "Park Do-hyeon", "attributes": { - "laning": 87, "mechanics": 92, - "discipline": 87, + "laning": 87, + "teamfighting": 87, "macro_play": 91, "consistency": 91, "shotcalling": 84, - "teamfighting": 87, "champion_pool": 88, + "discipline": 87, "mental_resilience": 88 }, - "match_name": "Park Do-hyeon", + "match_name": "Viper", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 88, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-10-19", - "nationality": "KR", - "profile_image_url": "/player-photos/1779582539198_08omgeiin2w8.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, + "nationality": "KR", + "date_of_birth": "2000-10-19", + "stats": {}, + "profile_image_url": "/player-photos/b8500f16fb69f606.webp" + }, { "id": "player-4fd88dc0", "wage": 0, @@ -1180,43 +1000,127 @@ "fitness": 100, "team_id": "team-d6ad5a14", "condition": 100, - "full_name": "JiaQi", + "full_name": "Zi Jia-qi", "attributes": { - "laning": 89, "mechanics": 83, - "discipline": 87, + "laning": 89, + "teamfighting": 85, "macro_play": 88, "consistency": 88, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 85, + "discipline": 87, "mental_resilience": 85 }, - "match_name": "Zi Jia-qi", + "match_name": "JiaQi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-20", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583038829_h7ldvqvdv7n.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], + "nationality": "CN", + "date_of_birth": "2003-06-20", + "stats": {}, + "profile_image_url": "/player-photos/a87a8b01746617c7.webp" + }, + { + "id": "player-517bd222", + "wage": 110000, "stats": { "appearances": 0 }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-75263716", + "position": "Mid", + "condition": 100, + "full_name": "Fang Zhe-Yu", + "attributes": { + "mechanics": 86, + "laning": 81, + "teamfighting": 80, + "macro_play": 82, + "consistency": 84, + "shotcalling": 75, + "champion_pool": 78, + "discipline": 83, + "mental_resilience": 83 + }, + "match_name": "Xiaofang", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1650000, + "birth_country": null, + "date_of_birth": "2004-07-06", + "potential_base": 90, "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/1fd7adaed12c7d01.png", "potential_revealed": null, - "potential_research_started_on": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-111b72d7", + "wage": 122000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ec9ab429", + "position": "Support", + "condition": 100, + "full_name": "Liao Ding-Yang", + "attributes": { + "mechanics": 77, + "laning": 72, + "teamfighting": 77, + "macro_play": 82, + "consistency": 80, + "shotcalling": 77, + "champion_pool": 68, + "discipline": 80, + "mental_resilience": 83 + }, + "match_name": "Iwandy", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1830000, + "birth_country": null, + "date_of_birth": "2000-08-27", + "potential_base": 82, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/411839e0.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-56d6a600", @@ -1227,43 +1131,33 @@ "fitness": 100, "team_id": "team-b777d366", "condition": 100, - "full_name": "JackeyLove", + "full_name": "Yu Wen-bo", "attributes": { - "laning": 87, "mechanics": 90, - "discipline": 87, + "laning": 87, + "teamfighting": 89, "macro_play": 88, "consistency": 88, "shotcalling": 89, - "teamfighting": 89, "champion_pool": 87, + "discipline": 87, "mental_resilience": 90 }, - "match_name": "Yu Wen-bo", + "match_name": "JackeyLove", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-11-18", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584212444_xvwkhe46afa.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2000-11-18", + "stats": {}, + "profile_image_url": "/player-photos/8227980dd755873c.webp" }, { "id": "player-58441870", @@ -1274,43 +1168,33 @@ "fitness": 100, "team_id": "team-6481a859", "condition": 100, - "full_name": "HongQ", + "full_name": "Tsai Ming-hong", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 91, + "laning": 90, + "teamfighting": 91, "macro_play": 92, "consistency": 92, "shotcalling": 88, - "teamfighting": 91, "champion_pool": 89, + "discipline": 91, "mental_resilience": 90 }, - "match_name": "Tsai Ming-hong", + "match_name": "HongQ", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-05-11", - "nationality": "TW", - "profile_image_url": "/player-photos/1779583186762_qoa0a4ktuzp.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2002-05-11", + "stats": {}, + "profile_image_url": "/player-photos/8ffce3fa90db75d1.webp" }, { "id": "player-5eebc03f", @@ -1321,43 +1205,33 @@ "fitness": 100, "team_id": "team-dd4bc6a5", "condition": 100, - "full_name": "Bin", + "full_name": "Chen Ze-bin", "attributes": { - "laning": 90, "mechanics": 91, - "discipline": 88, + "laning": 90, + "teamfighting": 86, "macro_play": 87, "consistency": 92, "shotcalling": 89, - "teamfighting": 86, "champion_pool": 87, + "discipline": 88, "mental_resilience": 88 }, - "match_name": "Chen Ze-bin", + "match_name": "Bin", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-09-28", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582529530_z3ugkp25yp.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2002-09-28", + "stats": {}, + "profile_image_url": "/player-photos/629959fc23ffe8e9.webp" }, { "id": "player-60118648", @@ -1365,45 +1239,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "ON", + "full_name": "Luo Wen-jun", "attributes": { - "laning": 88, "mechanics": 84, - "discipline": 86, + "laning": 88, + "teamfighting": 87, "macro_play": 90, "consistency": 90, "shotcalling": 89, - "teamfighting": 87, "champion_pool": 88, + "discipline": 86, "mental_resilience": 87 }, - "match_name": "Luo Wen-jun", + "match_name": "ON", "loan_listed": false, "potential_base": 90, "transfer_listed": false, - "date_of_birth": "2003-05-12", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582526046_5z9r0kqp309.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-dd4bc6a5", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2003-05-12", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/b23f88a66643d095.webp" }, { "id": "player-658bed9e", @@ -1411,45 +1271,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Erha", + "full_name": "Shi Xu-ye", "attributes": { - "laning": 84, "mechanics": 80, - "discipline": 83, + "laning": 84, + "teamfighting": 81, "macro_play": 79, "consistency": 85, "shotcalling": 81, - "teamfighting": 81, "champion_pool": 86, + "discipline": 83, "mental_resilience": 85 }, - "match_name": "Shi Xu-ye", + "match_name": "Erha", "loan_listed": false, "potential_base": 90, "transfer_listed": false, - "date_of_birth": "2003-09-28", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584078518_ew3kslwy3uc.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-5facf88e", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2003-09-28", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/ebbe992666573583.webp" }, { "id": "player-66ec0665", @@ -1460,43 +1306,33 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "Juhan", + "full_name": "Lee Ju-han", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 82, + "laning": 86, + "teamfighting": 82, "macro_play": 83, "consistency": 84, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 81, + "discipline": 82, "mental_resilience": 83 }, - "match_name": "Lee Ju-han", + "match_name": "Juhan", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-07-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583792888_csjnhopov86.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-07-15", + "stats": {}, + "profile_image_url": "/player-photos/e2f4fa775f7d2055.webp" }, { "id": "player-73bfe8cc", @@ -1507,43 +1343,33 @@ "fitness": 100, "team_id": "team-ec9ab429", "condition": 100, - "full_name": "Croco", + "full_name": "Kim Dong-beom", "attributes": { - "laning": 89, "mechanics": 87, - "discipline": 83, + "laning": 89, + "teamfighting": 86, "macro_play": 87, "consistency": 88, "shotcalling": 81, - "teamfighting": 86, "champion_pool": 84, + "discipline": 83, "mental_resilience": 85 }, - "match_name": "Kim Dong-beom", + "match_name": "Croco", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-01-12", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583502965_7nkn298p6nh.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-01-12", + "stats": {}, + "profile_image_url": "/player-photos/9181c835bb4439c4.webp" }, { "id": "player-790bd90e", @@ -1554,43 +1380,33 @@ "fitness": 100, "team_id": "team-0a33a07d", "condition": 100, - "full_name": "HOYA", + "full_name": "Yoon Yong-ho", "attributes": { - "laning": 84, "mechanics": 84, - "discipline": 84, + "laning": 84, + "teamfighting": 85, "macro_play": 85, "consistency": 85, "shotcalling": 78, - "teamfighting": 85, "champion_pool": 82, + "discipline": 84, "mental_resilience": 83 }, - "match_name": "Yoon Yong-ho", + "match_name": "HOYA", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-01-15", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583643882_o1ktawjvhg.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2002-01-15", + "stats": {}, + "profile_image_url": "/player-photos/f8e40a9730c7d101.webp" }, { "id": "player-7912a24a", @@ -1601,43 +1417,33 @@ "fitness": 100, "team_id": "team-a324dc9d", "condition": 100, - "full_name": "Xiaohu", + "full_name": "Li Yuan-hao", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, - "match_name": "Li Yuan-hao", + "match_name": "Xiaohu", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-01-28", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584448817_sh2l0xf9p6p.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "1998-01-28", + "stats": {}, + "profile_image_url": "/player-photos/98ec176bdb5b353a.webp" }, { "id": "player-7bc68bac", @@ -1645,45 +1451,78 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Ycx", + "full_name": "Zhao Wen-hao", "attributes": { - "laning": 85, "mechanics": 79, - "discipline": 84, + "laning": 85, + "teamfighting": 77, "macro_play": 80, "consistency": 83, "shotcalling": 86, - "teamfighting": 77, "champion_pool": 81, + "discipline": 84, "mental_resilience": 81 }, - "match_name": "Zhao Wen-hao", + "match_name": "Ycx", "loan_listed": false, "potential_base": 90, "transfer_listed": false, - "date_of_birth": "2000-08-11", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583287814_5ytqll5ftfe.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-dc1429f2", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2000-08-11", "wage": 0, "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/ade75cb0f4be4431.webp" + }, + { + "id": "player-03f44849", + "wage": 101000, "stats": { "appearances": 0 }, - "champion_mastery": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-dc1429f2", + "position": "Mid", + "condition": 100, + "full_name": "Zheng Xia-Jian", + "attributes": { + "mechanics": 84, + "laning": 80, + "teamfighting": 81, + "macro_play": 81, + "consistency": 84, + "shotcalling": 77, + "champion_pool": 79, + "discipline": 81, + "mental_resilience": 77 + }, + "match_name": "Xqw", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1515000, + "birth_country": null, + "date_of_birth": "2003-04-02", + "potential_base": 90, "training_focus": null, + "transfer_listed": false, "transfer_offers": [], - "morale_core": {}, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/ce63e4dd5111ed3e.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-7f92ea4c", @@ -1694,43 +1533,33 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "Photic", + "full_name": "Ying Qi-shen", "attributes": { - "laning": 88, "mechanics": 85, - "discipline": 85, + "laning": 88, + "teamfighting": 86, "macro_play": 87, "consistency": 87, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 84, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Ying Qi-shen", + "match_name": "Photic", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-10-26", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583783550_q8slj30hj1l.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2001-10-26", + "stats": {}, + "profile_image_url": "/player-photos/9dc8df47150aae3a.webp" }, { "id": "player-8223824a", @@ -1741,43 +1570,33 @@ "fitness": 100, "team_id": "team-0a33a07d", "condition": 100, - "full_name": "Assum", + "full_name": "Zou Wei", "attributes": { - "laning": 87, "mechanics": 87, - "discipline": 88, + "laning": 87, + "teamfighting": 84, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 84, "champion_pool": 85, + "discipline": 88, "mental_resilience": 87 }, - "match_name": "Zou Wei", + "match_name": "Assum", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-04-16", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583666814_pewzjvidpch.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-04-16", + "stats": {}, + "profile_image_url": "/player-photos/e225d12944dc8e03.webp" }, { "id": "player-82dde88d", @@ -1788,43 +1607,33 @@ "fitness": 100, "team_id": "team-a324dc9d", "condition": 100, - "full_name": "Zika", + "full_name": "Tang Hua-yu", "attributes": { - "laning": 89, "mechanics": 89, - "discipline": 89, + "laning": 89, + "teamfighting": 89, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 89, "champion_pool": 86, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Tang Hua-yu", + "match_name": "Zika", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-12-19", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584463693_85bmy18gq8v.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-12-19", + "stats": {}, + "profile_image_url": "/player-photos/1dd21c8fc200aad7.webp" }, { "id": "player-9082a945", @@ -1832,45 +1641,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Moham", + "full_name": "Jeong Jae-hun", "attributes": { - "laning": 86, "mechanics": 77, - "discipline": 77, + "laning": 86, + "teamfighting": 79, "macro_play": 83, "consistency": 82, "shotcalling": 83, - "teamfighting": 79, "champion_pool": 79, + "discipline": 77, "mental_resilience": 74 }, - "match_name": "Jeong Jae-hun", + "match_name": "Moham", "loan_listed": false, "potential_base": 82, "transfer_listed": false, - "date_of_birth": "2002-08-08", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583842700_g5s1ha1mvwl.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-75263716", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2002-08-08", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/ddfc502f97c96cc4.webp" }, { "id": "player-9243e51a", @@ -1881,43 +1676,33 @@ "fitness": 100, "team_id": "team-dd4bc6a5", "condition": 100, - "full_name": "Knight", + "full_name": "Zhuo Ding", "attributes": { - "laning": 91, "mechanics": 92, - "discipline": 80, + "laning": 91, + "teamfighting": 91, "macro_play": 87, "consistency": 92, "shotcalling": 89, - "teamfighting": 91, "champion_pool": 89, + "discipline": 80, "mental_resilience": 86 }, - "match_name": "Zhuo Ding", + "match_name": "Knight", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-05-22", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582535379_kppofza5j.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2000-05-22", + "stats": {}, + "profile_image_url": "/player-photos/f65e860976939419.webp" }, { "id": "player-9749fcf8", @@ -1928,43 +1713,33 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "haichao", + "full_name": "Zhang Hai-chao", "attributes": { - "laning": 86, "mechanics": 83, - "discipline": 82, + "laning": 86, + "teamfighting": 84, "macro_play": 85, "consistency": 85, "shotcalling": 83, - "teamfighting": 84, "champion_pool": 82, + "discipline": 82, "mental_resilience": 83 }, - "match_name": "Zhang Hai-chao", + "match_name": "haichao", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-05-21", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583786687_0197g7lu4v8c.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2002-05-21", + "stats": {}, + "profile_image_url": "/player-photos/c344f8df5bb4e3ac.webp" }, { "id": "player-985bb0cd", @@ -1975,43 +1750,33 @@ "fitness": 100, "team_id": "team-ca28739d", "condition": 100, - "full_name": "Angel", + "full_name": "Xiang Tao", "attributes": { - "laning": 85, "mechanics": 78, - "discipline": 83, + "laning": 85, + "teamfighting": 81, "macro_play": 80, "consistency": 82, "shotcalling": 83, - "teamfighting": 81, "champion_pool": 77, + "discipline": 83, "mental_resilience": 83 }, - "match_name": "Xiang Tao", + "match_name": "Angel", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 90, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-09-16", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582723172_eyts08iteyq.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2000-09-16", + "stats": {}, + "profile_image_url": "/player-photos/e2122671f444bbb2.webp" }, { "id": "player-99eb85f1", @@ -2022,43 +1787,33 @@ "fitness": 100, "team_id": "team-0a33a07d", "condition": 100, - "full_name": "Guwon", + "full_name": "Koo Kwan-mo", "attributes": { - "laning": 89, "mechanics": 87, - "discipline": 87, + "laning": 89, + "teamfighting": 85, "macro_play": 87, "consistency": 88, "shotcalling": 81, - "teamfighting": 85, "champion_pool": 86, + "discipline": 87, "mental_resilience": 87 }, - "match_name": "Koo Kwan-mo", + "match_name": "Guwon", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-06-28", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583661591_9f7gq2l60d9.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-06-28", + "stats": {}, + "profile_image_url": "/player-photos/ba3a0627f4113288.webp" }, { "id": "player-9f955b19", @@ -2069,43 +1824,33 @@ "fitness": 100, "team_id": "team-38a818e5", "condition": 100, - "full_name": "Junhao", + "full_name": "Luo Jun-hao", "attributes": { - "laning": 86, "mechanics": 85, - "discipline": 84, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 82, + "discipline": 84, "mental_resilience": 85 }, - "match_name": "Luo Jun-hao", + "match_name": "Junhao", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-11-05", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584350255_l155ycmy0ng.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-11-05", + "stats": {}, + "profile_image_url": "/player-photos/b0751815bb5ae25e.webp" }, { "id": "player-a13538d1", @@ -2116,43 +1861,33 @@ "fitness": 100, "team_id": "team-b777d366", "condition": 100, - "full_name": "ZUIAN", + "full_name": "Cheng Zi-Hao ", "attributes": { - "laning": 89, "mechanics": 89, - "discipline": 89, + "laning": 89, + "teamfighting": 89, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 89, "champion_pool": 86, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Cheng Zi-Hao ", + "match_name": "ZUIAN", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-11-10", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584202399_fk8v3a9vwss.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-11-10", + "stats": {}, + "profile_image_url": "/player-photos/f42a3c66217a0433.webp" }, { "id": "player-a67fc487", @@ -2163,43 +1898,33 @@ "fitness": 100, "team_id": "team-5facf88e", "condition": 100, - "full_name": "Monki", + "full_name": "Wang Meng-qi", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 85, + "laning": 86, + "teamfighting": 82, "macro_play": 83, "consistency": 84, "shotcalling": 83, - "teamfighting": 82, "champion_pool": 83, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Wang Meng-qi", + "match_name": "Monki", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 100, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-08-13", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584091011_9waeuu7e87.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-08-13", + "stats": {}, + "profile_image_url": "/player-photos/d3455a32a6bc4340.webp" }, { "id": "player-ab4cc044", @@ -2207,45 +1932,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Vampire", + "full_name": "Zhao Zhe-can", "attributes": { - "laning": 91, "mechanics": 85, - "discipline": 83, + "laning": 91, + "teamfighting": 81, "macro_play": 91, "consistency": 92, "shotcalling": 89, - "teamfighting": 81, "champion_pool": 87, + "discipline": 83, "mental_resilience": 85 }, - "match_name": "Zhao Zhe-can", + "match_name": "Vampire", "loan_listed": false, "potential_base": 88, "transfer_listed": false, - "date_of_birth": "2005-08-14", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583158313_b9mhknuljjd.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-6481a859", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2005-08-14", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/54c4249bfb387617.webp" }, { "id": "player-adfc6640", @@ -2256,43 +1967,33 @@ "fitness": 100, "team_id": "team-b777d366", "condition": 100, - "full_name": "Tian", + "full_name": "Gao Tian-Liang", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 91, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 91, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, - "match_name": "Gao Tian-Liang", + "match_name": "Tian", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-08-04", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584206807_gf1wjp3qp2o.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2000-08-04", + "stats": {}, + "profile_image_url": "/player-photos/67e647d050588654.webp" }, { "id": "player-b10165b4", @@ -2303,43 +2004,33 @@ "fitness": 100, "team_id": "team-3bd486ec", "condition": 100, - "full_name": "Hope", + "full_name": "Wang Jie", "attributes": { - "laning": 89, "mechanics": 88, - "discipline": 87, + "laning": 89, + "teamfighting": 84, "macro_play": 88, "consistency": 88, "shotcalling": 89, - "teamfighting": 84, "champion_pool": 87, + "discipline": 87, "mental_resilience": 87 }, - "match_name": "Wang Jie", + "match_name": "Hope", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 92, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2000-09-29", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582332206_vb8vv9am2mo.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2000-09-29", + "stats": {}, + "profile_image_url": "/player-photos/af7d91a50e2cde08.webp" }, { "id": "player-b396f91c", @@ -2350,43 +2041,33 @@ "fitness": 100, "team_id": "team-dc1429f2", "condition": 100, - "full_name": "Shaoye", + "full_name": "Qiu Guo-bin", "attributes": { - "laning": 82, "mechanics": 82, - "discipline": 84, + "laning": 82, + "teamfighting": 78, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 78, "champion_pool": 81, + "discipline": 84, "mental_resilience": 83 }, - "match_name": "Qiu Guo-bin", + "match_name": "Shaoye", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-22", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583305933_gxgyg86n7s.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-05-22", + "stats": {}, + "profile_image_url": "/player-photos/3cbf16cb0f47e0bb.webp" }, { "id": "player-b6a515b5", @@ -2397,43 +2078,33 @@ "fitness": 100, "team_id": "team-5facf88e", "condition": 100, - "full_name": "About", + "full_name": "Moon Hyeong-seok", "attributes": { - "laning": 92, "mechanics": 81, - "discipline": 90, + "laning": 92, + "teamfighting": 82, "macro_play": 87, "consistency": 87, "shotcalling": 89, - "teamfighting": 82, "champion_pool": 89, + "discipline": 90, "mental_resilience": 87 }, - "match_name": "Moon Hyeong-seok", + "match_name": "About", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-08-22", - "nationality": "KR", - "profile_image_url": "/player-photos/1779584082280_vrw85op6djh.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-08-22", + "stats": {}, + "profile_image_url": "/player-photos/df78c8d3040d4f46.webp" }, { "id": "player-b6fc66da", @@ -2444,43 +2115,33 @@ "fitness": 100, "team_id": "team-3bd486ec", "condition": 100, - "full_name": "Flandre", + "full_name": "Li Xuan-jun", "attributes": { - "laning": 90, "mechanics": 90, - "discipline": 87, + "laning": 90, + "teamfighting": 87, "macro_play": 88, "consistency": 90, "shotcalling": 89, - "teamfighting": 87, "champion_pool": 88, + "discipline": 87, "mental_resilience": 86 }, - "match_name": "Li Xuan-jun", + "match_name": "Flandre", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "1998-08-10", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582313499_leog1sye8d.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "1998-08-10", + "stats": {}, + "profile_image_url": "/player-photos/f7f6d7f324453191.webp" }, { "id": "player-b89f7a1c", @@ -2488,45 +2149,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Jwei", + "full_name": "Sun Jun-Wei ", "attributes": { - "laning": 89, "mechanics": 83, - "discipline": 86, + "laning": 89, + "teamfighting": 86, "macro_play": 84, "consistency": 86, "shotcalling": 89, - "teamfighting": 86, "champion_pool": 88, + "discipline": 86, "mental_resilience": 85 }, - "match_name": "Sun Jun-Wei ", + "match_name": "Jwei", "loan_listed": false, "potential_base": 88, "transfer_listed": false, - "date_of_birth": "2003-01-05", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582738375_b6vlhfetpvd.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-ca28739d", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2003-01-05", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/c518ac3fafbbb853.webp" }, { "id": "player-b9a71379", @@ -2534,45 +2181,78 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "Kael", + "full_name": "Kim Jin-hong", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 84, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 83, + "discipline": 84, "mental_resilience": 86 }, - "match_name": "Kim Jin-hong", + "match_name": "Kael", "loan_listed": false, "potential_base": 91, "transfer_listed": false, - "date_of_birth": "2004-02-11", - "nationality": "KR", - "profile_image_url": "/player-photos/1779582303883_dj774za3ya8.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-3bd486ec", - "traits": [], - "contract_end": null, + "nationality": "KR", + "date_of_birth": "2004-02-11", "wage": 0, "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/166bf8482768a0b0.webp" + }, + { + "id": "player-76424bd8", + "wage": 131000, "stats": { "appearances": 0 }, - "champion_mastery": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ec9ab429", + "position": "ADC", + "condition": 100, + "full_name": "Li Fei", + "attributes": { + "mechanics": 80, + "laning": 82, + "teamfighting": 72, + "macro_play": 76, + "consistency": 77, + "shotcalling": 77, + "champion_pool": 84, + "discipline": 79, + "mental_resilience": 77 + }, + "match_name": "LP", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1965000, + "birth_country": null, + "date_of_birth": "2002-08-04", + "potential_base": 87, "training_focus": null, + "transfer_listed": false, "transfer_offers": [], - "morale_core": {}, + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/2be0e54d.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-ba111067", @@ -2583,43 +2263,33 @@ "fitness": 100, "team_id": "team-ca28739d", "condition": 100, - "full_name": "Leave", + "full_name": "Hu Hong-chao", "attributes": { - "laning": 85, "mechanics": 81, - "discipline": 80, + "laning": 85, + "teamfighting": 84, "macro_play": 85, "consistency": 85, "shotcalling": 83, - "teamfighting": 84, "champion_pool": 79, + "discipline": 80, "mental_resilience": 81 }, - "match_name": "Hu Hong-chao", + "match_name": "Leave", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-26", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582718349_n2tpihdqrls.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-06-26", + "stats": {}, + "profile_image_url": "/player-photos/b4b12d46f3e87550.webp" }, { "id": "player-c3540ab4", @@ -2630,43 +2300,33 @@ "fitness": 100, "team_id": "team-38a818e5", "condition": 100, - "full_name": "Heru", + "full_name": "Kim Min-seong", "attributes": { - "laning": 89, "mechanics": 87, - "discipline": 89, + "laning": 89, + "teamfighting": 87, "macro_play": 88, "consistency": 88, "shotcalling": 81, - "teamfighting": 87, "champion_pool": 85, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Kim Min-seong", + "match_name": "Heru", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 100, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-08-05", - "nationality": "KR", - "profile_image_url": "/player-photos/1779584320996_7rdrumu3a1p.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2004-08-05", + "stats": {}, + "profile_image_url": "/player-photos/da421812430e4b33.webp" }, { "id": "player-c3846ff8", @@ -2677,43 +2337,33 @@ "fitness": 100, "team_id": "team-b777d366", "condition": 100, - "full_name": "Creme", + "full_name": "Lin Jian", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 86, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 83, + "discipline": 86, "mental_resilience": 86 }, - "match_name": "Lin Jian", + "match_name": "Creme", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 99, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-12-07", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584209590_suhmnidlvfi.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-12-07", + "stats": {}, + "profile_image_url": "/player-photos/923f1ae97ee5cde3.webp" }, { "id": "player-c42f4cbf", @@ -2724,43 +2374,33 @@ "fitness": 100, "team_id": "team-a324dc9d", "condition": 100, - "full_name": "Elk", + "full_name": "Zhao Jia-hao", "attributes": { - "laning": 88, "mechanics": 84, - "discipline": 86, + "laning": 88, + "teamfighting": 87, "macro_play": 90, "consistency": 90, "shotcalling": 89, - "teamfighting": 87, "champion_pool": 88, + "discipline": 86, "mental_resilience": 87 }, - "match_name": "Zhao Jia-hao", + "match_name": "Elk", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-09-18", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584451193_k8bhuqdcav.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2001-09-18", + "stats": {}, + "profile_image_url": "/player-photos/4ff307ff70d84645.webp" }, { "id": "player-c842da68", @@ -2771,43 +2411,33 @@ "fitness": 100, "team_id": "team-75263716", "condition": 100, - "full_name": "Starry", + "full_name": "Lei Ming", "attributes": { - "laning": 84, "mechanics": 77, - "discipline": 86, + "laning": 84, + "teamfighting": 83, "macro_play": 80, "consistency": 80, "shotcalling": 83, - "teamfighting": 83, "champion_pool": 77, + "discipline": 86, "mental_resilience": 81 }, - "match_name": "Lei Ming", + "match_name": "Starry", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-06-03", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583780454_eyidit8k77r.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-06-03", + "stats": {}, + "profile_image_url": "/player-photos/fd623441da785d59.webp" }, { "id": "player-d280ef5e", @@ -2815,45 +2445,31 @@ "morale": 100, "fitness": 100, "condition": 100, - "full_name": "TheHank", + "full_name": "Xu Hai-Han", "attributes": { - "laning": 86, "mechanics": 84, - "discipline": 92, + "laning": 86, + "teamfighting": 89, "macro_play": 88, "consistency": 89, "shotcalling": 89, - "teamfighting": 89, "champion_pool": 86, + "discipline": 92, "mental_resilience": 92 }, - "match_name": "Xu Hai-Han", + "match_name": "TheHank", "loan_listed": false, "potential_base": 94, "transfer_listed": false, - "date_of_birth": "2006-07-27", - "nationality": "CN", - "profile_image_url": "/player-photos/4319b1f4.webp", "position": "Support", - "natural_position": "Support", - "alternate_positions": [], "team_id": "team-a324dc9d", - "traits": [], - "contract_end": null, + "nationality": "CN", + "date_of_birth": "2006-07-27", "wage": 0, "market_value": 0, - "stats": { - "appearances": 0 - }, - "champion_mastery": [], - "training_focus": null, - "transfer_offers": [], - "morale_core": {}, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/4319b1f4.webp" }, { "id": "player-d4f63716", @@ -2864,43 +2480,33 @@ "fitness": 100, "team_id": "team-a324dc9d", "condition": 100, - "full_name": "Jiejie", + "full_name": "Zhao Li-jie", "attributes": { - "laning": 92, "mechanics": 92, - "discipline": 92, + "laning": 92, + "teamfighting": 92, "macro_play": 92, "consistency": 92, "shotcalling": 89, - "teamfighting": 92, "champion_pool": 89, + "discipline": 92, "mental_resilience": 92 }, - "match_name": "Zhao Li-jie", + "match_name": "Jiejie", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 96, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-10-27", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584441972_xx95df2c1g.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2001-10-27", + "stats": {}, + "profile_image_url": "/player-photos/72221436906de3ba.webp" }, { "id": "player-d7550f0a", @@ -2911,43 +2517,33 @@ "fitness": 100, "team_id": "team-38a818e5", "condition": 100, - "full_name": "Keshi", + "full_name": "Li Qing-hua", "attributes": { - "laning": 89, "mechanics": 89, - "discipline": 89, + "laning": 89, + "teamfighting": 88, "macro_play": 89, "consistency": 89, "shotcalling": 86, - "teamfighting": 88, "champion_pool": 85, + "discipline": 89, "mental_resilience": 89 }, - "match_name": "Li Qing-hua", + "match_name": "Keshi", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-05-10", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584307663_5u3hq71shtk.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-05-10", + "stats": {}, + "profile_image_url": "/player-photos/7d11130ada9f7748.webp" }, { "id": "player-dac744f9", @@ -2958,43 +2554,80 @@ "fitness": 100, "team_id": "team-ec9ab429", "condition": 100, - "full_name": "1xn", + "full_name": "Li Xiu-nan", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 80, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 78, - "teamfighting": 85, "champion_pool": 81, + "discipline": 80, "mental_resilience": 82 }, - "match_name": "Li Xiu-nan", + "match_name": "1xn", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-08-18", - "nationality": "KR", - "profile_image_url": "/player-photos/1779583510563_0zjhu3ucow7k.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], + "nationality": "KR", + "date_of_birth": "2004-08-18", + "stats": {}, + "profile_image_url": "/player-photos/5acd1e17e70987cc.webp" + }, + { + "id": "player-9d232f5f", + "wage": 26000, "stats": { "appearances": 0 }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5facf88e", + "position": "Jungle", + "condition": 100, + "full_name": "Jiang Zhi-Peng", + "attributes": { + "mechanics": 78, + "laning": 82, + "teamfighting": 80, + "macro_play": 85, + "consistency": 84, + "shotcalling": 76, + "champion_pool": 77, + "discipline": 86, + "mental_resilience": 76 + }, + "match_name": "Beishang", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 390000, + "birth_country": null, + "date_of_birth": "2000-10-15", + "potential_base": 85, "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/8a241f03793daf49.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-e06b2e2f", @@ -3005,43 +2638,33 @@ "fitness": 100, "team_id": "team-5facf88e", "condition": 100, - "full_name": "Tyrion", + "full_name": "Peng Jun-Bin", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 86, + "laning": 86, + "teamfighting": 85, "macro_play": 82, "consistency": 84, "shotcalling": 83, - "teamfighting": 85, "champion_pool": 81, + "discipline": 86, "mental_resilience": 85 }, - "match_name": "Peng Jun-Bin", + "match_name": "Tyrion", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-05", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584088965_3fyprufd6dt.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-05-05", + "stats": {}, + "profile_image_url": "/player-photos/14885b2016543f8f.webp" }, { "id": "player-e63a34e1", @@ -3052,43 +2675,33 @@ "fitness": 100, "team_id": "team-ca28739d", "condition": 100, - "full_name": "Zdz", + "full_name": "Zhu De-zhang", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 82, + "laning": 86, + "teamfighting": 84, "macro_play": 84, "consistency": 84, "shotcalling": 83, - "teamfighting": 84, "champion_pool": 81, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Zhu De-zhang", + "match_name": "Zdz", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-09-09", - "nationality": "CN", - "profile_image_url": "/player-photos/1779582731916_vskilplvxg.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-09-09", + "stats": {}, + "profile_image_url": "/player-photos/a83a1e547768acb9.webp" }, { "id": "player-eadb189c", @@ -3099,43 +2712,33 @@ "fitness": 100, "team_id": "team-a84cce06", "condition": 100, - "full_name": "Saber", + "full_name": "Song Dai-lin", "attributes": { - "laning": 86, "mechanics": 86, - "discipline": 86, + "laning": 86, + "teamfighting": 86, "macro_play": 86, "consistency": 86, "shotcalling": 83, - "teamfighting": 86, "champion_pool": 83, + "discipline": 86, "mental_resilience": 86 }, - "match_name": "Song Dai-lin", + "match_name": "Saber", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 98, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-07-22", - "nationality": "CN", - "profile_image_url": "/player-photos/1779584561081_a6pn9ijb0bc.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-07-22", + "stats": {}, + "profile_image_url": "/player-photos/14e5ec200b0337c8.webp" }, { "id": "player-eb04c552", @@ -3146,43 +2749,33 @@ "fitness": 100, "team_id": "team-dc1429f2", "condition": 100, - "full_name": "Tangyuan", + "full_name": "Lin Yu-hong", "attributes": { - "laning": 88, "mechanics": 88, - "discipline": 83, + "laning": 88, + "teamfighting": 86, "macro_play": 87, "consistency": 87, "shotcalling": 86, - "teamfighting": 86, "champion_pool": 84, + "discipline": 83, "mental_resilience": 84 }, - "match_name": "Lin Yu-hong", + "match_name": "Tangyuan", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2004-05-15", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583301737_f842fn7umjv.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2004-05-15", + "stats": {}, + "profile_image_url": "/player-photos/8e410738bdde459c.webp" }, { "id": "player-f0eb7da3", @@ -3193,43 +2786,33 @@ "fitness": 100, "team_id": "team-5facf88e", "condition": 100, - "full_name": "Karis", + "full_name": "Kim Hong-jo", "attributes": { - "laning": 85, "mechanics": 83, - "discipline": 85, + "laning": 85, + "teamfighting": 82, "macro_play": 83, "consistency": 84, "shotcalling": 78, - "teamfighting": 82, "champion_pool": 83, + "discipline": 85, "mental_resilience": 85 }, - "match_name": "Kim Hong-jo", + "match_name": "Karis", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 91, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-12-14", - "nationality": "KR", - "profile_image_url": "/player-photos/1779584085505_905dza9pr3v.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-12-14", + "stats": {}, + "profile_image_url": "/player-photos/eb2e790a977bd15d.webp" }, { "id": "player-f38ac57c", @@ -3240,43 +2823,33 @@ "fitness": 100, "team_id": "team-6481a859", "condition": 100, - "full_name": "JunJia", + "full_name": "Yu Chun-chia", "attributes": { - "laning": 92, "mechanics": 89, - "discipline": 84, + "laning": 92, + "teamfighting": 87, "macro_play": 90, "consistency": 91, "shotcalling": 88, - "teamfighting": 87, "champion_pool": 89, + "discipline": 84, "mental_resilience": 87 }, - "match_name": "Yu Chun-chia", + "match_name": "JunJia", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2002-01-30", - "nationality": "TW", - "profile_image_url": "/player-photos/1779583182329_41pr84q7kc.webp", "position": "Jungle", - "natural_position": "Jungle", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "TW", + "date_of_birth": "2002-01-30", + "stats": {}, + "profile_image_url": "/player-photos/c1f311657a9e1ba8.webp" }, { "id": "player-f544011f", @@ -3287,43 +2860,33 @@ "fitness": 100, "team_id": "team-d6ad5a14", "condition": 100, - "full_name": "Renard", + "full_name": "Zhang Xing-Che", "attributes": { - "laning": 84, "mechanics": 85, - "discipline": 87, + "laning": 84, + "teamfighting": 83, "macro_play": 83, "consistency": 85, "shotcalling": 86, - "teamfighting": 83, "champion_pool": 84, + "discipline": 87, "mental_resilience": 85 }, - "match_name": "Zhang Xing-Che", + "match_name": "Renard", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 95, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2005-06-15", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583042166_kibwdhf1ar.webp", "position": "Mid", - "natural_position": "Mid", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2005-06-15", + "stats": {}, + "profile_image_url": "/player-photos/1eb8de6704484328.webp" }, { "id": "player-f698f91a", @@ -3334,43 +2897,33 @@ "fitness": 100, "team_id": "team-6481a859", "condition": 100, - "full_name": "Xiaoxu", + "full_name": "Xu Xing-zu", "attributes": { - "laning": 88, "mechanics": 88, - "discipline": 85, + "laning": 88, + "teamfighting": 85, "macro_play": 87, "consistency": 88, "shotcalling": 86, - "teamfighting": 85, "champion_pool": 86, + "discipline": 85, "mental_resilience": 84 }, - "match_name": "Xu Xing-zu", + "match_name": "Xiaoxu", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 97, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-09-21", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583179913_r01hgmujt9o.webp", "position": "Top", - "natural_position": "Top", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "CN", + "date_of_birth": "2003-09-21", + "stats": {}, + "profile_image_url": "/player-photos/405c3b2e318a06d1.webp" }, { "id": "player-fa455ce3", @@ -3381,43 +2934,33 @@ "fitness": 100, "team_id": "team-a84cce06", "condition": 100, - "full_name": "Hena", + "full_name": "Park Jeung-hwan", "attributes": { - "laning": 86, "mechanics": 82, - "discipline": 84, + "laning": 86, + "teamfighting": 85, "macro_play": 86, "consistency": 86, "shotcalling": 84, - "teamfighting": 85, "champion_pool": 83, + "discipline": 84, "mental_resilience": 86 }, - "match_name": "Park Jeung-hwan", + "match_name": "Hena", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 94, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2003-06-03", - "nationality": "KR", - "profile_image_url": "/player-photos/1779584565055_f37b0mnocmh.webp", "position": "ADC", - "natural_position": "ADC", - "traits": [], - "stats": { - "appearances": 0 - }, - "training_focus": null, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "nationality": "KR", + "date_of_birth": "2003-06-03", + "stats": {}, + "profile_image_url": "/player-photos/ee3b53f02ae60960.webp" }, { "id": "player-a4698d92", @@ -3425,63 +2968,26 @@ "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Rare Atom", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-38a818e5", - "team_name": "TT Gaming", - "appearances": 0 - } - ], + "career": [], "injury": null, "morale": 100, "fitness": 100, "team_id": "team-38a818e5", "position": "Support", "condition": 100, - "full_name": "Feather", + "full_name": "Wang Tian-Ci-Fu", "attributes": { - "laning": 67, "mechanics": 75, - "discipline": 82, + "laning": 67, + "teamfighting": 77, "macro_play": 76, "consistency": 80, "shotcalling": 74, - "teamfighting": 77, "champion_pool": 69, + "discipline": 82, "mental_resilience": 81 }, - "match_name": "Wang Tian-Ci-Fu", + "match_name": "Feather", "loan_listed": false, "morale_core": {}, "nationality": "CN", @@ -3495,15 +3001,13 @@ "transfer_offers": [], "champion_mastery": [], "natural_position": "Support", - "profile_image_url": "/player-photos/1779584298695_lbtodxdxz6q.webp", + "profile_image_url": "/player-photos/58225b74.webp", "potential_revealed": null, "alternate_positions": [], "champion_training_target": null, "champion_training_targets": [], "potential_research_eta_days": null, - "potential_research_started_on": null, - "traits": [], - "can_be_transferred_until": null + "potential_research_started_on": null }, { "id": "player-fcf29919", @@ -3514,43 +3018,80 @@ "fitness": 100, "team_id": "team-d6ad5a14", "condition": 100, - "full_name": "Breathe", + "full_name": "Chen Chen", "attributes": { - "laning": 87, "mechanics": 85, - "discipline": 85, + "laning": 87, + "teamfighting": 87, "macro_play": 86, "consistency": 87, "shotcalling": 86, - "teamfighting": 87, "champion_pool": 85, + "discipline": 85, "mental_resilience": 81 }, - "match_name": "Chen Chen", + "match_name": "Breathe", "loan_listed": false, "morale_core": {}, - "contract_end": null, + "contract_end": "", "market_value": 0, "potential_base": 93, "transfer_listed": false, "transfer_offers": [], "champion_mastery": [], "alternate_positions": [], - "date_of_birth": "2001-11-09", - "nationality": "CN", - "profile_image_url": "/player-photos/1779583052522_vcw12o0o8n.webp", "position": "Top", - "natural_position": "Top", - "traits": [], + "nationality": "CN", + "date_of_birth": "2001-11-09", + "stats": {}, + "profile_image_url": "/player-photos/15f49705a83243e8.webp" + }, + { + "id": "player-c8a135cc", + "wage": 77000, "stats": { "appearances": 0 }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3bd486ec", + "position": "ADC", + "condition": 100, + "full_name": "Chen Yu-Ji", + "attributes": { + "mechanics": 75, + "laning": 82, + "teamfighting": 73, + "macro_play": 73, + "consistency": 75, + "shotcalling": 75, + "champion_pool": 81, + "discipline": 80, + "mental_resilience": 81 + }, + "match_name": "Zhiqiuyi", + "loan_listed": false, + "morale_core": {}, + "nationality": "China", + "contract_end": "2026-12-20", + "market_value": 1155000, + "birth_country": null, + "date_of_birth": "2000-01-01", + "potential_base": 82, "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/ab4bb4682c5ee63a.png", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null } ] } \ No newline at end of file diff --git a/data/players/lplol_players.json b/data/players/lplol_players.json index 8863494a7..3dfc22574 100644 --- a/data/players/lplol_players.json +++ b/data/players/lplol_players.json @@ -3,1337 +3,1498 @@ "description": "LPLOL - 2026 Season", "players": [ { - "id": "player-20d7dc63", - "match_name": "BBK Sankaizer", - "full_name": "BBK Sankaizer", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-022778cb", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-258078d0", + "condition": 100, + "full_name": "NOMA", "attributes": { - "laning": 55, - "mechanics": 63, - "discipline": 60, - "macro_play": 56, - "consistency": 55, + "mechanics": 58, + "laning": 60, + "teamfighting": 58, + "macro_play": 58, + "consistency": 58, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 60 + "champion_pool": 59, + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "NOMA", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6900078a", - "match_name": "LVS", - "full_name": "LVS", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-03618db6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-81f175c5", + "condition": 100, + "full_name": "Okan Öztopaç", "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 62, - "consistency": 62, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 61, + "champion_pool": 60, + "discipline": 61, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Cimpo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TR", + "date_of_birth": "2001-06-08", + "stats": {}, + "profile_image_url": null }, { - "id": "player-e2d6caa5", - "match_name": "JoKozz", - "full_name": "JoKozz", - "date_of_birth": null, - "nationality": "CH", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-05ad55a7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0a25c12", + "condition": 100, + "full_name": "Dreampull", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, - "macro_play": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 63, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dreampull", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-5791e779", - "match_name": "Aspect", - "full_name": "Aspect", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-068b70d0", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-6b8fef2d", + "condition": 100, + "full_name": "José Dinis", "attributes": { - "laning": 63, - "mechanics": 58, - "discipline": 63, - "macro_play": 62, - "consistency": 61, + "mechanics": 61, + "laning": 60, + "teamfighting": 61, + "macro_play": 61, + "consistency": 60, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 61, + "discipline": 62, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Zezin", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-eb1d6305", - "match_name": "ardaffler", - "full_name": "ardaffler", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-1234b5b5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-273eca26", + "condition": 100, + "full_name": "Vítor Salgueiro", "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 60, - "consistency": 56, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 55, "champion_pool": 61, - "mental_resilience": 61 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Salgueir0", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PT", + "date_of_birth": "2004-08-19", + "stats": {}, + "profile_image_url": null }, { - "id": "player-6d0f2553", - "match_name": "Semide", - "full_name": "Semide", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-12711e0f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "André Tavares", "attributes": { - "laning": 60, "mechanics": 63, - "discipline": 62, + "laning": 62, + "teamfighting": 62, "macro_play": 61, - "consistency": 61, + "consistency": 63, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 61, - "mental_resilience": 62 + "discipline": 58, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": null, + "match_name": "Lostboy", + "position": "Support", + "team_id": "team-cd7def0c", + "nationality": "PT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/5d709a731c997482.webp" }, { - "id": "player-eb3e4855", - "match_name": "Kaplica", - "full_name": "Kaplica", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 60, - "macro_play": 64, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "traits": [], - "contract_end": null, + "id": "player-1ab50307", "wage": 0, - "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-068b70d0", - "match_name": "Zezin", - "full_name": "Zezin", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-258078d0", + "condition": 100, + "full_name": "costy", "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 61, + "mechanics": 60, + "laning": 61, + "teamfighting": 58, + "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, + "champion_pool": 60, + "discipline": 62, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "costy", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RO", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-1f4b581d", - "match_name": "D4SH", - "full_name": "D4SH", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-1b9e60c1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-273eca26", + "condition": 100, + "full_name": "Branko Simeonovski", "attributes": { - "laning": 53, - "mechanics": 58, - "discipline": 62, - "macro_play": 56, - "consistency": 55, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 56, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8baac22a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Bakisa", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RS", + "date_of_birth": "2004-05-03", + "stats": {}, + "profile_image_url": null }, { - "id": "player-804c96b8", - "match_name": "Favorito", - "full_name": "Favorito", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-1c7cd5e7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0a25c12", + "condition": 100, + "full_name": "Nomanz", "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 60, + "mechanics": 63, + "laning": 63, + "teamfighting": 63, "macro_play": 64, - "consistency": 63, + "consistency": 64, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 61, - "mental_resilience": 60 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Nomanz", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "RU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-1d93099a", - "match_name": "FallenBandit", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0a25c12", + "condition": 100, "full_name": "FallenBandit", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 62, "mechanics": 63, - "discipline": 62, + "laning": 62, + "teamfighting": 64, "macro_play": 64, "consistency": 63, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 62, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "FallenBandit", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "US", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-cefcf9f2", - "match_name": "Sahira", - "full_name": "Sahira", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-1e7ca668", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-273eca26", + "condition": 100, + "full_name": "Filip Peřina", "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 61, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lumity", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CZ", + "date_of_birth": "2002-10-10", + "stats": {}, + "profile_image_url": null }, { - "id": "player-3d98d8d2", - "match_name": "Camana", - "full_name": "Camana", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 61, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 62, - "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-1f4b581d", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-81f175c5", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-8baac22a", + "condition": 100, + "full_name": "D4SH", + "attributes": { + "mechanics": 58, + "laning": 53, + "teamfighting": 53, + "macro_play": 56, + "consistency": 55, + "shotcalling": 56, + "champion_pool": 56, + "discipline": 62, + "mental_resilience": 61 + }, + "match_name": "D4SH", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 64, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-93f5785f", - "match_name": "Hamsi", - "full_name": "Hamsi", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 59, - "macro_play": 61, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 57, - "mental_resilience": 59 - }, - "condition": 100, + "id": "player-1fa751e4", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-527a1974", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "CrabLord", + "attributes": { + "mechanics": 62, + "laning": 58, + "teamfighting": 62, + "macro_play": 62, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 54, + "mental_resilience": 58 + }, + "match_name": "CrabLord", + "position": "Support", + "team_id": "team-8baac22a", + "nationality": "RU", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-20d7dc63", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baac22a", + "condition": 100, + "full_name": "Sankaizer", + "attributes": { + "mechanics": 63, + "laning": 55, + "teamfighting": 62, + "macro_play": 56, + "consistency": 55, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "BBK Sankaizer", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-05ad55a7", - "match_name": "Dreampull", - "full_name": "Dreampull", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3d98d8d2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-81f175c5", + "condition": 100, + "full_name": "Burak Erdem Uçar", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, - "macro_play": 63, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "laning": 61, + "teamfighting": 61, + "macro_play": 64, + "consistency": 62, + "shotcalling": 55, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Camana", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TR", + "date_of_birth": "2002-10-02", + "stats": {}, + "profile_image_url": "/player-photos/4ed288ade8eff4fc.webp" }, { - "id": "player-afd789e2", - "match_name": "RealR", - "full_name": "RealR", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-4b249844", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd7def0c", + "condition": 100, + "full_name": "Kim Kroon", "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 63, + "mechanics": 61, + "laning": 60, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 62 + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Noodle", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "SE", + "date_of_birth": "1998-08-13", + "stats": {}, + "profile_image_url": "/player-photos/732bd891fd29d22d.webp" + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-4b5f7a96", + "match_name": "DIGA", + "full_name": "Diogo Pacheco", + "position": "Mid", "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2001-08-06", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-5791e779", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-527a1974", + "condition": 100, + "full_name": "Aspect", + "attributes": { + "mechanics": 58, + "laning": 63, + "teamfighting": 58, + "macro_play": 62, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 61 + }, + "match_name": "Aspect", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "US", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-1234b5b5", - "match_name": "salgueir0", - "full_name": "salgueir0", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-6073045c", + "match_name": "LONVEY", + "full_name": "Erwin Daubenfeldt", + "position": "Mid", + "team_id": "team-273eca26", + "nationality": "", + "date_of_birth": "2005-08-05", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-6749a972", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Kaan Soyuner", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "shotcalling": 55, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": null, + "match_name": "Kkero", + "position": "Support", + "team_id": "team-81f175c5", + "nationality": "TR", + "date_of_birth": "2004-09-30", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/45620cc9160e196d.webp" + }, + { + "id": "player-6900078a", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-258078d0", + "condition": 100, + "full_name": "LVS", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 61, + "macro_play": 62, + "consistency": 62, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 62 + }, + "match_name": "LVS", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-022778cb", - "match_name": "NOMA", - "full_name": "NOMA", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-6955c32b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-81f175c5", + "condition": 100, + "full_name": "Luís Miguel da Silva Azevedo", "attributes": { + "mechanics": 61, "laning": 60, - "mechanics": 58, - "discipline": 64, + "teamfighting": 60, "macro_play": 58, - "consistency": 58, + "consistency": 60, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-258078d0", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Lulas", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/1d385d0b509325ed.webp" }, { - "id": "player-1c7cd5e7", - "match_name": "Nomanz", - "full_name": "Nomanz", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-6d0f2553", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-6b8fef2d", + "condition": 100, + "full_name": "Tiago Semide", "attributes": { - "laning": 63, "mechanics": 63, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, + "laning": 60, "teamfighting": 63, + "macro_play": 61, + "consistency": 61, + "shotcalling": 56, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Semide", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PT", + "date_of_birth": "2001-02-07", + "stats": {}, + "profile_image_url": "/player-photos/37ad06e668f039e0.webp" }, { - "id": "player-f3c601c4", - "match_name": "Glimpse", - "full_name": "Glimpse", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-6f192835", + "match_name": "Oceann", + "full_name": "João Martins", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "team_id": "team-81f175c5", + "nationality": "", + "date_of_birth": "2002-03-09", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 59, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 59 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd7def0c", - "traits": [], - "contract_end": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-7605d8aa", + "match_name": "Ffernandes", + "full_name": "Leonardo Guerreiro", + "position": "Top", + "team_id": "team-273eca26", + "nationality": "", + "date_of_birth": "2004-02-12", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-804c96b8", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-258078d0", + "condition": 100, + "full_name": "Favorito", + "attributes": { + "mechanics": 61, + "laning": 61, + "teamfighting": 62, + "macro_play": 64, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Favorito", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "RO", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-af19f0b8", - "match_name": "Skypper", - "full_name": "Skypper", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-93f5785f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-527a1974", + "condition": 100, + "full_name": "Hamsi", "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 61, + "mechanics": 63, + "laning": 62, + "teamfighting": 63, "macro_play": 61, "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 62 + "shotcalling": 55, + "champion_pool": 57, + "discipline": 59, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-6b8fef2d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Hamsi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-1b9e60c1", - "match_name": "bakisa", - "full_name": "bakisa", - "date_of_birth": null, - "nationality": "RS", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-a5a39ae4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0a25c12", + "condition": 100, + "full_name": "Shiganari", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, + "match_name": "Shiganari", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "LV", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-ab5e9b00", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Varin", + "attributes": { + "mechanics": 60, + "laning": 63, + "teamfighting": 60, + "macro_play": 62, + "consistency": 61, + "shotcalling": 55, + "champion_pool": 59, + "discipline": 56, + "mental_resilience": 58 + }, + "match_name": "Varin", + "position": "Support", + "team_id": "team-527a1974", + "nationality": "TR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-1e7ca668", - "match_name": "Lumity", - "full_name": "Lumity", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-aec44ba6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "RDT raisu", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, - "macro_play": 64, + "laning": 63, + "teamfighting": 64, + "macro_play": 63, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-273eca26", - "traits": [], - "contract_end": null, + "match_name": "RDT raisu", + "position": "Support", + "team_id": "team-a0a25c12", + "nationality": "PT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-fe44cee1", - "match_name": "Flashpowa", - "full_name": "Flashpowa", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-af19f0b8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-6b8fef2d", + "condition": 100, + "full_name": "Diogo Reis", "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 60, - "macro_play": 58, - "consistency": 58, + "mechanics": 62, + "laning": 60, + "teamfighting": 60, + "macro_play": 61, + "consistency": 61, "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 60 + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Skypper", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-03618db6", - "match_name": "Cimpo", - "full_name": "Cimpo", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-afd789e2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-6b8fef2d", + "condition": 100, + "full_name": "Rafael Vilas Boas", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 61, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 60, + "mechanics": 60, + "laning": 62, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "RealR", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-c38f09d6", + "match_name": "TheGreatGary", + "full_name": "Alexandre Brito Freitas", + "position": "Top", "team_id": "team-81f175c5", - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2007-11-11", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/df119c89068d3db6.webp" }, { "id": "player-c4b75309", - "match_name": "Demonadc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baac22a", + "condition": 100, "full_name": "Demonadc", - "date_of_birth": null, - "nationality": "RU", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], "attributes": { - "laning": 55, "mechanics": 62, - "discipline": 53, + "laning": 55, + "teamfighting": 60, "macro_play": 61, "consistency": 61, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 60, + "discipline": 53, "mental_resilience": 57 }, - "condition": 100, + "match_name": "Demonadc", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "RU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-cb1a794d", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-8baac22a", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "David Starovlas", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Coli", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-273eca26", + "nationality": "RS", + "date_of_birth": "2003-08-14", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-1ab50307", - "match_name": "costy", - "full_name": "costy", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-cefcf9f2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd7def0c", + "condition": 100, + "full_name": "Enes Apelqvist", "attributes": { - "laning": 61, "mechanics": 60, - "discipline": 62, + "laning": 61, + "teamfighting": 62, "macro_play": 60, - "consistency": 60, + "consistency": 61, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 60, + "champion_pool": 59, + "discipline": 62, "mental_resilience": 61 }, - "condition": 100, + "match_name": "Sahira", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/6daa95d74abadc88.webp" + }, + { + "id": "player-d1bc624f", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Ze Luis", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 62, + "macro_play": 61, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Ze Luis", + "position": "Support", "team_id": "team-258078d0", - "traits": [], - "contract_end": null, + "nationality": "PT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-a5a39ae4", - "match_name": "Shiganari", - "full_name": "Shiganari", - "date_of_birth": null, - "nationality": "LV", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e2d6caa5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-273eca26", + "condition": 100, + "full_name": "Joël Sequeira", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 62, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 63 + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "JoKozz", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CH", + "date_of_birth": "2003-01-04", + "stats": {}, + "profile_image_url": null }, { - "id": "player-12711e0f", - "match_name": "Lostboy", - "full_name": "Lostboy", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-eb1d6305", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8baac22a", + "condition": 100, + "full_name": "ardaffler", "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 58, - "macro_play": 61, - "consistency": 63, + "mechanics": 58, + "laning": 58, + "teamfighting": 55, + "macro_play": 60, + "consistency": 56, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 61, - "mental_resilience": 59 + "discipline": 61, + "mental_resilience": 61 }, - "condition": 100, + "match_name": "ardaffler", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 64, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "RU", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-eb3e4855", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-cd7def0c", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "condition": 100, + "full_name": "Filip Lefik", + "attributes": { + "mechanics": 64, + "laning": 61, + "teamfighting": 62, + "macro_play": 64, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Kaplica", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "2005-08-23", + "stats": {}, + "profile_image_url": null }, { - "id": "player-ab5e9b00", - "match_name": "Varin", - "full_name": "Varin", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-eee8c630", + "match_name": "Chambel", + "full_name": "Rafael Amaral", + "position": "Support", + "team_id": "team-6b8fef2d", + "nationality": "", "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 63, - "mechanics": 60, - "discipline": 56, - "macro_play": 62, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-527a1974", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-f3c601c4", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd7def0c", + "condition": 100, + "full_name": "José Gonçalves", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 61, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 59, + "mental_resilience": 59 + }, + "match_name": "Glimpse", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-aec44ba6", - "match_name": "RDT raisu", - "full_name": "RDT raisu", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-fe44cee1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-527a1974", + "condition": 100, + "full_name": "Flashpowa", "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, - "macro_play": 63, - "consistency": 64, + "mechanics": 58, + "laning": 56, + "teamfighting": 61, + "macro_play": 58, + "consistency": 58, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 + "champion_pool": 57, + "discipline": 60, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0a25c12", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Flashpowa", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 64, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PT", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/lrn_players.json b/data/players/lrn_players.json index 9093b207a..295d3049b 100644 --- a/data/players/lrn_players.json +++ b/data/players/lrn_players.json @@ -3,922 +3,2188 @@ "description": "LRN - 2026 Season", "players": [ { - "id": "player-8cdb4eb9", - "match_name": "Sebastián Alonso Niño Zavaleta", - "full_name": "Oddie", - "date_of_birth": "1997-08-28", - "nationality": "PE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 78, - "mechanics": 75, - "discipline": 78, - "macro_play": 76, - "consistency": 79, - "shotcalling": 81, - "teamfighting": 76, - "champion_pool": 73, - "mental_resilience": 79 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrn-fuego", - "traits": [], + "condition": 100, + "attributes": { + "mechanics": 65, + "laning": 66, + "teamfighting": 67, + "macro_play": 64, + "consistency": 68, + "shotcalling": 67, + "champion_pool": 67, + "discipline": 68, + "mental_resilience": 70 + }, + "loan_listed": false, "contract_end": "2026-11-16", - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Isurus", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Movistar R7", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2017, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "team-cb9503c1", - "team_name": "LYON", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2016, - "assists": 0, - "team_id": "", - "team_name": "Galactic Gamers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Gaming Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2015, - "assists": 0, - "team_id": "", - "team_name": "Dash9 Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2014, - "assists": 0, - "team_id": "", - "team_name": "Team ANG", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2013, - "assists": 0, - "team_id": "", - "team_name": "Ducks on Fire", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 75, "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 85, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-007bb619", + "match_name": "Ichikawa", + "full_name": "Héctor Manuel Delgado Jaramillo", + "position": "ADC", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": "2000-04-05", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/f8b5437bc797e0a1.png" }, { - "id": "player-558e85b3", - "match_name": "Jeong Ye-chan", - "full_name": "Ivory", - "date_of_birth": "2003-10-12", - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 78, - "mechanics": 77, - "discipline": 73, - "macro_play": 78, - "consistency": 78, - "shotcalling": 73, - "teamfighting": 73, - "champion_pool": 72, - "mental_resilience": 74 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrn-fuego", - "traits": [], + "condition": 100, + "attributes": { + "mechanics": 57, + "laning": 55, + "teamfighting": 56, + "macro_play": 56, + "consistency": 57, + "shotcalling": 63, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 59 + }, + "loan_listed": false, "contract_end": "2026-11-16", - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Fuego", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Eternal Fire", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "OK BRION Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Shadow Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Liiv SANDBOX Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "LSB Challengers", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "SANDBOX Academy", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 62, "transfer_listed": false, + "id": "player-18c8d682", + "match_name": "Dario Betancourt", + "full_name": "BetaTwinz", + "position": "Support", + "team_id": "lrn-icon-esports", + "nationality": "MX", + "date_of_birth": "1997-06-05", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/12277dffa39444be.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 68, + "laning": 67, + "teamfighting": 67, + "macro_play": 65, + "consistency": 63, + "shotcalling": 68, + "champion_pool": 67, + "discipline": 62, + "mental_resilience": 65 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 87, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_base": 75, + "transfer_listed": false, + "id": "player-1947b668", + "match_name": "Keis", + "full_name": "Juan Fernando Bernal Garzón", + "position": "Jungle", + "team_id": "lrn-lyon-academy", + "nationality": "CO", + "date_of_birth": "2003-08-20", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null }, { - "id": "player-0e4ae1fb", - "match_name": "Sergio Steven Bautista Grajales", - "full_name": "Gato", - "date_of_birth": "2003-07-10", - "nationality": "Colombia", - "profile_image_url": "/player-photos/37420bb8.webp", - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 67, + "mechanics": 68, + "laning": 66, + "teamfighting": 64, "macro_play": 64, - "consistency": 67, - "shotcalling": 72, - "teamfighting": 60, - "champion_pool": 70, - "mental_resilience": 67 + "consistency": 65, + "shotcalling": 66, + "champion_pool": 68, + "discipline": 68, + "mental_resilience": 68 }, - "condition": 100, + "loan_listed": false, + "potential_base": 73, + "transfer_listed": false, + "id": "player-1c3e6b84", + "match_name": "Steellar", + "full_name": "Francisco Antonio Taba Hueramo", + "position": "Top", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": "2003-01-18", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/6a84f8bc7a29b788.webp" + }, + { + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrn-g3v-e-sports", - "traits": [], - "contract_end": "2026-12-20", - "wage": 113000, - "market_value": 1695000, + "condition": 100, + "attributes": { + "mechanics": 60, + "laning": 61, + "teamfighting": 66, + "macro_play": 62, + "consistency": 60, + "shotcalling": 69, + "champion_pool": 62, + "discipline": 63, + "mental_resilience": 66 + }, + "loan_listed": false, + "potential_base": 74, + "transfer_listed": false, + "id": "player-21ccae8f", + "match_name": "Intensitive", + "full_name": "Moises Alessandro Rodriguez Cardona", + "position": "Mid", + "team_id": "lrn-icon-esports", + "nationality": "SV", + "date_of_birth": "2003-10-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/2d13e45d600ce41e.webp" + }, + { + "id": "player-809934cf", + "wage": 80000, "stats": { "appearances": 0 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "G3V E-sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "RX Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "3v Team", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Pirates IDV", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Vandals Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ramo Awake Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Mayan Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zenith Esports", - "appearances": 0 - } - ], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-polar-squad-esport", + "position": "Support", + "condition": 100, + "full_name": "Sebastián Farid Huapaya Espinoza", + "attributes": { + "mechanics": 59, + "laning": 62, + "teamfighting": 57, + "macro_play": 59, + "consistency": 58, + "shotcalling": 63, + "champion_pool": 58, + "discipline": 60, + "mental_resilience": 61 + }, + "match_name": "Relax", + "loan_listed": false, + "morale_core": {}, + "nationality": "Peru", + "contract_end": "2026-12-20", + "market_value": 1200000, + "birth_country": null, + "date_of_birth": "2002-11-19", + "potential_base": 71, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, + "champion_mastery": [], + "natural_position": "Support", + "profile_image_url": "/player-photos/5485551e9656fe7c.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-1947b668", - "match_name": "Juan Fernando Bernal Garzón", - "full_name": "Keis", - "date_of_birth": "2003-08-20", - "nationality": "CO", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 67, - "mechanics": 68, - "discipline": 62, - "macro_play": 65, - "consistency": 63, - "shotcalling": 68, - "teamfighting": 67, - "champion_pool": 67, - "mental_resilience": 65 + "id": "player-a29758b7", + "wage": 77000, + "stats": { + "appearances": 0 }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrn-lyon-academy", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "LYON Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "SaiHun", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Blue", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Magic Hunter Red\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Aguilas Doradas", - "appearances": 0 - } - ], + "team_id": "lrn-icon-esports", + "position": "Top", + "condition": 100, + "full_name": "Erik Kim", + "attributes": { + "mechanics": 70, + "laning": 63, + "teamfighting": 71, + "macro_play": 70, + "consistency": 65, + "shotcalling": 65, + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 69 + }, + "match_name": "Berik", + "loan_listed": false, + "morale_core": {}, + "nationality": "United States", + "contract_end": "2026-12-20", + "market_value": 1155000, + "birth_country": null, + "date_of_birth": "2003-10-09", + "potential_base": 74, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/0fe4c444.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { "id": "player-06e1af72", - "match_name": "Ángel Santiago Saens Aguilar", - "full_name": "Saens", - "date_of_birth": "2003-06-17", - "nationality": "Mexico", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 116000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-polar-squad-esport", + "position": "Jungle", + "condition": 100, + "full_name": "Ángel Santiago Saens Aguilar", "attributes": { - "laning": 67, "mechanics": 72, - "discipline": 67, + "laning": 67, + "teamfighting": 74, "macro_play": 71, "consistency": 64, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 68, + "discipline": 67, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrn-polar-squad-esport", - "traits": [], + "match_name": "Saens", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", "contract_end": "2026-12-20", - "wage": 116000, "market_value": 1740000, - "stats": { - "appearances": 0 - }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Polar Squad Esport", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Hot N Ready", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Xibalbá", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "STMN Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "LDU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Ascendent Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Tomorrow Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Waia Snikt", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Zylant Esports", - "appearances": 0 - } - ], + "birth_country": null, + "date_of_birth": "2003-06-17", + "potential_base": 82, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 82, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/ceeef54eb1b0f353.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null }, { - "id": "player-6f1ee624", - "match_name": "Jose Sergio Ricalday Ramirez", - "full_name": "Feng", - "date_of_birth": "1998-08-21", - "nationality": "Mexico", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 59, - "mechanics": 63, - "discipline": 68, - "macro_play": 61, - "consistency": 61, - "shotcalling": 72, - "teamfighting": 67, - "champion_pool": 65, - "mental_resilience": 68 + "id": "player-5b9e7047", + "wage": 107000, + "stats": { + "appearances": 0 }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrn-icon-esports", - "traits": [], - "contract_end": "2026-12-20", - "wage": 101000, - "market_value": 1515000, - "stats": { - "appearances": 0 + "team_id": "lrn-fuego", + "position": "Mid", + "condition": 100, + "full_name": "Jairo Camilo Urbina Orozco", + "attributes": { + "mechanics": 75, + "laning": 82, + "teamfighting": 77, + "macro_play": 78, + "consistency": 79, + "shotcalling": 68, + "champion_pool": 75, + "discipline": 75, + "mental_resilience": 77 }, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Icon Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Space Rabbit e-Sports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "DSC3V", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Janus Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "PÊEK Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Pirate Dream", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Furious Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Zeu5 Bogota", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Arctic Mexico", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Estral Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Just Toys Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Pixel Esports Club\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "DP5 Gaming", - "appearances": 0 - } - ], + "match_name": "Zelt", + "loan_listed": false, + "morale_core": {}, + "nationality": "Colombia", + "contract_end": "2026-12-20", + "market_value": 1605000, + "birth_country": null, + "date_of_birth": "2000-04-20", + "potential_base": 79, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/248d94b9.webp", "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, + "alternate_positions": [], + "champion_training_target": null, "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 72, + "laning": 73, + "teamfighting": 69, + "macro_play": 73, + "consistency": 73, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 72, + "mental_resilience": 73 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "id": "player-37cecd91", + "match_name": "Shiku", + "full_name": "Carlo Andre Carrion Zapata", + "position": "Support", + "team_id": "lrn-fuego", + "nationality": "PE", + "date_of_birth": "2004-04-28", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/bc44b5e821d41cb2.png" + }, + { + "id": "player-87f2a811", + "wage": 53000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-zeu5-esport", + "position": "Top", + "condition": 100, + "full_name": "Julio César Roldán Andrade", + "attributes": { + "mechanics": 60, + "laning": 58, + "teamfighting": 60, + "macro_play": 68, + "consistency": 63, + "shotcalling": 60, + "champion_pool": 66, + "discipline": 71, + "mental_resilience": 64 + }, + "match_name": "Zhayend", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 795000, + "birth_country": null, + "date_of_birth": "2005-01-21", + "potential_base": 69, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/6a5b4e3f.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-f8e923cc", + "wage": 74000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-sdm-tigres", + "position": "Mid", + "condition": 100, + "full_name": "Andrés Marcelo Barba Rodriguez", + "attributes": { + "mechanics": 76, + "laning": 74, + "teamfighting": 76, + "macro_play": 70, + "consistency": 76, + "shotcalling": 71, + "champion_pool": 72, + "discipline": 76, + "mental_resilience": 74 + }, + "match_name": "Icy", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 1110000, + "birth_country": null, + "date_of_birth": "1999-04-25", + "potential_base": 82, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/9010d0a2ea43472a.png", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 73, + "macro_play": 72, + "consistency": 74, + "shotcalling": 77, + "champion_pool": 68, + "discipline": 71, + "mental_resilience": 73 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 79, + "transfer_listed": false, + "id": "player-3ec4c1ec", + "match_name": "Mataz", + "full_name": "Julián Cárdenas Sanchez", + "position": "Jungle", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": "2001-01-19", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/cbcb8cd731e86408.png" + }, + { + "id": "player-4086f636", + "wage": 122000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-zeu5-esport", + "position": "Mid", + "condition": 100, + "full_name": "Jose Urrieche", + "attributes": { + "mechanics": 70, + "laning": 61, + "teamfighting": 73, + "macro_play": 66, + "consistency": 61, + "shotcalling": 69, + "champion_pool": 67, + "discipline": 63, + "mental_resilience": 65 + }, + "match_name": "Sweeho", + "loan_listed": false, + "morale_core": {}, + "nationality": "Venezuela", + "contract_end": "2026-12-20", + "market_value": 1830000, + "birth_country": null, + "date_of_birth": "2000-01-01", + "potential_base": 78, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/3e9483f4.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 54, + "laning": 60, + "teamfighting": 55, + "macro_play": 59, + "consistency": 56, + "shotcalling": 63, + "champion_pool": 62, + "discipline": 55, + "mental_resilience": 57 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 69, + "transfer_listed": false, + "id": "player-4158d2ef", + "match_name": "BetoEZ", + "full_name": "Alberto Luis Pérez Ramos", + "position": "Support", + "team_id": "lrn-ncg-esports", + "nationality": "VE", + "date_of_birth": "2001-06-17", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/c66d46c5dcf5bf0f.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 67, + "laning": 66, + "teamfighting": 68, + "macro_play": 65, + "consistency": 64, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 63 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 81, + "transfer_listed": false, + "id": "player-452d85f6", + "match_name": "Ratth", + "full_name": "Besler Ayala", + "position": "ADC", + "team_id": "lrn-lyon-academy", + "nationality": "HN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-cd1f25da", + "wage": 98000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-icon-esports", + "position": "ADC", + "condition": 100, + "full_name": "Andres Felipe Rodriguez Silva", + "attributes": { + "mechanics": 58, + "laning": 57, + "teamfighting": 63, + "macro_play": 60, + "consistency": 59, + "shotcalling": 61, + "champion_pool": 63, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Intio", + "loan_listed": false, + "morale_core": {}, + "nationality": "Colombia", + "contract_end": "2026-12-20", + "market_value": 1470000, + "birth_country": null, + "date_of_birth": "2004-06-17", + "potential_base": 76, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/6b4a9cff.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-803ece2b", + "wage": 68000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-polar-squad-esport", + "position": "ADC", + "condition": 100, + "full_name": "Dylan Bravo Polo", + "attributes": { + "mechanics": 64, + "laning": 66, + "teamfighting": 64, + "macro_play": 65, + "consistency": 62, + "shotcalling": 66, + "champion_pool": 64, + "discipline": 65, + "mental_resilience": 67 + }, + "match_name": "Catan", + "loan_listed": false, + "morale_core": {}, + "nationality": "Colombia", + "contract_end": "2026-12-20", + "market_value": 1020000, + "birth_country": null, + "date_of_birth": "2003-11-14", + "potential_base": 76, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/78dd9351dfa7f712.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 64, + "laning": 65, + "teamfighting": 65, + "macro_play": 66, + "consistency": 64, + "shotcalling": 68, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 74, + "transfer_listed": false, + "id": "player-54e3ec42", + "match_name": "Keptt", + "full_name": "Ángel Cota", + "position": "Support", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": "2002-10-19", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/89dc62fc66254e77.png" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 77, + "laning": 78, + "teamfighting": 73, + "macro_play": 78, + "consistency": 78, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 73, + "mental_resilience": 74 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 87, + "transfer_listed": false, + "id": "player-558e85b3", + "match_name": "Ivory", + "full_name": "Jeong Ye-chan", + "position": "Mid", + "team_id": "lrn-fuego", + "nationality": "KR", + "date_of_birth": "2003-10-12", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/d23055e367ce5440.jpg" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 65, + "laning": 64, + "teamfighting": 65, + "macro_play": 66, + "consistency": 65, + "shotcalling": 70, + "champion_pool": 67, + "discipline": 68, + "mental_resilience": 67 + }, + "loan_listed": false, + "potential_base": 70, + "transfer_listed": false, + "id": "player-56b2e81c", + "match_name": "Blind Walker", + "full_name": "Luis Alfredo Avendaño Tobal", + "position": "Jungle", + "team_id": "lrn-zeu5-esport", + "nationality": "GT", + "date_of_birth": "2002-04-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/7b64e3015caad44a.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 67, + "laning": 65, + "teamfighting": 68, + "macro_play": 66, + "consistency": 63, + "shotcalling": 68, + "champion_pool": 69, + "discipline": 67, + "mental_resilience": 65 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 75, + "transfer_listed": false, + "id": "player-65882963", + "match_name": "Kita", + "full_name": "Luca Henriques Andrade", + "position": "Support", + "team_id": "lrn-zeu5-esport", + "nationality": "BR", + "date_of_birth": "2003-12-21", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/458a2734368cfc48.webp" + }, + { + "id": "player-b10e73cf", + "wage": 113000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-fuego", + "position": "Top", + "condition": 100, + "full_name": "Cristóbal Arróspide", + "attributes": { + "mechanics": 75, + "laning": 73, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, + "shotcalling": 68, + "champion_pool": 70, + "discipline": 71, + "mental_resilience": 71 + }, + "match_name": "Zothve", + "loan_listed": false, + "morale_core": {}, + "nationality": "Chile", + "contract_end": "2026-12-20", + "market_value": 1695000, + "birth_country": null, + "date_of_birth": "2003-02-18", + "potential_base": 79, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/5ee395bb.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 60, + "consistency": 63, + "shotcalling": 69, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 69 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 81, + "transfer_listed": false, + "id": "player-75112581", + "match_name": "Deadly", + "full_name": "Miguel Angel Cucho Rivera", + "position": "Mid", + "team_id": "lrn-lyon-academy", + "nationality": "PE", + "date_of_birth": "2006-08-19", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/71bb009a883dbccb.png" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 63, + "laning": 61, + "teamfighting": 59, + "macro_play": 59, + "consistency": 62, + "shotcalling": 58, + "champion_pool": 62, + "discipline": 62, + "mental_resilience": 62 + }, + "loan_listed": false, + "potential_base": 70, + "transfer_listed": false, + "id": "player-7626fa65", + "match_name": "Challenq", + "full_name": "Andrid Gomez", + "position": "Top", + "team_id": "lrn-g3v-e-sports", + "nationality": "VE", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/a7fdc8a0e93407ee.png" + }, + { + "id": "player-64ba6568", + "wage": 68000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-lyon-academy", + "position": "Top", + "condition": 100, + "full_name": "Gjones", + "attributes": { + "mechanics": 60, + "laning": 64, + "teamfighting": 62, + "macro_play": 64, + "consistency": 65, + "shotcalling": 57, + "champion_pool": 65, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "Colin Jones", + "loan_listed": false, + "morale_core": {}, + "nationality": "United States", + "contract_end": "2026-12-20", + "market_value": 1020000, + "birth_country": null, + "date_of_birth": "2004-12-13", + "potential_base": 70, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": null, + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 64, + "laning": 57, + "teamfighting": 62, + "macro_play": 62, + "consistency": 60, + "shotcalling": 57, + "champion_pool": 65, + "discipline": 62, + "mental_resilience": 60 + }, + "loan_listed": false, + "potential_base": 70, + "transfer_listed": false, + "id": "player-7abd6f2f", + "match_name": "Maiquiyo", + "full_name": "Marcos Daniel Martínez", + "position": "Top", + "team_id": "lrn-zeu5-esport", + "nationality": "DO", + "date_of_birth": "2008-12-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/34a014e88dddc718.webp" + }, + { + "id": "player-b9857454", + "wage": 59000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-ncg-esports", + "position": "Mid", + "condition": 100, + "full_name": "Adrián Olivares", + "attributes": { + "mechanics": 62, + "laning": 65, + "teamfighting": 65, + "macro_play": 69, + "consistency": 66, + "shotcalling": 69, + "champion_pool": 69, + "discipline": 67, + "mental_resilience": 63 + }, + "match_name": "Vares", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 885000, + "birth_country": null, + "date_of_birth": "2000-01-01", + "potential_base": 74, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/67c704e6.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 70, + "laning": 69, + "teamfighting": 73, + "macro_play": 65, + "consistency": 62, + "shotcalling": 62, + "champion_pool": 70, + "discipline": 63, + "mental_resilience": 67 + }, + "loan_listed": false, + "potential_base": 85, + "transfer_listed": false, + "id": "player-7c8ec728", + "match_name": "Tuercas", + "full_name": "Khenmelt Omar Izaguirre Castillo", + "position": "Top", + "team_id": "lrn-ncg-esports", + "nationality": "MX", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/5c47301824fe74bf.webp" + }, + { + "id": "player-6f1ee624", + "wage": 101000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-icon-esports", + "position": "Jungle", + "condition": 100, + "full_name": "Jose Sergio Ricalday Ramirez", + "attributes": { + "mechanics": 63, + "laning": 59, + "teamfighting": 67, + "macro_play": 61, + "consistency": 61, + "shotcalling": 72, + "champion_pool": 65, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Feng", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 1515000, + "birth_country": null, + "date_of_birth": "1998-08-21", + "potential_base": 70, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/1a02f15a21c8cebb.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-e3e730c2", + "wage": 41000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-sdm-tigres", + "position": "ADC", + "condition": 100, + "full_name": "Guillermo Alfonso Navarrete Uxul", + "attributes": { + "mechanics": 69, + "laning": 68, + "teamfighting": 69, + "macro_play": 73, + "consistency": 69, + "shotcalling": 71, + "champion_pool": 68, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "VirusFx", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 615000, + "birth_country": null, + "date_of_birth": "1999-01-01", + "potential_base": 79, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/5e05d60c.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 75, + "laning": 78, + "teamfighting": 76, + "macro_play": 76, + "consistency": 79, + "shotcalling": 81, + "champion_pool": 73, + "discipline": 78, + "mental_resilience": 79 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 85, + "transfer_listed": false, + "id": "player-8cdb4eb9", + "match_name": "Oddie", + "full_name": "Sebastián Alonso Niño Zavaleta", + "position": "Jungle", + "team_id": "lrn-fuego", + "nationality": "PE", + "date_of_birth": "1997-08-28", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/fa14659323a72bca.png" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 67, + "laning": 60, + "teamfighting": 65, + "macro_play": 65, + "consistency": 63, + "shotcalling": 60, + "champion_pool": 68, + "discipline": 65, + "mental_resilience": 64 + }, + "loan_listed": false, + "potential_base": 71, + "transfer_listed": false, + "id": "player-9f258439", + "match_name": "Shavo", + "full_name": "German Loyo Ordaz", + "position": "Top", + "team_id": "lrn-polar-squad-esport", + "nationality": "MX", + "date_of_birth": "2005-09-29", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/224dbdc3e80af603.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 65, + "laning": 58, + "teamfighting": 63, + "macro_play": 62, + "consistency": 60, + "shotcalling": 61, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 61 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 77, + "transfer_listed": false, + "id": "player-a9bc132e", + "match_name": "Rokecs", + "full_name": "Asaf Reyes Contreras", + "position": "ADC", + "team_id": "lrn-polar-squad-esport", + "nationality": "MX", + "date_of_birth": "2001-01-31", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/a48f0c01821a46e7.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 56, + "laning": 55, + "teamfighting": 57, + "macro_play": 57, + "consistency": 59, + "shotcalling": 63, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 60 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 72, + "transfer_listed": false, + "id": "player-ae1ff890", + "match_name": "BotAure", + "full_name": "Oswaldo Rojas", + "position": "Support", + "team_id": "lrn-ncg-esports", + "nationality": "MX", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/b1c7f02924b477a2.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 63, + "laning": 60, + "teamfighting": 65, + "macro_play": 63, + "consistency": 59, + "shotcalling": 68, + "champion_pool": 64, + "discipline": 59, + "mental_resilience": 59 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 69, + "transfer_listed": false, + "id": "player-b1b0f26d", + "match_name": "Felkros", + "full_name": "Alex Felipe Yanquen Jaime", + "position": "Support", + "team_id": "lrn-lyon-academy", + "nationality": "CO", + "date_of_birth": "2004-05-25", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/03c784d4973d3232.webp" + }, + { + "id": "player-aec8b123", + "wage": 119000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-sdm-tigres", + "position": "Top", + "condition": 100, + "full_name": "Jauny Vargas Altamirano", + "attributes": { + "mechanics": 75, + "laning": 66, + "teamfighting": 68, + "macro_play": 74, + "consistency": 72, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 71 + }, + "match_name": "Jauny", + "loan_listed": false, + "morale_core": {}, + "nationality": "Costa Rica", + "contract_end": "2026-12-20", + "market_value": 1785000, + "birth_country": null, + "date_of_birth": "2001-04-12", + "potential_base": 75, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/31f6cd5c.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 66, + "laning": 67, + "teamfighting": 67, + "macro_play": 62, + "consistency": 68, + "shotcalling": 69, + "champion_pool": 68, + "discipline": 65, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "id": "player-ba167646", + "match_name": "Cor", + "full_name": "Gael Dabdoub", + "position": "Mid", + "team_id": "lrn-polar-squad-esport", + "nationality": "MX", + "date_of_birth": "2005-04-11", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/2552af8e0367c141.webp" + }, + { + "id": "player-e0aa9034", + "wage": 131000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-zeu5-esport", + "position": "ADC", + "condition": 100, + "full_name": "Ricardo Manuel Ríos Freitas", + "attributes": { + "mechanics": 66, + "laning": 67, + "teamfighting": 71, + "macro_play": 65, + "consistency": 64, + "shotcalling": 64, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 62 + }, + "match_name": "Foxy", + "loan_listed": false, + "morale_core": {}, + "nationality": "Venezuela", + "contract_end": "2026-12-20", + "market_value": 1965000, + "birth_country": null, + "date_of_birth": "1999-02-16", + "potential_base": 81, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/2c352ad4583cfa57.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-7ee99fb8", + "wage": 83000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-ncg-esports", + "position": "Top", + "condition": 100, + "full_name": "Diego Ivan Garduño Ochoa", + "attributes": { + "mechanics": 58, + "laning": 59, + "teamfighting": 59, + "macro_play": 60, + "consistency": 58, + "shotcalling": 57, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 57 + }, + "match_name": "Lie", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 1245000, + "birth_country": null, + "date_of_birth": "2000-01-01", + "potential_base": 68, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/5c0c5a93.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 60, + "consistency": 56, + "shotcalling": 69, + "champion_pool": 64, + "discipline": 58, + "mental_resilience": 62 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 71, + "transfer_listed": false, + "id": "player-d0e6570d", + "match_name": "Migaja", + "full_name": "Hugo Uriostegui Mañon", + "position": "Mid", + "team_id": "lrn-ncg-esports", + "nationality": "MX", + "date_of_birth": "2003-05-16", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/41daa37c8d927672.webp" + }, + { + "id": "player-917ea40e", + "wage": 80000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-polar-squad-esport", + "position": "Jungle", + "condition": 100, + "full_name": "Martin Eduardo Limon Hernandez", + "attributes": { + "mechanics": 64, + "laning": 63, + "teamfighting": 63, + "macro_play": 65, + "consistency": 63, + "shotcalling": 70, + "champion_pool": 65, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "MrLemon", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 1200000, + "birth_country": null, + "date_of_birth": "1998-08-23", + "potential_base": 70, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/63eb6919.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-efebd062", + "wage": 41000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-g3v-e-sports", + "position": "Mid", + "condition": 100, + "full_name": "Antony Gabriel Siapo Perez", + "attributes": { + "mechanics": 72, + "laning": 74, + "teamfighting": 71, + "macro_play": 74, + "consistency": 74, + "shotcalling": 73, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 75 + }, + "match_name": "Piqueos", + "loan_listed": false, + "morale_core": {}, + "nationality": "Peru", + "contract_end": "2026-12-20", + "market_value": 615000, + "birth_country": null, + "date_of_birth": "2003-10-13", + "potential_base": 83, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/0c2a19bd.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-a86ba05a", + "wage": 131000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-ncg-esports", + "position": "ADC", + "condition": 100, + "full_name": "Ramses López", + "attributes": { + "mechanics": 63, + "laning": 63, + "teamfighting": 64, + "macro_play": 62, + "consistency": 62, + "shotcalling": 61, + "champion_pool": 63, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Raysito", + "loan_listed": false, + "morale_core": {}, + "nationality": "Mexico", + "contract_end": "2026-12-20", + "market_value": 1965000, + "birth_country": null, + "date_of_birth": "2004-01-01", + "potential_base": 79, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": null, + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 65, + "laning": 66, + "teamfighting": 65, + "macro_play": 64, + "consistency": 66, + "shotcalling": 68, + "champion_pool": 64, + "discipline": 65, + "mental_resilience": 63 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 73, + "transfer_listed": false, + "id": "player-d45937f6", + "match_name": "Erk", + "full_name": "Erick Hidalgo", + "position": "Support", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 57, + "macro_play": 56, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 59, + "mental_resilience": 56 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 74, + "transfer_listed": false, + "id": "player-d6898b87", + "match_name": "Naerbedo", + "full_name": "Samuel Molina", + "position": "ADC", + "team_id": "lrn-ncg-esports", + "nationality": "CO", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 75, + "laning": 76, + "teamfighting": 67, + "macro_play": 73, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 78, + "discipline": 75, + "mental_resilience": 73 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 82, + "transfer_listed": false, + "id": "player-e7bd3d92", + "match_name": "Skyy", + "full_name": "Ivan Garcia Rivera", + "position": "Mid", + "team_id": "lrn-sdm-tigres", + "nationality": "MX", + "date_of_birth": "2001-04-10", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/b45583d690d4c21b.png" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 69, + "laning": 67, + "teamfighting": 68, + "macro_play": 69, + "consistency": 69, + "shotcalling": 68, + "champion_pool": 67, + "discipline": 68, + "mental_resilience": 68 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 75, + "transfer_listed": false, + "id": "player-e9bffe4a", + "match_name": "Madblade", + "full_name": "Steven Josue Araya Méndez", + "position": "Support", + "team_id": "lrn-sdm-tigres", + "nationality": "CR", + "date_of_birth": "1998-05-13", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/2ddaf02322ddc533.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 61, + "laning": 62, + "teamfighting": 59, + "macro_play": 58, + "consistency": 58, + "shotcalling": 62, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 62 + }, + "loan_listed": false, + "potential_base": 75, + "transfer_listed": false, + "id": "player-ecc76b24", + "match_name": "AJOSU", + "full_name": "Alex Jones", + "position": "ADC", + "team_id": "lrn-lyon-academy", + "nationality": "US", + "date_of_birth": "1999-02-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-82eedf0a", + "wage": 77000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-g3v-e-sports", + "position": "Top", + "condition": 100, + "full_name": "Brayan Erick Pereda Córdova", + "attributes": { + "mechanics": 60, + "laning": 70, + "teamfighting": 58, + "macro_play": 65, + "consistency": 69, + "shotcalling": 66, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "Brayaron", + "loan_listed": false, + "morale_core": {}, + "nationality": "Peru", + "contract_end": "2026-12-20", + "market_value": 1155000, + "birth_country": null, + "date_of_birth": "2001-09-25", + "potential_base": 72, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Top", + "profile_image_url": "/player-photos/1eddbbb4.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 73, + "laning": 75, + "teamfighting": 72, + "macro_play": 71, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 77, + "discipline": 75, + "mental_resilience": 76 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 82, + "transfer_listed": false, + "id": "player-ed3493c0", + "match_name": "Gavotto", + "full_name": "Omar André Gavotto", + "position": "ADC", + "team_id": "lrn-fuego", + "nationality": "MX", + "date_of_birth": "2026-03-15", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/70b3990c5400be67.png" + }, + { + "career": [], + "attributes": { + "mechanics": 61, + "laning": 63, + "teamfighting": 58, + "macro_play": 58, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 62, + "discipline": 63, + "mental_resilience": 56 + }, + "loan_listed": false, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 69, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-f0bf71b6", + "match_name": "Luchiano", + "full_name": "Luchiano Henostroza Flores", + "position": "Top", + "team_id": "lrn-icon-esports", + "nationality": "PE", + "date_of_birth": "2007-12-13", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/f8474526216e6155.webp" + }, + { + "id": "player-e0fa973a", + "wage": 122000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-g3v-e-sports", + "position": "ADC", + "condition": 100, + "full_name": "Edwin Tapia Vilca", + "attributes": { + "mechanics": 69, + "laning": 72, + "teamfighting": 68, + "macro_play": 69, + "consistency": 75, + "shotcalling": 67, + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 69 + }, + "match_name": "Scenario", + "loan_listed": false, + "morale_core": {}, + "nationality": "Peru", + "contract_end": "2026-12-20", + "market_value": 1830000, + "birth_country": null, + "date_of_birth": "2002-01-05", + "potential_base": 85, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Adc", + "profile_image_url": "/player-photos/e638f0f696849436.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-8b1a5028", + "wage": 68000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-icon-esports", + "position": "Mid", + "condition": 100, + "full_name": "Daniel Fernando Garcia Vera", + "attributes": { + "mechanics": 59, + "laning": 60, + "teamfighting": 60, + "macro_play": 59, + "consistency": 61, + "shotcalling": 67, + "champion_pool": 67, + "discipline": 68, + "mental_resilience": 64 + }, + "match_name": "Shieldworm", + "loan_listed": false, + "morale_core": {}, + "nationality": "Colombia", + "contract_end": "2026-12-20", + "market_value": 1020000, + "birth_country": null, + "date_of_birth": "2000-07-29", + "potential_base": 70, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/39940fb5.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "id": "player-0e4ae1fb", + "wage": 113000, + "stats": { + "appearances": 0 + }, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrn-g3v-e-sports", + "position": "Jungle", + "condition": 100, + "full_name": "Sergio Steven Bautista Grajales", + "attributes": { + "mechanics": 64, + "laning": 63, + "teamfighting": 60, + "macro_play": 64, + "consistency": 67, + "shotcalling": 72, + "champion_pool": 70, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "Gato", + "loan_listed": false, + "morale_core": {}, + "nationality": "Colombia", + "contract_end": "2026-12-20", + "market_value": 1695000, + "birth_country": null, + "date_of_birth": "2003-07-10", + "potential_base": 73, + "training_focus": null, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "natural_position": "Mid", + "profile_image_url": "/player-photos/37420bb8.webp", + "potential_revealed": null, + "alternate_positions": [], + "champion_training_target": null, + "champion_training_targets": [], + "potential_research_eta_days": null, + "potential_research_started_on": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 63, + "laning": 61, + "teamfighting": 64, + "macro_play": 63, + "consistency": 67, + "shotcalling": 68, + "champion_pool": 65, + "discipline": 65, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 70, + "transfer_listed": false, + "id": "player-fd18d533", + "match_name": "Crecre", + "full_name": "Gabriel Grimaldi Moreau", + "position": "Support", + "team_id": "lrn-g3v-e-sports", + "nationality": "PE", + "date_of_birth": "1998-11-25", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/da12a8d5889eaa96.webp" } ] } \ No newline at end of file diff --git a/data/players/lrs_players.json b/data/players/lrs_players.json index a8da15376..775feb1a9 100644 --- a/data/players/lrs_players.json +++ b/data/players/lrs_players.json @@ -3,2283 +3,2121 @@ "description": "LRS - 2026 Season", "players": [ { - "id": "player-39f7c06f", - "match_name": "Lac", - "full_name": "Lac", - "date_of_birth": "2000-02-25", - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 57, - "mechanics": 60, - "discipline": 58, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 55, - "mental_resilience": 59 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "traits": [], - "contract_end": null, + "id": "player-038a68be", "wage": 0, - "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 59, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-039330d2", - "match_name": "iso", - "full_name": "iso", - "date_of_birth": "1998-03-15", - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Bernardo Reis", "attributes": { - "laning": 54, - "mechanics": 56, - "discipline": 53, - "macro_play": 56, - "consistency": 56, - "shotcalling": 52, + "mechanics": 54, + "laning": 56, "teamfighting": 56, + "macro_play": 54, + "consistency": 56, + "shotcalling": 50, "champion_pool": 52, + "discipline": 54, "mental_resilience": 54 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Peco", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 57, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 55, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BR", + "date_of_birth": "2004-02-24", + "stats": {}, + "profile_image_url": "/player-photos/9d1d663dfe2bf5f6.webp" }, { - "id": "player-a9937a5c", - "match_name": "Renyu", - "full_name": "Renyu", - "date_of_birth": "2007-03-19", - "nationality": "PE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-039330d2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Matias Dario Isolani", "attributes": { - "laning": 56, "mechanics": 56, - "discipline": 56, + "laning": 55, + "teamfighting": 58, "macro_play": 56, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 56, + "consistency": 57, + "shotcalling": 54, "champion_pool": 53, + "discipline": 55, "mental_resilience": 55 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Iso", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 60, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1c2cb48f", - "match_name": "Naitz", - "full_name": "Naitz", - "date_of_birth": "1998-12-29", - "nationality": "CL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 63, - "discipline": 64, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 62, - "mental_resilience": 63 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 63, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AR", + "date_of_birth": "1998-03-15", + "stats": {}, + "profile_image_url": "/player-photos/68cd3c54189f4945.webp" }, { - "id": "player-3b989f7a", - "match_name": "Hnb", - "full_name": "Hnb", - "date_of_birth": "2000-07-20", - "nationality": "UY", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 64, - "macro_play": 63, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, + "id": "player-063bc234", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Guillermo Axel Miles", + "attributes": { + "mechanics": 59, + "laning": 58, + "teamfighting": 59, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 55, + "discipline": 57, + "mental_resilience": 56 + }, + "match_name": "CHK", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 67, + "transfer_listed": false, + "position": "Support", + "team_id": "lrs-maze-gaming", + "nationality": "AR", + "date_of_birth": "2004-06-21", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/e4f318b3c0b6b20e.webp" }, { "id": "player-0aee4cee", - "match_name": "Chapters", - "full_name": "Chapters", - "date_of_birth": "2006-06-20", - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-maze-gaming", + "condition": 100, + "full_name": "Leandro Gabriel Paiano Krenz", "attributes": { - "laning": 58, "mechanics": 59, - "discipline": 56, + "laning": 58, + "teamfighting": 59, "macro_play": 59, "consistency": 59, "shotcalling": 56, - "teamfighting": 59, "champion_pool": 56, + "discipline": 56, "mental_resilience": 56 }, - "condition": 100, + "match_name": "Chapters", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AR", + "date_of_birth": "2005-01-17", + "stats": {}, + "profile_image_url": "/player-photos/e6ea4cde4f798e0c.webp" + }, + { + "id": "player-0e47e371", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Gastón Núñez", + "attributes": { + "mechanics": 64, + "laning": 62, + "teamfighting": 63, + "macro_play": 63, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Gastruks", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 68, + "transfer_listed": false, + "position": "Support", + "team_id": "lrs-golden-lions", + "nationality": "AR", + "date_of_birth": "1999-11-25", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/19d9f0daa87b9a51.webp" }, { - "id": "player-59e7835d", - "match_name": "Warangelus", - "full_name": "Warangelus", - "date_of_birth": "2002-02-02", - "nationality": "CL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-10d041d2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Milton Mendoza", "attributes": { - "laning": 66, "mechanics": 65, - "discipline": 66, + "laning": 65, + "teamfighting": 66, "macro_play": 66, "consistency": 66, "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 65 + "champion_pool": 62, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Warsor", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-c0417640", - "match_name": "ianshaka", - "full_name": "ianshaka", - "date_of_birth": "2007-10-17", - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81e0184a", - "match_name": "Wamu", - "full_name": "Wamu", - "date_of_birth": "2001-03-01", - "nationality": "CL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", + "champion_mastery": [], "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 66, - "discipline": 62, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, + "position": "Jungle", + "nationality": "AR", + "date_of_birth": "2006-05-04", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/1e5075341e65598c.webp" }, { - "id": "player-6ce2157b", - "match_name": "Dinastik", - "full_name": "Dinastik", - "date_of_birth": "2003-10-20", - "nationality": "CL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 63, - "macro_play": 63, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-1c2cb48f", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-a86b160e", - "match_name": "Apoka", - "full_name": "Apoka", - "date_of_birth": "2004-11-15", - "nationality": "AR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "condition": 100, + "full_name": "Claudio Ignacio Fuentealba Oliva", "attributes": { - "laning": 63, "mechanics": 63, - "discipline": 58, - "macro_play": 60, - "consistency": 62, + "laning": 65, + "teamfighting": 64, + "macro_play": 65, + "consistency": 65, "shotcalling": 62, - "teamfighting": 60, "champion_pool": 62, - "mental_resilience": 60 + "discipline": 64, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Naitz", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "CL", + "date_of_birth": "2004-01-23", + "stats": {}, + "profile_image_url": "/player-photos/d0bcf8c552fc0f19.webp" }, { - "id": "player-a03282a0", - "match_name": "Neo", - "full_name": "Neo", - "date_of_birth": "2001-06-18", - "nationality": "CL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-1c8c9a80", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Tomás Ignacio Bordón", "attributes": { + "mechanics": 65, "laning": 65, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, + "teamfighting": 66, + "macro_play": 65, "consistency": 65, "shotcalling": 62, - "teamfighting": 62, "champion_pool": 62, - "mental_resilience": 63 + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "KinGi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "AR", + "date_of_birth": "2000-12-05", + "stats": {}, + "profile_image_url": "/player-photos/d4838cb87700c72f.webp" }, { - "id": "player-cb8f7341", - "match_name": "Nate", - "full_name": "Nate", - "date_of_birth": "2002-12-19", - "nationality": "AR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-22ac81b4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Aaron Sterzer", "attributes": { - "laning": 62, - "mechanics": 66, - "discipline": 62, - "macro_play": 63, + "mechanics": 64, + "laning": 64, + "teamfighting": 65, + "macro_play": 64, "consistency": 64, "shotcalling": 62, - "teamfighting": 65, "champion_pool": 63, - "mental_resilience": 62 + "discipline": 66, + "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Funky", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "AR", + "date_of_birth": "2001-01-03", + "stats": {}, + "profile_image_url": "/player-photos/4da269cf31728b5d.webp" }, { "id": "player-25aeb8b9", - "match_name": "Venhamin", - "full_name": "Venhamin", - "date_of_birth": "1999-05-28", - "nationality": "CL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-maze-gaming", + "condition": 100, + "full_name": "Benjamin Ignacio Ramirez Vera", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 65, + "laning": 62, + "teamfighting": 62, "macro_play": 62, "consistency": 62, "shotcalling": 62, - "teamfighting": 62, "champion_pool": 62, + "discipline": 65, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Venhamin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CL", + "date_of_birth": "2004-09-17", + "stats": {}, + "profile_image_url": "/player-photos/868c68f85f03c478.webp" }, { - "id": "player-da267bc9", - "match_name": "Acce", - "full_name": "Acce", - "date_of_birth": "2004-05-17", - "nationality": "AR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3004a953", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Laureano Damian Frias", "attributes": { - "laning": 66, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 64 + "mechanics": 58, + "laning": 60, + "teamfighting": 59, + "macro_play": 62, + "consistency": 59, + "shotcalling": 63, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, + "match_name": "Uxie", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 67, + "transfer_listed": false, + "position": "Support", + "team_id": "lrs-9z-globant", + "nationality": "AR", + "date_of_birth": "2002-02-14", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/022759ed8ecaa439.webp" }, { - "id": "player-9b2246d8", - "match_name": "Chordy", - "full_name": "Chordy", - "date_of_birth": "2000-07-22", - "nationality": "AR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "contract_end": null, + "condition": 100, + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 55, + "macro_play": 54, + "consistency": 55, + "shotcalling": 56, + "champion_pool": 54, + "discipline": 56, + "mental_resilience": 52 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 65, + "transfer_listed": false, + "id": "player-34af4892", + "match_name": "Piwo", + "full_name": "Abel Paucar", + "position": "Jungle", + "team_id": "lrs-tu-pap-esports", + "nationality": "PE", + "date_of_birth": null, "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-9b95e2ec", - "match_name": "AlluK", - "full_name": "AlluK", - "date_of_birth": "2005-01-28", - "nationality": "AR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 58, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-364f0667", + "career": [], "morale": 100, "fitness": 100, + "condition": 100, + "full_name": "Franco Agusto Fortunato", + "attributes": { + "mechanics": 56, + "laning": 55, + "teamfighting": 55, + "macro_play": 55, + "consistency": 56, + "shotcalling": 52, + "champion_pool": 53, + "discipline": 53, + "mental_resilience": 54 + }, + "match_name": "Fortu", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 64, + "transfer_listed": false, + "position": "Support", "team_id": "lrs-malvinas-gaming", - "traits": [], - "contract_end": null, + "nationality": "AR", + "date_of_birth": "2002-12-17", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/a8bcc31b14ee6ec3.webp" + }, + { + "id": "player-39f7c06f", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-malvinas-gaming", + "condition": 100, + "full_name": "Elías Nahuel Gonzáles Castelli", + "attributes": { + "mechanics": 60, + "laning": 57, + "teamfighting": 59, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 55, + "discipline": 58, + "mental_resilience": 59 + }, + "match_name": "Lac", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 59, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AR", + "date_of_birth": "2001-04-21", + "stats": {}, + "profile_image_url": "/player-photos/37b699f127e21680.webp" }, { - "id": "player-8d4d9b14", - "match_name": "nvillada", - "full_name": "nvillada", - "date_of_birth": "2007-11-15", - "nationality": "AR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3b989f7a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-tu-pap-esports", + "condition": 100, + "full_name": "Kevin Andrés Santana Caballero", "attributes": { + "mechanics": 64, "laning": 63, - "mechanics": 66, - "discipline": 62, - "macro_play": 64, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 63, - "mental_resilience": 64 + "teamfighting": 62, + "macro_play": 63, + "consistency": 63, + "shotcalling": 60, + "champion_pool": 60, + "discipline": 64, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Hnb", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "UY", + "date_of_birth": "2006-07-10", + "stats": {}, + "profile_image_url": "/player-photos/6498ea6ff542081b.webp" }, { - "id": "player-eb8eb129", - "match_name": "GianKios", - "full_name": "GianKios", - "date_of_birth": "2004-01-31", - "nationality": "CL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-3c95214c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-9z-globant", + "condition": 100, + "full_name": "Tomás Antonio Díaz Valiente", "attributes": { - "laning": 66, - "mechanics": 65, - "discipline": 65, - "macro_play": 66, - "consistency": 66, + "mechanics": 64, + "laning": 62, + "teamfighting": 64, + "macro_play": 64, + "consistency": 62, "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 65 + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, + "match_name": "Aloned", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CL", + "date_of_birth": "2003-11-17", + "stats": {}, + "profile_image_url": "/player-photos/c2a8f4d323cd91e9.webp" + }, + { + "career": [], + "injury": null, "morale": 100, "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 53, + "laning": 52, + "teamfighting": 55, + "macro_play": 54, + "consistency": 53, + "shotcalling": 55, + "champion_pool": 53, + "discipline": 56, + "mental_resilience": 51 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 62, + "transfer_listed": false, + "id": "player-3fb7c577", + "match_name": "Kurckoo", + "full_name": "Franco José Cañete Silva", + "position": "Mid", "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2001-03-17", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/cd5796fcb8532c46.webp" + }, + { "career": [], - "training_focus": null, + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 60, + "laning": 58, + "teamfighting": 57, + "macro_play": 56, + "consistency": 57, + "shotcalling": 54, + "champion_pool": 57, + "discipline": 57, + "mental_resilience": 53 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 67, "transfer_listed": false, + "id": "player-448bbe58", + "match_name": "Ronin", + "full_name": "Diego Soto Hidalgo", + "position": "Mid", + "team_id": "lrs-seven-dark", + "nationality": "CL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/813cbdd28c884402.webp" + }, + { + "id": "player-472111f6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Bryan Ignacio Torres Sasso", + "attributes": { + "mechanics": 54, + "laning": 53, + "teamfighting": 53, + "macro_play": 55, + "consistency": 55, + "shotcalling": 52, + "champion_pool": 52, + "discipline": 55, + "mental_resilience": 55 + }, + "match_name": "Pyl", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "lrs-seven-dark", + "nationality": "CL", + "date_of_birth": "2000-09-15", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/7af7cf5151871283.webp" }, { - "id": "player-64f74613", - "match_name": "Pet", - "full_name": "Pet", - "date_of_birth": "2000-03-11", - "nationality": "PE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-4bb1af95", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-malvinas-gaming", + "condition": 100, + "full_name": "Nicolás Iván Ale", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 66, + "laning": 65, + "teamfighting": 63, "macro_play": 66, - "consistency": 66, + "consistency": 65, "shotcalling": 62, - "teamfighting": 66, "champion_pool": 63, - "mental_resilience": 65 + "discipline": 62, + "mental_resilience": 64 }, - "condition": 100, + "match_name": "Nobody", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "AR", + "date_of_birth": "2000-01-23", + "stats": {}, + "profile_image_url": "/player-photos/0d3c70f1bf641ed1.webp" + }, + { + "id": "player-57ce3cc5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Gael Ronald Torres Huaman", + "attributes": { + "mechanics": 54, + "laning": 56, + "teamfighting": 54, + "macro_play": 54, + "consistency": 55, + "shotcalling": 52, + "champion_pool": 53, + "discipline": 56, + "mental_resilience": 56 + }, + "match_name": "Galileo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 62, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PE", + "date_of_birth": "2002-11-26", + "stats": {}, + "profile_image_url": "/player-photos/ee70e0fb435585a4.webp" }, { - "id": "player-996e3afc", - "match_name": "Ganks", - "full_name": "Ganks", - "date_of_birth": "2000-03-12", - "nationality": "PE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-59e7835d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Fabián Esteban Llanos Bernal", "attributes": { + "mechanics": 65, "laning": 66, - "mechanics": 66, - "discipline": 60, - "macro_play": 65, + "teamfighting": 66, + "macro_play": 66, "consistency": 66, "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 62, - "mental_resilience": 62 + "champion_pool": 63, + "discipline": 66, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Warangelus", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "CL", + "date_of_birth": "1998-04-09", + "stats": {}, + "profile_image_url": "/player-photos/e50ac90ebaba7c39.webp" }, { - "id": "player-c967059f", - "match_name": "Cow", - "full_name": "Cow", - "date_of_birth": "2003-08-14", - "nationality": "CL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 65, - "macro_play": 62, - "consistency": 63, - "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 63, - "mental_resilience": 64 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, + "condition": 100, + "attributes": { + "mechanics": 50, + "laning": 52, + "teamfighting": 54, + "macro_play": 59, + "consistency": 54, + "shotcalling": 59, + "champion_pool": 53, + "discipline": 55, + "mental_resilience": 53 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 60, + "transfer_listed": false, + "id": "player-5ea950a2", + "match_name": "Day Beats", + "full_name": "Luis Alejandro Meza Panes", + "position": "Jungle", + "team_id": "lrs-golden-lions", + "nationality": "CL", + "date_of_birth": null, "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/829a30a611e52984.webp" }, { - "id": "player-22ac81b4", - "match_name": "Funky", - "full_name": "Funky", - "date_of_birth": "2003-04-24", - "nationality": "AR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-64f74613", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-tu-pap-esports", + "condition": 100, + "full_name": "Leonardo Roberto Silva Seminario", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 66, - "macro_play": 64, - "consistency": 64, + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, "shotcalling": 62, - "teamfighting": 65, "champion_pool": 63, - "mental_resilience": 66 + "discipline": 66, + "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Pet", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 73, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PE", + "date_of_birth": "2003-03-14", + "stats": {}, + "profile_image_url": "/player-photos/a8b15cbf8dd4b10e.webp" }, { - "id": "player-10d041d2", - "match_name": "Warsor", - "full_name": "Warsor", - "date_of_birth": "2000-11-02", - "nationality": "AR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-699bedbb", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-tu-pap-esports", + "condition": 100, + "full_name": "Gustavo Jiménez", "attributes": { - "laning": 65, - "mechanics": 65, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 61, "discipline": 64, - "macro_play": 66, - "consistency": 66, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Gus", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PE", + "date_of_birth": "2003-11-14", + "stats": {}, + "profile_image_url": "/player-photos/2d4ab07f8056d4e4.webp" }, { - "id": "player-1c8c9a80", - "match_name": "KinGi", - "full_name": "KinGi", - "date_of_birth": "2004-07-25", - "nationality": "AR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 65, - "discipline": 66, - "macro_play": 65, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 62, - "mental_resilience": 66 - }, - "condition": 100, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, + "condition": 100, + "attributes": { + "mechanics": 56, + "laning": 53, + "teamfighting": 52, + "macro_play": 50, + "consistency": 53, + "shotcalling": 55, + "champion_pool": 53, + "discipline": 54, + "mental_resilience": 50 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 61, + "transfer_listed": false, + "id": "player-6aba7266", + "match_name": "Guidoxi", + "full_name": "Guido Merad", + "position": "Jungle", + "team_id": "lrs-tu-pap-esports", + "nationality": "AR", + "date_of_birth": null, "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 72, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a5cf8d2574c6eb54.webp" }, { - "id": "player-3c95214c", - "match_name": "Aloned", - "full_name": "Aloned", - "date_of_birth": "2003-11-17", - "nationality": "CL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-6ce2157b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-maze-gaming", + "condition": 100, + "full_name": "Jaime Ramirez", "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 62, + "mechanics": 65, + "laning": 65, + "teamfighting": 62, + "macro_play": 63, + "consistency": 65, "shotcalling": 62, - "teamfighting": 64, - "champion_pool": 63, - "mental_resilience": 63 + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Dinastik", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CL", + "date_of_birth": "2001-10-09", + "stats": {}, + "profile_image_url": "/player-photos/36ed97212da2a54e.webp" }, { - "id": "player-9e4db75a", - "match_name": "Hitsu", - "full_name": "Hitsu", - "date_of_birth": "2001-03-03", - "nationality": "CL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-6fc2ebc1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Maximo", "attributes": { - "laning": 64, - "mechanics": 65, + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 57, "discipline": 60, - "macro_play": 62, - "consistency": 63, - "shotcalling": 62, - "teamfighting": 65, - "champion_pool": 61, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, + "match_name": "Maximo", + "position": "Support", + "team_id": "lrs-tu-pap-esports", + "nationality": "AR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-780c1a54", - "match_name": "Kiefer", - "full_name": "Kiefer", - "date_of_birth": "2002-11-28", - "nationality": "CL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Nicolás Gerardo Rivero Kiefer", "attributes": { - "laning": 64, "mechanics": 62, - "discipline": 62, + "laning": 64, + "teamfighting": 62, "macro_play": 61, "consistency": 63, "shotcalling": 60, - "teamfighting": 62, "champion_pool": 60, + "discipline": 62, "mental_resilience": 63 }, - "condition": 100, + "match_name": "Kiefer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CL", + "date_of_birth": "2001-02-27", + "stats": {}, + "profile_image_url": "/player-photos/06eab0e9abdc1f44.webp" + }, + { + "id": "player-7b7cb20f", + "career": [], "morale": 100, "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Martin Perez Disalvo", + "attributes": { + "mechanics": 50, + "laning": 51, + "teamfighting": 50, + "macro_play": 50, + "consistency": 54, + "shotcalling": 56, + "champion_pool": 52, + "discipline": 59, + "mental_resilience": 55 + }, + "match_name": "Coscu", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 56, + "transfer_listed": false, + "position": "Support", + "team_id": "lrs-9z-globant", + "nationality": "AR", + "date_of_birth": "1991-08-04", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/bbc55f7c563d0b39.webp" + }, + { + "id": "player-81e0184a", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-golden-lions", + "condition": 100, + "full_name": "Nicolas Osvaldo Garrido Romero", + "attributes": { + "mechanics": 66, + "laning": 62, + "teamfighting": 66, + "macro_play": 65, + "consistency": 65, + "shotcalling": 62, + "champion_pool": 62, + "discipline": 62, + "mental_resilience": 64 + }, + "match_name": "Wamu", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CL", + "date_of_birth": "2001-03-01", + "stats": {}, + "profile_image_url": "/player-photos/951ccab8faceeb9b.webp" }, { - "id": "player-699bedbb", - "match_name": "Gus", - "full_name": "Gus", - "date_of_birth": "1998-03-14", - "nationality": "PE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, + "mechanics": 57, + "laning": 59, + "teamfighting": 62, "macro_play": 64, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 64, + "consistency": 63, + "shotcalling": 65, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 63, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 67, + "transfer_listed": false, + "id": "player-83b7fd2b", + "match_name": "Shu Hari", + "full_name": "Diego Angel Placencia Mora", + "position": "Support", + "team_id": "lrs-the-new-kings", + "nationality": "CL", + "date_of_birth": "2001-02-03", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/791da71e21873051.webp" + }, + { + "id": "player-87a26a18", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-9z-globant", + "condition": 100, + "full_name": "Nicolás Raúl Sayago", + "attributes": { + "mechanics": 53, + "laning": 50, + "teamfighting": 53, + "macro_play": 48, + "consistency": 48, + "shotcalling": 52, + "champion_pool": 53, + "discipline": 54, + "mental_resilience": 53 + }, + "match_name": "Fix", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 55, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AR", + "date_of_birth": "2002-06-02", + "stats": {}, + "profile_image_url": "/player-photos/ecdcf38ac64e7f39.webp" }, { - "id": "player-ea7a190e", - "match_name": "Strensh", - "full_name": "Strensh", - "date_of_birth": "2004-10-01", - "nationality": "CL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-8d4d9b14", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-malvinas-gaming", + "condition": 100, + "full_name": "Julian Ignacio Villada", "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 52, - "macro_play": 56, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 54 + "mechanics": 66, + "laning": 63, + "teamfighting": 65, + "macro_play": 64, + "consistency": 65, + "shotcalling": 62, + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Nvillada", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 72, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 59, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AR", + "date_of_birth": "2004-11-11", + "stats": {}, + "profile_image_url": "/player-photos/a65613de762ad247.webp" }, { - "id": "player-f1b49cb8", - "match_name": "Coow", - "full_name": "Coow", - "date_of_birth": "1999-10-30", - "nationality": "CL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 65, - "macro_play": 64, - "consistency": 64, - "shotcalling": 62, - "teamfighting": 63, - "champion_pool": 61, + "mechanics": 58, + "laning": 57, + "teamfighting": 60, + "macro_play": 63, + "consistency": 63, + "shotcalling": 64, + "champion_pool": 60, + "discipline": 62, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 69, + "transfer_listed": false, + "id": "player-92beb5b0", + "match_name": "Pancake", + "full_name": "Manuel Scala", + "position": "Jungle", + "team_id": "lrs-9z-globant", + "nationality": "AR", + "date_of_birth": "2000-10-18", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/f0e84ff98ea8a34f.webp" + }, + { + "id": "player-996e3afc", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-golden-lions", + "condition": 100, + "full_name": "Franco Sánchez Juaregui", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 64, + "macro_play": 65, + "consistency": 66, + "shotcalling": 62, + "champion_pool": 64, + "discipline": 62, + "mental_resilience": 64 + }, + "match_name": "Ganks", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PE", + "date_of_birth": "2000-03-12", + "stats": {}, + "profile_image_url": "/player-photos/3af94ff2bbfeae21.webp" }, { - "id": "player-06c8e1c7", - "match_name": "Mitir", - "full_name": "Mitir", - "date_of_birth": "2002-12-24", - "nationality": "CO", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-9b2246d8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-volticons", + "condition": 100, + "full_name": "Rodrigo Martín Cerrudo", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 66, + "laning": 66, + "teamfighting": 66, "macro_play": 66, "consistency": 66, - "shotcalling": 63, - "teamfighting": 66, + "shotcalling": 62, "champion_pool": 63, + "discipline": 66, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Chordy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 71, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AR", + "date_of_birth": "2001-05-10", + "stats": {}, + "profile_image_url": "/player-photos/420482f7d2970fc5.webp" }, { - "id": "player-bd6a1e79", - "match_name": "Saifer", - "full_name": "Saifer", - "date_of_birth": "2003-07-27", - "nationality": "AR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-9b95e2ec", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-malvinas-gaming", + "condition": 100, + "full_name": "Tomas Cruz", "attributes": { - "laning": 62, - "mechanics": 65, - "discipline": 58, - "macro_play": 65, - "consistency": 63, + "mechanics": 66, + "laning": 66, + "teamfighting": 64, + "macro_play": 64, + "consistency": 65, "shotcalling": 62, - "teamfighting": 62, - "champion_pool": 62, + "champion_pool": 63, + "discipline": 58, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-golden-lions", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "AlluK", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-cec97cd4", - "match_name": "Neadz", - "full_name": "Neadz", - "date_of_birth": "2005-03-26", - "nationality": "CL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 56, - "macro_play": 58, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 56, - "mental_resilience": 58 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "AR", + "date_of_birth": "2005-07-14", + "stats": {}, + "profile_image_url": "/player-photos/da28a16c548e0d5c.webp" }, { "id": "player-9d05fb48", - "match_name": "SkyMind", - "full_name": "SkyMind", - "date_of_birth": "1999-03-01", - "nationality": "CL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Cesar Guillermo Andía Herrera", "attributes": { - "laning": 64, "mechanics": 65, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 65, "consistency": 64, "shotcalling": 62, - "teamfighting": 64, "champion_pool": 63, + "discipline": 64, "mental_resilience": 65 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-the-new-kings", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "SkyMind", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CL", + "date_of_birth": "2003-05-17", + "stats": {}, + "profile_image_url": "/player-photos/e2a7288e8ed289d9.webp" }, { - "id": "player-dff39ab1", - "match_name": "DiDi", - "full_name": "DiDi", - "date_of_birth": "1996-05-07", - "nationality": "AR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-9e4db75a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-maze-gaming", + "condition": 100, + "full_name": "Benjamin Andrés Avila Cárcamo", "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 66, - "macro_play": 66, - "consistency": 66, + "mechanics": 65, + "laning": 64, + "teamfighting": 65, + "macro_play": 62, + "consistency": 63, "shotcalling": 62, - "teamfighting": 66, - "champion_pool": 63, - "mental_resilience": 66 + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 }, - "condition": 100, + "match_name": "Hitsu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", + "market_value": 0, + "potential_base": 71, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CL", + "date_of_birth": "2004-09-11", + "stats": {}, + "profile_image_url": "/player-photos/e0c3fb8ddfddce03.webp" + }, + { + "id": "player-a03282a0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "lrs-maze-gaming", + "condition": 100, + "full_name": "Mario Jesús Fernandez Garrido", + "attributes": { + "mechanics": 64, + "laning": 65, + "teamfighting": 62, + "macro_play": 64, + "consistency": 65, + "shotcalling": 62, + "champion_pool": 62, + "discipline": 64, + "mental_resilience": 63 + }, + "match_name": "Neo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "CL", + "date_of_birth": "2004-12-06", + "stats": {}, + "profile_image_url": "/player-photos/753e1406190f2fb1.webp" }, { "id": "player-a0616e7b", - "match_name": "Martote", - "full_name": "Martote", - "date_of_birth": "2003-09-23", - "nationality": "UY", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-volticons", + "condition": 100, + "full_name": "Martín Rafael Añaña Gomez", "attributes": { - "laning": 66, "mechanics": 66, - "discipline": 66, + "laning": 66, + "teamfighting": 66, "macro_play": 66, "consistency": 66, "shotcalling": 62, - "teamfighting": 66, "champion_pool": 63, + "discipline": 66, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-volticons", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Martote", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-4bb1af95", - "match_name": "Nobody", - "full_name": "Nobody", - "date_of_birth": "2000-07-22", - "nationality": "AR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 65, - "mechanics": 66, - "discipline": 62, - "macro_play": 66, - "consistency": 65, - "shotcalling": 62, - "teamfighting": 63, - "champion_pool": 63, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-038a68be", - "match_name": "Peco", - "full_name": "Peco", - "date_of_birth": "2003-08-03", - "nationality": "BR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", + "champion_mastery": [], "alternate_positions": [], - "attributes": { - "laning": 56, - "mechanics": 54, - "discipline": 54, - "macro_play": 54, - "consistency": 56, - "shotcalling": 50, - "teamfighting": 56, - "champion_pool": 52, - "mental_resilience": 54 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, + "position": "Jungle", + "nationality": "UY", + "date_of_birth": "2004-07-16", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 57, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/1f0fc282455e884b.webp" }, { - "id": "player-57ce3cc5", - "match_name": "Galileo", - "full_name": "Galileo", - "date_of_birth": "2001-01-30", - "nationality": "PE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], "attributes": { - "laning": 56, - "mechanics": 54, - "discipline": 56, - "macro_play": 54, - "consistency": 55, - "shotcalling": 52, + "mechanics": 56, + "laning": 54, "teamfighting": 54, + "macro_play": 53, + "consistency": 56, + "shotcalling": 52, "champion_pool": 53, - "mental_resilience": 56 + "discipline": 55, + "mental_resilience": 51 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 67, + "transfer_listed": false, + "id": "player-a2a3e5a0", + "match_name": "Respeta", + "full_name": "Leandro Montañez", + "position": "Top", + "team_id": "lrs-volticons", + "nationality": "UY", + "date_of_birth": "2004-09-02", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 55, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/81cd9819f4afba48.webp" }, { - "id": "player-87a26a18", - "match_name": "Fix", - "full_name": "Fix", - "date_of_birth": "2002-06-02", - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 50, - "mechanics": 53, - "discipline": 54, - "macro_play": 48, - "consistency": 48, - "shotcalling": 52, - "teamfighting": 53, - "champion_pool": 53, - "mental_resilience": 53 - }, - "condition": 100, + "id": "player-a86b160e", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Mario Tomas Pessoa Granzella", + "attributes": { + "mechanics": 63, + "laning": 63, + "teamfighting": 60, + "macro_play": 60, + "consistency": 62, + "shotcalling": 62, + "champion_pool": 62, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Apoka", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 55, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7b7cb20f", - "match_name": "Coscu", - "full_name": "Coscu", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", + "champion_mastery": [], "alternate_positions": [], - "attributes": { - "laning": 51, - "mechanics": 50, - "discipline": 59, - "macro_play": 50, - "consistency": 54, - "shotcalling": 56, - "teamfighting": 50, - "champion_pool": 52, - "mental_resilience": 55 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "position": "Jungle", + "nationality": "AR", + "date_of_birth": "2004-11-15", "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/3d115403da30abcf.webp" }, { - "id": "player-364f0667", - "match_name": "Fortu", - "full_name": "Fortu", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 55, - "mechanics": 56, - "discipline": 53, - "macro_play": 55, - "consistency": 56, - "shotcalling": 52, - "teamfighting": 55, - "champion_pool": 53, - "mental_resilience": 54 - }, - "condition": 100, + "id": "player-a9937a5c", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-malvinas-gaming", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-472111f6", - "match_name": "Pyl", - "full_name": "Pyl", - "date_of_birth": null, - "nationality": "CL", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "team_id": "lrs-tu-pap-esports", + "condition": 100, + "full_name": "Renato Josue Gallegos Muñoz", "attributes": { - "laning": 53, - "mechanics": 54, - "discipline": 55, - "macro_play": 55, - "consistency": 55, + "mechanics": 56, + "laning": 56, + "teamfighting": 56, + "macro_play": 56, + "consistency": 56, "shotcalling": 52, - "teamfighting": 53, - "champion_pool": 52, + "champion_pool": 53, + "discipline": 56, "mental_resilience": 55 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Renyu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 60, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PE", + "date_of_birth": "1999-12-21", "stats": {}, + "profile_image_url": "/player-photos/15fb1fcc99bfa1f0.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 59, + "laning": 60, + "teamfighting": 63, + "macro_play": 64, + "consistency": 67, + "shotcalling": 63, + "champion_pool": 62, + "discipline": 67, + "mental_resilience": 68 + }, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "potential_base": 88, + "transfer_listed": false, + "id": "player-ad5918b1", + "match_name": "Bet Miau", + "full_name": "Betsabe Coronel", + "position": "ADC", + "team_id": "lrs-malvinas-gaming", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/d60af64c78f1f297.webp" }, { "id": "player-b6696d36", - "match_name": "Iska", - "full_name": "Iska", - "date_of_birth": null, - "nationality": "PE", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Sadhu Isaac Cavero Egusquiza Huilca", "attributes": { - "laning": 55, "mechanics": 55, - "discipline": 56, + "laning": 55, + "teamfighting": 55, "macro_play": 55, "consistency": 55, "shotcalling": 52, - "teamfighting": 55, "champion_pool": 53, + "discipline": 56, "mental_resilience": 55 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Iska", + "loan_listed": false, + "contract_end": "2026-12-16", + "potential_base": 64, + "transfer_listed": false, + "position": "Support", "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PE", + "date_of_birth": "1999-12-01", + "wage": 0, + "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/17d04b1d0f0279db.webp" + }, + { + "id": "player-bd6a1e79", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-golden-lions", + "condition": 100, + "full_name": "Gaston Pedalino Vera", + "attributes": { + "mechanics": 65, + "laning": 62, + "teamfighting": 62, + "macro_play": 65, + "consistency": 63, + "shotcalling": 62, + "champion_pool": 62, + "discipline": 58, + "mental_resilience": 62 + }, + "match_name": "Saifer", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "AR", + "date_of_birth": "2003-07-27", + "stats": {}, + "profile_image_url": "/player-photos/b9eee550c19c5fe9.webp" }, { - "id": "player-3004a953", - "match_name": "Uxie", - "full_name": "Uxie", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 54, - "mechanics": 58, - "discipline": 56, - "macro_play": 58, - "consistency": 59, - "shotcalling": 56, - "teamfighting": 54, - "champion_pool": 55, - "mental_resilience": 56 - }, - "condition": 100, + "id": "player-c0417640", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "team_id": "lrs-volticons", + "condition": 100, + "full_name": "Ian Pohl", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 60, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Ianshaka", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AR", + "date_of_birth": "2005-10-22", + "stats": {}, + "profile_image_url": "/player-photos/f0284fae3e0d8161.webp" }, { - "id": "player-063bc234", - "match_name": "CHK", - "full_name": "CHK", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { - "laning": 58, - "mechanics": 59, - "discipline": 57, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, + "mechanics": 55, + "laning": 52, + "teamfighting": 52, + "macro_play": 51, + "consistency": 50, + "shotcalling": 52, "champion_pool": 55, - "mental_resilience": 56 + "discipline": 53, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 70, + "transfer_listed": false, + "id": "player-c8402dba", + "match_name": "larvinho", + "full_name": "Matias Barraza", + "position": "Mid", + "team_id": "lrs-golden-lions", + "nationality": "CL", + "date_of_birth": null, + "wage": 0, + "market_value": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-c967059f", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Martin Alonso Contreras Aguilar", + "attributes": { + "mechanics": 62, + "laning": 64, + "teamfighting": 62, + "macro_play": 62, + "consistency": 63, + "shotcalling": 62, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 64 + }, + "match_name": "Coow", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "CL", + "date_of_birth": "2003-07-17", + "stats": {}, + "profile_image_url": "/player-photos/199e648d810fc7a1.webp" }, { - "id": "player-7409e684", - "match_name": "Stoneses", - "full_name": "Stoneses", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-cb8f7341", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-9z-globant", + "condition": 100, + "full_name": "Damián Rea", "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 62, + "mechanics": 66, + "laning": 62, + "teamfighting": 65, "macro_play": 63, - "consistency": 63, - "shotcalling": 59, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 + "consistency": 64, + "shotcalling": 62, + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-seven-dark", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Nate", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AR", + "date_of_birth": "2002-12-19", + "stats": {}, + "profile_image_url": "/player-photos/4e3c7a0f7e7ec0fe.webp" }, { - "id": "player-6fc2ebc1", - "match_name": "Maximo", - "full_name": "Maximo", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-cec97cd4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Esteban Fernando San Martín Durán", "attributes": { + "mechanics": 58, "laning": 60, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, + "teamfighting": 58, + "macro_play": 58, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 57, - "mental_resilience": 60 + "champion_pool": 56, + "discipline": 56, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-tu-pap-esports", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Neadz", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 63, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CL", + "date_of_birth": "2004-05-28", "stats": {}, + "profile_image_url": "/player-photos/31d023b5cbc54f07.webp" + }, + { "career": [], - "training_focus": null, + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 56, + "macro_play": 59, + "consistency": 55, + "shotcalling": 58, + "champion_pool": 56, + "discipline": 55, + "mental_resilience": 53 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 65, "transfer_listed": false, + "id": "player-d5f92f17", + "match_name": "Trashy", + "full_name": "Alejo Valentin Miguel Rivero", + "position": "Jungle", + "team_id": "lrs-volticons", + "nationality": "AR", + "date_of_birth": "2002-05-15", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/e08af27d364f1310.webp" + }, + { + "id": "player-da267bc9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-the-new-kings", + "condition": 100, + "full_name": "Emmanuel Juárez", + "attributes": { + "mechanics": 64, + "laning": 66, + "teamfighting": 64, + "macro_play": 64, + "consistency": 65, + "shotcalling": 62, + "champion_pool": 63, + "discipline": 65, + "mental_resilience": 64 + }, + "match_name": "Acce", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 72, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AR", + "date_of_birth": "1995-10-06", + "stats": {}, + "profile_image_url": "/player-photos/a17ed9ca3d1e9312.webp" }, { - "id": "player-8c9a6b4a", - "match_name": "Ux", - "full_name": "Ux", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { + "mechanics": 55, "laning": 58, - "mechanics": 59, - "discipline": 64, - "macro_play": 61, + "teamfighting": 56, + "macro_play": 54, "consistency": 56, - "shotcalling": 60, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 62 + "shotcalling": 51, + "champion_pool": 53, + "discipline": 57, + "mental_resilience": 52 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "lrs-9z-globant", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 70, + "transfer_listed": false, + "id": "player-dfa7b561", + "match_name": "DaeHan", + "full_name": "Maximo Ian Choi (최대한)", + "position": "ADC", + "team_id": "lrs-seven-dark", + "nationality": "AR", + "date_of_birth": "2005-04-18", + "wage": 0, + "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/d80347180f69fb16.webp" + }, + { + "id": "player-dff39ab1", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "lrs-volticons", + "condition": 100, + "full_name": "Marianno Gastón Masolini", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 62, + "champion_pool": 63, + "discipline": 66, + "mental_resilience": 66 + }, + "match_name": "DiDi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "AR", + "date_of_birth": "2000-05-10", + "stats": {}, + "profile_image_url": "/player-photos/692d7d6d2fbf9860.webp" }, { - "id": "player-0e47e371", - "match_name": "Gastruks", - "full_name": "Gastruks", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 58, - "macro_play": 63, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 63, - "champion_pool": 61, - "mental_resilience": 60 - }, - "condition": 100, + "id": "player-ea7a190e", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "lrs-golden-lions", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "condition": 100, + "full_name": "Cristopher Gustavo Gonzalez Plaza", + "attributes": { + "mechanics": 56, + "laning": 55, + "teamfighting": 55, + "macro_play": 56, + "consistency": 56, + "shotcalling": 52, + "champion_pool": 53, + "discipline": 52, + "mental_resilience": 54 + }, + "match_name": "Strensh", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 59, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "CL", + "date_of_birth": "2004-10-01", + "stats": {}, + "profile_image_url": "/player-photos/da42dcc4c0f96081.webp" }, { - "id": "player-80ab7e4f", - "match_name": "Makishy", - "full_name": "Makishy", - "date_of_birth": null, - "nationality": "CL", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 64, - "macro_play": 64, - "consistency": 63, - "shotcalling": 60, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, + "id": "player-eb8eb129", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "lrs-maze-gaming", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "team_id": "lrs-seven-dark", + "condition": 100, + "full_name": "Gianfranco Casanova Cortes", + "attributes": { + "mechanics": 65, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 62, + "champion_pool": 62, + "discipline": 65, + "mental_resilience": 65 + }, + "match_name": "GianKios", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CL", + "date_of_birth": "2002-02-08", + "stats": {}, + "profile_image_url": "/player-photos/713d30c2dd0bc870.webp" }, { "id": "player-efe25219", - "match_name": "Camilo", - "full_name": "Camilo", - "date_of_birth": null, - "nationality": "UY", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Camilo Nicolau Blanchet", "attributes": { - "laning": 56, "mechanics": 56, - "discipline": 56, + "laning": 56, + "teamfighting": 56, "macro_play": 56, "consistency": 56, "shotcalling": 52, - "teamfighting": 56, "champion_pool": 53, + "discipline": 56, "mental_resilience": 56 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Camilo", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 62, + "transfer_listed": false, + "position": "Support", "team_id": "lrs-volticons", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "UY", + "date_of_birth": "2002-05-27", + "wage": 0, + "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/4553f360ca14c254.webp" } ] } \ No newline at end of file diff --git a/data/players/nacl_players.json b/data/players/nacl_players.json index 938449905..617d07195 100644 --- a/data/players/nacl_players.json +++ b/data/players/nacl_players.json @@ -3,1982 +3,1591 @@ "description": "NACL - 2026 Season", "players": [ { - "id": "player-a331c296", - "match_name": "Tomio", - "full_name": "Tomio", - "date_of_birth": null, + "id": "player-0b449f07", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Trevor Kerr-Taylor", + "attributes": { + "mechanics": 68, + "laning": 74, + "teamfighting": 72, + "macro_play": 69, + "consistency": 69, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Spawn", + "loan_listed": false, + "transfer_listed": false, + "position": "ADC", + "team_id": "team-99f3b280", "nationality": "CA", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "date_of_birth": "1998-05-18", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/cffc00b68392e1fd.webp" + }, + { + "id": "player-0c6004b3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Max Munday", "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 72, + "mechanics": 70, + "laning": 71, + "teamfighting": 71, "macro_play": 72, "consistency": 72, "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Hub", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "ADC", + "team_id": "team-10540476", + "nationality": "CA", + "date_of_birth": "2003-08-05", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6803e307", - "match_name": "Ariana", - "full_name": "Ariana", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0d623441", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Liyu Sun", "attributes": { - "laning": 66, - "mechanics": 66, - "discipline": 70, - "macro_play": 64, - "consistency": 65, - "shotcalling": 65, - "teamfighting": 68, - "champion_pool": 70, + "mechanics": 71, + "laning": 71, + "teamfighting": 70, + "macro_play": 71, + "consistency": 71, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 68, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-99f3b280", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Cody Sun", + "loan_listed": false, + "transfer_listed": false, + "position": "ADC", + "team_id": "team-e21b9ba3", + "nationality": "CA", + "date_of_birth": "1997-04-24", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/5c1c4ab3b5ec3c08.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-10bfcfdd", + "match_name": "Rapid", + "full_name": "Donnie Stauffer", + "position": "Jungle", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "1998-09-21", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/fc5eba67834313a3.webp" }, { - "id": "player-5018a096", - "match_name": "Sniper", - "full_name": "Sniper", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-11220bf4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ryan Keel", "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 71, - "macro_play": 70, + "mechanics": 70, + "laning": 72, + "teamfighting": 70, + "macro_play": 66, "consistency": 70, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 71 + "shotcalling": 71, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Keel", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-ba8042f7", + "nationality": "US", + "date_of_birth": "2001-05-29", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/a4eab880b131289c.webp" }, { - "id": "player-af9cc2ab", - "match_name": "Bradley", - "full_name": "Bradley", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-112c511f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Joshua Hartnett", "attributes": { + "mechanics": 69, "laning": 71, - "mechanics": 72, - "discipline": 73, + "teamfighting": 71, "macro_play": 72, - "consistency": 72, + "consistency": 70, "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, + "champion_pool": 70, + "discipline": 70, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dardoch", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-e21b9ba3", + "nationality": "US", + "date_of_birth": "1998-04-10", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/a61398239b477407.webp" }, { - "id": "player-53678b03", - "match_name": "Crimson", - "full_name": "Crimson", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1256560d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ryan Jung", "attributes": { + "mechanics": 67, "laning": 73, - "mechanics": 74, - "discipline": 71, - "macro_play": 72, - "consistency": 74, - "shotcalling": 70, - "teamfighting": 73, + "teamfighting": 67, + "macro_play": 69, + "consistency": 66, + "shotcalling": 71, "champion_pool": 69, - "mental_resilience": 72 + "discipline": 73, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Zyko", + "position": "Support", + "team_id": "team-fa242f1f", + "nationality": "US", + "date_of_birth": "2000-06-02", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/061e41abfe563cdd.webp" }, { - "id": "player-dea284e5", - "match_name": "Denathor", - "full_name": "Denathor", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-13e6c8c4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Zachary Papanicolas", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Zach", + "loan_listed": false, + "transfer_listed": false, + "position": "Mid", "team_id": "team-f1da75bb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "US", + "date_of_birth": "2004-02-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-3d50fcaf", - "match_name": "Griffin", - "full_name": "Griffin", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-14cf5e0e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Chase Capello", "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 71, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 69 + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, + "match_name": "Shochi", + "position": "Mid", + "team_id": "team-fa242f1f", + "nationality": "US", + "date_of_birth": "2002-01-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/831d12b1bfd1a536.webp" + }, + { + "id": "player-18ecef90", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Jeremiah Leathe", + "attributes": { + "mechanics": 74, + "laning": 73, + "teamfighting": 74, + "macro_play": 73, + "consistency": 73, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "ScaryJerry", + "position": "ADC", + "team_id": "team-73a32fd5", + "nationality": "AR", + "date_of_birth": "2002-03-16", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/0ca80c2882bea0b8.webp" }, { - "id": "player-688e7497", - "match_name": "Bradley", - "full_name": "Bradley", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-38fb3072", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Kolby J. Ashby", "attributes": { + "mechanics": 74, "laning": 74, - "mechanics": 69, - "discipline": 74, + "teamfighting": 73, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 72 + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "PhyMini", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Mid", + "team_id": "team-73a32fd5", + "nationality": "US", + "date_of_birth": "2006-04-06", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-0bcc6889", - "match_name": "Meech", - "full_name": "Meech", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-3d0db88b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Roberto Guallichico", "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 74, + "mechanics": 71, + "laning": 68, + "teamfighting": 71, "macro_play": 70, "consistency": 70, - "shotcalling": 70, - "teamfighting": 71, + "shotcalling": 66, "champion_pool": 69, - "mental_resilience": 72 + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Stray", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Top", + "team_id": "team-ba8042f7", + "nationality": "EC", + "date_of_birth": "1999-10-14", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b64c62718ca20c79.webp" }, { - "id": "player-77b3e7f6", - "match_name": "Rovex", - "full_name": "Rovex", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-3d50fcaf", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Raymond Griffin", "attributes": { - "laning": 69, - "mechanics": 68, + "mechanics": 71, + "laning": 73, + "teamfighting": 72, + "macro_play": 70, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 70, "discipline": 72, - "macro_play": 68, - "consistency": 68, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-99f3b280", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Griffin", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-ba8042f7", + "nationality": "US", + "date_of_birth": "1999-09-11", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/651e03a05de4f273.webp" }, { - "id": "player-bca52c30", - "match_name": "Bounty", - "full_name": "Bounty", - "date_of_birth": null, - "nationality": "BR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-3e2841d9", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Edward Ra", "attributes": { - "laning": 71, "mechanics": 72, - "discipline": 70, - "macro_play": 70, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 72, + "laning": 71, + "teamfighting": 74, + "macro_play": 71, + "consistency": 71, + "shotcalling": 71, "champion_pool": 69, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Tactical", + "loan_listed": false, + "transfer_listed": false, + "position": "ADC", "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "US", + "date_of_birth": "2000-08-18", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/7ac1bb3c1a28d16d.webp" }, { - "id": "player-62333fb6", - "match_name": "Fiji", - "full_name": "Fiji", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-42d63c68", + "match_name": "Beep", + "full_name": "Marc Jackson Jr.", + "position": "Support", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "2005-07-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 66, - "mechanics": 68, - "discipline": 68, - "macro_play": 66, - "consistency": 66, - "shotcalling": 65, - "teamfighting": 69, - "champion_pool": 69, - "mental_resilience": 68 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-451540eb", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Ha-Lim \"Joseph\" Hong", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Levitate", + "position": "ADC", + "team_id": "team-fa242f1f", + "nationality": "US", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/06fceceae7a2a0a8.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-46007dbb", + "match_name": "Shimmer", + "full_name": "Kaan Tomak", + "position": "Jungle", + "team_id": "team-73a32fd5", + "nationality": "", + "date_of_birth": "2002-04-13", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/279418b0adbb0da0.webp" }, { - "id": "player-9206cedf", - "match_name": "Dec0y", - "full_name": "Dec0y", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-4b331429", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "David Challe", "attributes": { + "mechanics": 72, "laning": 71, - "mechanics": 70, - "discipline": 74, + "teamfighting": 73, "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 + "consistency": 71, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 71, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-10540476", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Insanity", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Mid", + "team_id": "team-31b92c52", + "nationality": "US", + "date_of_birth": "1999-09-22", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/efa49a3d815e24e8.webp" }, { - "id": "player-3d0db88b", - "match_name": "Stray", - "full_name": "Stray", - "date_of_birth": null, - "nationality": "EC", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-5018a096", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Rayan Shoura", "attributes": { - "laning": 68, - "mechanics": 71, - "discipline": 71, + "mechanics": 73, + "laning": 71, + "teamfighting": 72, "macro_play": 70, "consistency": 70, - "shotcalling": 66, - "teamfighting": 71, - "champion_pool": 69, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, + "match_name": "Sniper", + "loan_listed": false, + "contract_end": "2006-11-19", + "transfer_listed": false, + "position": "Top", + "team_id": "team-31b92c52", + "nationality": "CA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/aa3ed5ddb0575f8b.webp" + }, + { + "id": "player-53678b03", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Bilal Shoura", + "attributes": { + "mechanics": 74, + "laning": 73, + "teamfighting": 73, + "macro_play": 72, + "consistency": 74, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 72 + }, + "match_name": "Crimson", + "loan_listed": false, + "transfer_listed": false, + "position": "Top", + "team_id": "team-73a32fd5", + "nationality": "CA", + "date_of_birth": "2006-11-10", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-5b187146", + "match_name": "Sword", + "full_name": "Rico Chen", + "position": "Mid", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "2002-09-18", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/c37a335ba8f1e8ef.webp" }, { "id": "player-5bd2e851", - "match_name": "Keii", - "full_name": "Keii", - "date_of_birth": null, - "nationality": "CO", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Víctor Leandro Durango García", "attributes": { - "laning": 73, "mechanics": 72, - "discipline": 74, + "laning": 73, + "teamfighting": 72, "macro_play": 72, "consistency": 73, "shotcalling": 66, - "teamfighting": 72, "champion_pool": 70, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Keii", + "position": "Top", "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CO", + "date_of_birth": "2002-06-26", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/46e12ebc7315cc7e.webp" + }, + { + "id": "player-6217144c", "career": [], - "training_focus": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mehmet Emin Aydın", + "attributes": { + "mechanics": 68, + "laning": 71, + "teamfighting": 66, + "macro_play": 68, + "consistency": 72, + "shotcalling": 65, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "Only35", + "loan_listed": false, "transfer_listed": false, + "position": "Support", + "team_id": "team-f1da75bb", + "nationality": "TR", + "date_of_birth": "2000-04-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/be2e1e307d2bef76.webp" + }, + { + "id": "player-62333fb6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "James Thomas Carlisle", + "attributes": { + "mechanics": 68, + "laning": 66, + "teamfighting": 69, + "macro_play": 66, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 69, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Fiji", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Top", + "team_id": "team-e21b9ba3", + "nationality": "US", + "date_of_birth": "2001-07-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-72068cec", - "match_name": "Munchy", - "full_name": "Munchy", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-6803e307", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakub Śliwonik", "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 74, - "macro_play": 68, - "consistency": 68, - "shotcalling": 70, + "mechanics": 66, + "laning": 66, "teamfighting": 68, + "macro_play": 64, + "consistency": 65, + "shotcalling": 65, "champion_pool": 70, + "discipline": 70, "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Ariana", + "loan_listed": false, + "transfer_listed": false, + "position": "Top", "team_id": "team-99f3b280", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PL", + "date_of_birth": "2003-12-08", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/2bac315b4a080d77.webp" + }, + { + "id": "player-688e7497", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Bradley Benneyworth", + "attributes": { + "mechanics": 69, + "laning": 74, + "teamfighting": 73, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 74, + "mental_resilience": 72 + }, + "match_name": "Bradley", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2027-01-01", + "transfer_listed": false, + "position": "Mid", + "team_id": "team-ba8042f7", + "nationality": "US", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/b792748afcbe260a.webp" }, { - "id": "player-999f2511", - "match_name": "Horder", - "full_name": "Horder", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-6c3a0a2b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ganbat Ulziidelger", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 73, + "teamfighting": 73, "macro_play": 74, "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, + "shotcalling": 66, "champion_pool": 71, - "mental_resilience": 74 + "discipline": 72, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Yuuji", + "position": "Jungle", + "team_id": "team-73a32fd5", + "nationality": "MN", + "date_of_birth": "2002-11-13", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/09110e67b101837d.webp" }, { - "id": "player-112c511f", - "match_name": "Dardoch", - "full_name": "Dardoch", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-72068cec", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Janan Chen", "attributes": { - "laning": 71, "mechanics": 69, - "discipline": 70, - "macro_play": 72, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 71, + "laning": 71, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 70, "champion_pool": 70, - "mental_resilience": 70 + "discipline": 74, + "mental_resilience": 69 }, - "condition": 100, + "match_name": "Munchy", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-99f3b280", + "nationality": "CA", + "date_of_birth": "2004-10-08", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-77039b65", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "condition": 100, + "full_name": "Samrith Loeung", + "attributes": { + "mechanics": 64, + "laning": 70, + "teamfighting": 68, + "macro_play": 69, + "consistency": 67, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 67 + }, + "match_name": "Samikin", + "loan_listed": false, + "contract_end": "", + "transfer_listed": false, + "position": "Mid", + "team_id": "team-99f3b280", + "nationality": "KH", + "date_of_birth": "2003-10-14", + "wage": 0, + "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/e9728c2ca5b29bf5.webp" + }, + { + "id": "player-77b3e7f6", "career": [], - "training_focus": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "David Sin-Keo", + "attributes": { + "mechanics": 68, + "laning": 69, + "teamfighting": 70, + "macro_play": 68, + "consistency": 68, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 71 + }, + "match_name": "Rovex", + "loan_listed": false, "transfer_listed": false, + "position": "Support", + "team_id": "team-99f3b280", + "nationality": "CA", + "date_of_birth": "2007-01-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/cc294ea63dd8a73b.webp" + }, + { + "id": "player-7b2bff6a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ethan Song", + "attributes": { + "mechanics": 68, + "laning": 68, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 66, + "champion_pool": 68, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Kim Down", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_base": 75, + "transfer_listed": false, + "position": "Support", + "team_id": "team-f1da75bb", + "nationality": "KR", + "date_of_birth": "1999-12-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/323ba6df5fad1a35.webp" }, { "id": "player-843f2f97", - "match_name": "Lojaz", - "full_name": "Lojaz", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ben Okun", "attributes": { - "laning": 71, "mechanics": 70, - "discipline": 73, + "laning": 71, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 71, - "teamfighting": 71, "champion_pool": 70, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Lojaz", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", "team_id": "team-10540476", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "US", + "date_of_birth": "2000-10-04", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-6c3a0a2b", - "match_name": "Yuuji", - "full_name": "Yuuji", - "date_of_birth": null, - "nationality": "MN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-86fca7ec", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jackson Moldenhauer", "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 73, + "mechanics": 70, + "laning": 71, + "teamfighting": 68, + "macro_play": 69, + "consistency": 69, + "shotcalling": 71, "champion_pool": 71, - "mental_resilience": 73 + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Array", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "ADC", + "team_id": "team-ba8042f7", + "nationality": "US", + "date_of_birth": "2000-11-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/c350d40d762cfdc5.webp" }, { - "id": "player-ca76ba82", - "match_name": "Aojune", - "full_name": "Aojune", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-9206cedf", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Noah D'Addario", "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 72, - "macro_play": 68, - "consistency": 66, - "shotcalling": 65, + "mechanics": 70, + "laning": 71, "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 + "macro_play": 70, + "consistency": 70, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Dec0y", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Top", + "team_id": "team-10540476", + "nationality": "CA", + "date_of_birth": "2000-04-27", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-c4086fe1", - "match_name": "Music", - "full_name": "Music", - "date_of_birth": null, - "nationality": "IL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-999f2511", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Chris Feng", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, + "shotcalling": 70, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Horder", + "position": "Top", "team_id": "team-fa242f1f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/8b7146e4a71c3b10.webp" }, { - "id": "player-c5ca7ff6", - "match_name": "Wilson", - "full_name": "Wilson", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-9ded71d4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Aadam Durgahed", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, + "mechanics": 70, + "laning": 71, + "teamfighting": 72, + "macro_play": 71, + "consistency": 71, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 71, - "mental_resilience": 74 + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aadam", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Mid", + "team_id": "team-10540476", + "nationality": "CA", + "date_of_birth": "2005-10-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-77039b65", - "match_name": "Samikin", - "full_name": "Samikin", - "date_of_birth": null, - "nationality": "KH", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-a331c296", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Phanlith Chan", + "attributes": { + "mechanics": 71, + "laning": 72, + "teamfighting": 70, + "macro_play": 72, + "consistency": 72, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 71 + }, + "match_name": "Tomio", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-31b92c52", + "nationality": "CA", + "date_of_birth": "2003-06-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/7fd94c93a1a0532d.webp" + }, + { + "id": "player-a526b14b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "David Rigley", "attributes": { - "laning": 70, "mechanics": 64, - "discipline": 68, - "macro_play": 69, + "laning": 70, + "teamfighting": 65, + "macro_play": 71, "consistency": 67, - "shotcalling": 66, - "teamfighting": 68, + "shotcalling": 71, "champion_pool": 71, - "mental_resilience": 67 + "discipline": 74, + "mental_resilience": 69 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-99f3b280", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Mobility", + "position": "ADC", + "team_id": "team-f1da75bb", + "nationality": "US", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/afe1535b0fa45fdf.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-ac940528", + "match_name": "Souldier", + "full_name": "Samuel Henkin", + "position": "ADC", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-9ded71d4", - "match_name": "aadam", - "full_name": "aadam", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-bca52c30", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Gabriel Vieira Donner", "attributes": { + "mechanics": 72, "laning": 71, - "mechanics": 70, - "discipline": 71, - "macro_play": 71, - "consistency": 71, - "shotcalling": 70, "teamfighting": 72, - "champion_pool": 71, + "macro_play": 70, + "consistency": 72, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-10540476", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Bounty", + "loan_listed": false, + "contract_end": "2027-01-01", + "transfer_listed": false, + "position": "Support", + "team_id": "team-31b92c52", + "nationality": "BR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/df1d601b51eb982c.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-bf4007f8", + "match_name": "Tails", + "full_name": "Zixing Jie", + "position": "Mid", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "1994-10-02", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/988ff82324e598eb.webp" }, { - "id": "player-14cf5e0e", - "match_name": "shochi", - "full_name": "shochi", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-c4086fe1", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Sean Wishko", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, + "shotcalling": 66, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Music", + "loan_listed": false, + "transfer_listed": false, + "position": "Jungle", "team_id": "team-fa242f1f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "IL", + "date_of_birth": "2000-02-03", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-0d623441", - "match_name": "Cody Sun", - "full_name": "Cody Sun", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-c5ca7ff6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "William Benoit", "attributes": { - "laning": 71, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 71, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 70, - "teamfighting": 70, "champion_pool": 71, - "mental_resilience": 69 + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Wilson", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-f286ef9c", - "match_name": "Asilah", - "full_name": "Asilah", + "transfer_listed": false, + "position": "Jungle", + "team_id": "team-f1da75bb", + "nationality": "CA", "date_of_birth": null, - "nationality": "MA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 72, - "macro_play": 68, - "consistency": 70, - "shotcalling": 66, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-c73c70b1", - "match_name": "Spirax", - "full_name": "Spirax", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Djalal Djiar", "attributes": { - "laning": 73, "mechanics": 74, - "discipline": 73, + "laning": 73, + "teamfighting": 72, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 72, "champion_pool": 71, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Spirax", + "position": "Mid", "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CA", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a3f8d2e0290a3c34.webp" }, { - "id": "player-4b331429", - "match_name": "Insanity", - "full_name": "Insanity", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 71, - "macro_play": 70, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 70 - }, - "condition": 100, + "id": "player-ca76ba82", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-13e6c8c4", - "match_name": "Zach", - "full_name": "Zach", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "condition": 100, + "full_name": "Jun-Hao \"Jonny\" Chen", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-86fca7ec", - "match_name": "Array", - "full_name": "Array", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 70, + "mechanics": 68, + "laning": 68, + "teamfighting": 70, + "macro_play": 68, + "consistency": 66, + "shotcalling": 65, + "champion_pool": 69, "discipline": 72, - "macro_play": 69, - "consistency": 69, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 72 + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aojune", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-0b449f07", - "match_name": "Spawn", - "full_name": "Spawn", + "contract_end": "2027-01-01", + "transfer_listed": false, + "position": "Mid", + "team_id": "team-e21b9ba3", + "nationality": "CN", "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 68, - "discipline": 68, - "macro_play": 69, - "consistency": 69, - "shotcalling": 70, - "teamfighting": 72, - "champion_pool": 71, - "mental_resilience": 68 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-99f3b280", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "wage": 0, + "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-3e2841d9", - "match_name": "Tactical", - "full_name": "Tactical", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 70, - "macro_play": 71, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 71 - }, - "condition": 100, + "id": "player-dea284e5", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-451540eb", - "match_name": "Levitate", - "full_name": "Levitate", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "condition": 100, + "full_name": "Noah Erikson", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Denathor", + "position": "Top", + "team_id": "team-f1da75bb", + "nationality": "US", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/7c3e551b657e9a77.webp" }, { - "id": "player-0c6004b3", - "match_name": "Hub", - "full_name": "Hub", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, + "career": [], + "id": "player-e16a590e", + "match_name": "Tomo", + "full_name": "Frank Lam", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "2001-01-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 71, - "mechanics": 70, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 72 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-10540476", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/417a86274e9e8309.webp" }, { - "id": "player-a526b14b", - "match_name": "Mobility", - "full_name": "Mobility", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 70, - "mechanics": 64, - "discipline": 74, - "macro_play": 71, - "consistency": 67, - "shotcalling": 71, - "teamfighting": 65, - "champion_pool": 71, - "mental_resilience": 69 - }, - "condition": 100, + "id": "player-eaf8e5f5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-f1da75bb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-18ecef90", - "match_name": "ScaryJerry", - "full_name": "ScaryJerry", - "date_of_birth": null, - "nationality": "AR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "condition": 100, + "full_name": "Connor Doyle", "attributes": { - "laning": 73, - "mechanics": 74, + "mechanics": 75, + "laning": 74, + "teamfighting": 75, + "macro_play": 74, + "consistency": 74, + "shotcalling": 74, + "champion_pool": 73, "discipline": 74, - "macro_play": 73, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 74 + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Artemis", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-6217144c", - "match_name": "Only35", - "full_name": "Only35", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 71, - "mechanics": 68, - "discipline": 70, - "macro_play": 68, - "consistency": 72, - "shotcalling": 65, - "teamfighting": 66, - "champion_pool": 69, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e21b9ba3", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, + "contract_end": "", + "market_value": 0, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": "1994-11-13", + "stats": {}, + "profile_image_url": "/player-photos/1cedf096ccec21dc.webp" }, { - "id": "player-11220bf4", - "match_name": "Keel", - "full_name": "Keel", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-fa25e8e1", + "match_name": "Blight", + "full_name": "Jacob Brayboy", + "position": "Top", + "team_id": "team-f1da75bb", + "nationality": "", + "date_of_birth": "2000-01-08", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 72, - "macro_play": 66, - "consistency": 70, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 70 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-fbf36012", - "match_name": "Redemption", - "full_name": "Redemption", - "date_of_birth": null, - "nationality": "CA", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jason Zhi", "attributes": { - "laning": 73, "mechanics": 74, - "discipline": 72, + "laning": 73, + "teamfighting": 73, "macro_play": 74, "consistency": 74, "shotcalling": 70, - "teamfighting": 73, "champion_pool": 70, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Redemption", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-10540476", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "CA", + "date_of_birth": "2004-10-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-bcfd99c7", - "match_name": "Stray", - "full_name": "Stray", - "date_of_birth": null, - "nationality": "EC", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 72, - "discipline": 72, - "macro_play": 72, - "consistency": 72, - "shotcalling": 66, - "teamfighting": 73, - "champion_pool": 69, - "mental_resilience": 71 - }, - "condition": 100, + "id": "player-fd8a94d1", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-ba8042f7", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-fd8a94d1", - "match_name": "Obstinatus", - "full_name": "Obstinatus", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "condition": 100, + "full_name": "Guilherme Jose Fernandes Morais Sousa Da Cruz", "attributes": { - "laning": 73, "mechanics": 74, - "discipline": 72, + "laning": 73, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 66, - "teamfighting": 74, "champion_pool": 71, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Obstinatus", + "position": "Support", "team_id": "team-73a32fd5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9fe817df", - "match_name": "Breezy", - "full_name": "Breezy", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 71, - "discipline": 73, - "macro_play": 73, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 72 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-31b92c52", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-1256560d", - "match_name": "Zyko", - "full_name": "Zyko", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 73, - "mechanics": 67, - "discipline": 73, - "macro_play": 69, - "consistency": 66, - "shotcalling": 71, - "teamfighting": 67, - "champion_pool": 69, - "mental_resilience": 70 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-fa242f1f", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-7b2bff6a", - "match_name": "Kim Down", - "full_name": "Kim Down", - "date_of_birth": null, - "nationality": "KR", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 68, - "mechanics": 68, - "discipline": 68, - "macro_play": 68, - "consistency": 68, - "shotcalling": 66, - "teamfighting": 68, - "champion_pool": 68, - "mental_resilience": 68 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f1da75bb", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "nationality": "PT", + "date_of_birth": "2002-12-13", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/cf2d0d4a2bcd74c0.webp" } ] } \ No newline at end of file diff --git a/data/players/nlc_players.json b/data/players/nlc_players.json index 045c94971..306be090f 100644 --- a/data/players/nlc_players.json +++ b/data/players/nlc_players.json @@ -3,1294 +3,2156 @@ "description": "NLC - 2026 Season", "players": [ { - "id": "player-6e60132e", - "match_name": "Virtuso", - "full_name": "Virtuso", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-01bf496d", + "match_name": "Fred (Frederik Jensen)", + "full_name": "Frederik Bisgaard Jensen", + "position": "Support", + "team_id": "team-794821d8", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-04f19ebe", + "match_name": "GertrudeThePony", + "full_name": "Laura Riches", + "position": "Top", + "team_id": "team-34ca921d", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/d71dab97800c2fc6.webp" + }, + { + "id": "player-0eae0b91", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5ef306d4", + "condition": 100, + "full_name": "Anselmi Rintanen", + "attributes": { + "mechanics": 63, + "laning": 62, + "teamfighting": 63, + "macro_play": 60, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 56, + "mental_resilience": 60 + }, + "match_name": "Simpli", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FI", + "date_of_birth": "2001-03-02", + "stats": {}, + "profile_image_url": "/player-photos/5dd4e4e0e1e15c75.webp" + }, + { + "id": "player-16793104", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cc3cd5f0", + "condition": 100, + "full_name": "Cast", + "attributes": { + "mechanics": 60, + "laning": 61, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Cast", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-1d39bc6b", + "match_name": "Ragnarr", + "full_name": "Bálint Réfi", + "position": "ADC", + "team_id": "team-390ad3b4", + "nationality": "", + "date_of_birth": "2002-05-03", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/c7b3cf521dbb827c.webp" + }, + { + "id": "player-20647fba", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Luke", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Luke", + "position": "Support", + "team_id": "team-e8c7e277", + "nationality": "DE", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-20c1419e", + "match_name": "Bjoernen", + "full_name": "Mikkel Bjørn", + "position": "ADC", + "team_id": "team-cc3cd5f0", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-2394a8b5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-390ad3b4", + "condition": 100, + "full_name": "Mike Petrus Franciscus Wils", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Furuy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "NL", + "date_of_birth": "2000-12-16", + "stats": {}, + "profile_image_url": "/player-photos/fe05e19c74d15427.webp" + }, + { + "career": [], + "id": "player-29c4c7b3", + "match_name": "Reje", + "full_name": "Victor Etlar Eriksen", + "position": "ADC", + "team_id": "team-34ca921d", + "nationality": "", + "date_of_birth": "1998-11-12", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/2a26cede8c62e187.webp" + }, + { + "id": "player-323bff20", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cc3cd5f0", + "condition": 100, + "full_name": "RustySniper", + "attributes": { + "mechanics": 61, + "laning": 61, + "teamfighting": 63, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 64, + "mental_resilience": 63 + }, + "match_name": "RustySniper", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-387f7050", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e8c7e277", + "condition": 100, + "full_name": "Boatish", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Boatish", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NO", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-3cdfbfc3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5ef306d4", + "condition": 100, + "full_name": "Juho Janhunen Wilhelm", + "attributes": { + "mechanics": 63, + "laning": 60, + "teamfighting": 63, + "macro_play": 62, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 56, + "mental_resilience": 60 + }, + "match_name": "Nille", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "FI", + "date_of_birth": "2000-08-16", + "stats": {}, + "profile_image_url": "/player-photos/9db3fe419010f3bd.webp" + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-45f60b44", + "match_name": "Slice", + "full_name": "Angelo Yousef", + "position": "Jungle", + "team_id": "team-9114115f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-466592d0", + "match_name": "Ugandan fighter", + "full_name": "Alexander Kærmose Ølholm", + "position": "Top", + "team_id": "team-794821d8", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-4c73fc27", + "match_name": "Goldenpenny", + "full_name": "Hugo Pilström", + "position": "ADC", + "team_id": "team-9114115f", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-4d4abaed", + "match_name": "Bus", + "full_name": "Andrias Rønne Olsen", + "position": "Top", + "team_id": "team-ee2bd46c", + "nationality": "", + "date_of_birth": "2002-10-10", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-50b43b39", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e8c7e277", + "condition": 100, + "full_name": "Miella", + "attributes": { + "mechanics": 60, + "laning": 61, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Miella", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-50c63988", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34ca921d", + "condition": 100, + "full_name": "Drututt", + "attributes": { + "mechanics": 55, + "laning": 61, + "teamfighting": 63, + "macro_play": 58, + "consistency": 58, + "shotcalling": 60, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 59 + }, + "match_name": "Drututt", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-54449e50", + "match_name": "Cha0s", + "full_name": "Alec Jablonski", + "position": "Top", + "team_id": "team-9114115f", + "nationality": "", + "date_of_birth": "2004-02-23", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-5790ae15", + "match_name": "Lyrokun", + "full_name": "Emre Kadioglu", + "position": "Support", + "team_id": "team-cc3cd5f0", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/5e35991d5b725c56.webp" + }, + { + "id": "player-5af2612a", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Guga Tsertsvadze", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Guggu", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-390ad3b4", + "nationality": "GE", + "date_of_birth": "2005-09-10", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-5bc8a957", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-794821d8", + "condition": 100, + "full_name": "Bobik", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 63, + "macro_play": 63, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Bobik", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-5dc120ca", + "match_name": "Ronaldo", + "full_name": "Ronaldo Betea", + "position": "Mid", + "team_id": "team-34ca921d", + "nationality": "", + "date_of_birth": "1998-12-23", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/3a5143311c5e067e.webp" + }, + { + "career": [], + "id": "player-5e2304cb", + "match_name": "KKT", + "full_name": "Karim Aubineau", + "position": "Jungle", + "team_id": "team-34ca921d", + "nationality": "", + "date_of_birth": "1997-03-19", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b9af2a18847067e8.webp" + }, + { + "career": [], + "id": "player-61df48a6", + "match_name": "Ag0nyPain", + "full_name": "Sorth Jeppe Nikolaj", + "position": "Mid", + "team_id": "team-794821d8", + "nationality": "", "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/82c7c3a5cfc0d649.webp" + }, + { + "id": "player-6576b32a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1cee59ca", + "condition": 100, + "full_name": "Hunt", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 60, + "laning": 61, + "teamfighting": 60, "macro_play": 58, - "consistency": 60, + "consistency": 61, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 60, + "discipline": 63, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Hunt", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-fa1bdd27", - "match_name": "Elijah", - "full_name": "Elijah", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 60, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 - }, - "condition": 100, + "id": "player-666cfde3", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Umut Metin", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 67, + "macro_play": 66, + "consistency": 66, + "shotcalling": 59, + "champion_pool": 64, + "discipline": 67, + "mental_resilience": 67 + }, + "match_name": "Soul", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-ee2bd46c", + "nationality": "TR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-c0098a11", - "match_name": "Leks", - "full_name": "Leks", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-6b2b0bd7", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Arlet Semre", "attributes": { - "laning": 58, "mechanics": 60, - "discipline": 56, - "macro_play": 62, - "consistency": 60, - "shotcalling": 55, + "laning": 58, "teamfighting": 58, + "macro_play": 60, + "consistency": 62, + "shotcalling": 56, "champion_pool": 60, + "discipline": 56, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1cee59ca", - "traits": [], - "contract_end": null, + "match_name": "Boltox", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-5ef306d4", + "nationality": "EE", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-6e60132e", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-78aca3aa", + "condition": 100, + "full_name": "Magnus Bonde", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 58, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 61 + }, + "match_name": "Virtuso", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DK", + "date_of_birth": "2002-06-04", + "stats": {}, + "profile_image_url": "/player-photos/4a957148c6bdab6a.webp" }, { - "id": "player-761a0b7d", - "match_name": "Cyclops", - "full_name": "Cyclops", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-74a4ab05", + "match_name": "Luis", + "full_name": "Luis Busch", + "position": "Support", + "team_id": "team-9114115f", + "nationality": "", "date_of_birth": null, - "nationality": "FI", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-74f5d00b", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Raymond Tsang", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 56, + "laning": 62, "teamfighting": 60, + "macro_play": 61, + "consistency": 59, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 62 + "discipline": 56, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "traits": [], - "contract_end": null, + "match_name": "Kasing", + "position": "Support", + "team_id": "team-34ca921d", + "nationality": "GB", + "date_of_birth": "1993-12-08", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/34d9f8769fbb1110.webp" }, { - "id": "player-e1768c84", - "match_name": "MrTucker", - "full_name": "MrTucker", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-761a0b7d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e8c7e277", + "condition": 100, + "full_name": "Cyclops", "attributes": { + "mechanics": 60, "laning": 60, - "mechanics": 62, - "discipline": 64, - "macro_play": 60, + "teamfighting": 60, + "macro_play": 62, "consistency": 60, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 60, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Cyclops", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "FI", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-861c69a5", - "match_name": "Forsen", - "full_name": "Forsen", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], "attributes": { - "laning": 54, - "mechanics": 52, - "discipline": 63, - "macro_play": 52, - "consistency": 52, - "shotcalling": 56, - "teamfighting": 52, - "champion_pool": 57, - "mental_resilience": 59 + "mechanics": 68, + "laning": 68, + "teamfighting": 70, + "macro_play": 69, + "consistency": 69, + "shotcalling": 72, + "champion_pool": 71, + "discipline": 67, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": null, + "id": "player-a66e7a33", + "match_name": "Yakkey", + "full_name": "Yakkey", + "position": "ADC", + "team_id": "team-78aca3aa", + "nationality": "RO", + "date_of_birth": "January 14, 2005", "wage": 0, "market_value": 0, - "stats": {}, "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 62, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/1a8b9440c4e7cb7d.png" }, { - "id": "player-6955c32b", - "match_name": "Lulas", - "full_name": "Lulas", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-818bad5d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5ef306d4", + "condition": 100, + "full_name": "Janne Heikkonen", "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, + "mechanics": 60, + "laning": 61, + "teamfighting": 58, "macro_play": 58, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 61, - "mental_resilience": 60 + "discipline": 59, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ee2bd46c", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Dibu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "FI", + "date_of_birth": "1999-08-02", + "stats": {}, + "profile_image_url": "/player-photos/1e6cd77d9233782c.webp" }, { - "id": "player-16793104", - "match_name": "Cast", - "full_name": "Cast", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-81d19d7d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-390ad3b4", + "condition": 100, + "full_name": "Petr Fojtík", "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 59, - "mental_resilience": 63 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Bobista", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "CZ", + "date_of_birth": "2002-07-03", + "stats": {}, + "profile_image_url": "/player-photos/bc356211b53a174a.webp" }, { - "id": "player-a47efccf", - "match_name": "Mansterninja", - "full_name": "Mansterninja", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-85b26719", + "match_name": "Spiderlair", + "full_name": "Ludvig Sällberg", + "position": "Jungle", + "team_id": "team-cc3cd5f0", + "nationality": "", "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 63 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-861c69a5", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-34ca921d", + "condition": 100, + "full_name": "Forsen", + "attributes": { + "mechanics": 52, + "laning": 54, + "teamfighting": 52, + "macro_play": 52, + "consistency": 52, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 63, + "mental_resilience": 59 + }, + "match_name": "Forsen", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 62, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-8eae8b20", - "match_name": "pykene", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-794821d8", + "condition": 100, "full_name": "pykene", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 63, + "laning": 62, + "teamfighting": 62, "macro_play": 62, "consistency": 62, "shotcalling": 55, - "teamfighting": 62, "champion_pool": 60, + "discipline": 63, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "pykene", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-81d19d7d", - "match_name": "bobista", - "full_name": "bobista", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-4b249844", - "match_name": "Noodle", - "full_name": "Noodle", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 58, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1cee59ca", - "traits": [], - "contract_end": null, + "career": [], + "id": "player-95d0b2ad", + "match_name": "JayJay", + "full_name": "Jakub Pawlicki", + "position": "Mid", + "team_id": "team-ee2bd46c", + "nationality": "", + "date_of_birth": "2003-09-29", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/dde6d3164ecd9471.webp" }, { - "id": "player-387f7050", - "match_name": "Boatish", - "full_name": "Boatish", + "career": [], + "id": "player-970d7ba9", + "match_name": "MadsF", + "full_name": "Mads Færgemann", + "position": "ADC", + "team_id": "team-794821d8", + "nationality": "", "date_of_birth": null, - "nationality": "NO", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 60 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/9b963562a34f0312.webp" }, { - "id": "player-5bc8a957", - "match_name": "Bobik", - "full_name": "Bobik", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-9fe1afb7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ee2bd46c", + "condition": 100, + "full_name": "Mark Wegner", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 63, + "laning": 62, + "teamfighting": 61, "macro_play": 63, "consistency": 62, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 60, + "discipline": 64, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "CLEARS", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-b96fc82a", - "match_name": "Scuffed", - "full_name": "Scuffed", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-a47efccf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cc3cd5f0", + "condition": 100, + "full_name": "Måns Hedqvist", "attributes": { - "laning": 61, "mechanics": 60, - "discipline": 61, - "macro_play": 58, + "laning": 60, + "teamfighting": 62, + "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 59, - "mental_resilience": 61 + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Mansterninja", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "SE", + "date_of_birth": "2006-05-11", + "stats": {}, + "profile_image_url": null }, { - "id": "player-2394a8b5", - "match_name": "Furuy", - "full_name": "Furuy", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-a8d3d218", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-390ad3b4", + "condition": 100, + "full_name": "Mafro", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Mafro", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-50b43b39", - "match_name": "Miella", - "full_name": "Miella", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-b1c31131", + "match_name": "Hankat", + "full_name": "Kasper Sørensen", + "position": "Jungle", + "team_id": "team-78aca3aa", + "nationality": "", "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 60, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 60 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-b5fa187b", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-e8c7e277", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-cc3cd5f0", + "condition": 100, + "full_name": "Royeq", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 61, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 62 + }, + "match_name": "Royeq", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-793b651d", - "match_name": "Exile1", - "full_name": "Exile1", - "date_of_birth": null, - "nationality": "RO", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b6601ae7", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Rychly", "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 62, - "macro_play": 60, - "consistency": 60, + "mechanics": 54, + "laning": 52, + "teamfighting": 55, + "macro_play": 55, + "consistency": 59, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 + "champion_pool": 56, + "discipline": 58, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-78aca3aa", - "traits": [], - "contract_end": null, + "match_name": "Rychly", + "position": "Support", + "team_id": "team-34ca921d", + "nationality": "DE", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-b79af3ae", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5ef306d4", + "condition": 100, + "full_name": "Aleksi Merta", + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 56, + "macro_play": 58, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 59 + }, + "match_name": "Kehvo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "FI", + "date_of_birth": "1998-03-12", + "stats": {}, + "profile_image_url": "/player-photos/05feaa7d19d4a98e.webp" }, { - "id": "player-9fe1afb7", - "match_name": "CLEARS", - "full_name": "CLEARS", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-b8640c83", + "match_name": "Unicow", + "full_name": "Simon Larsson", + "position": "Mid", + "team_id": "team-cc3cd5f0", + "nationality": "", "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 64, - "macro_play": 63, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 63 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-b96fc82a", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, + "team_id": "team-78aca3aa", + "condition": 100, + "full_name": "Max Løwe Skovfoged Scherer", + "attributes": { + "mechanics": 60, + "laning": 61, + "teamfighting": 58, + "macro_play": 58, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "Scuffed", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DK", + "date_of_birth": "2002-09-29", + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-bf285977", + "match_name": "Kamito", + "full_name": "Gabriel Scholtz", + "position": "ADC", + "team_id": "team-ee2bd46c", + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-c06a52ea", - "match_name": "Pobelter", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34ca921d", + "condition": 100, "full_name": "Pobelter", - "date_of_birth": null, - "nationality": "US", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 58, "mechanics": 56, - "discipline": 58, + "laning": 58, + "teamfighting": 58, "macro_play": 56, "consistency": 56, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 57, + "discipline": 58, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Pobelter", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "US", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-d162dedb", - "match_name": "Furby", - "full_name": "Furby", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-c7b3425c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-794821d8", + "condition": 100, + "full_name": "krabbypatty", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 60, - "macro_play": 61, - "consistency": 60, - "shotcalling": 56, + "laning": 62, "teamfighting": 62, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 62 + "discipline": 63, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "krabbypatty", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-c7b3425c", - "match_name": "krabbypatty", - "full_name": "krabbypatty", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-cf4c2bf3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Wasey", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 63, + "laning": 62, + "teamfighting": 62, "macro_play": 62, "consistency": 62, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 60, - "mental_resilience": 64 + "discipline": 64, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Wasey", + "position": "Support", "team_id": "team-794821d8", - "traits": [], - "contract_end": null, + "nationality": "GB", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-b5fa187b", - "match_name": "Royeq", - "full_name": "Royeq", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-d162dedb", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-9114115f", + "condition": 100, + "full_name": "Casper Sedergren", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 62, + "laning": 62, + "teamfighting": 62, + "macro_play": 61, + "consistency": 60, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 60, + "discipline": 60, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Furby", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "SE", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/530b65990c2b5f7a.webp" + }, + { "career": [], - "training_focus": null, + "loan_listed": false, "transfer_listed": false, + "id": "player-d442b787", + "match_name": "NoName", + "full_name": "William Jones", + "position": "Jungle", + "team_id": "team-390ad3b4", + "nationality": "", + "date_of_birth": "2003-08-15", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/e43392e4969339a5.webp" + }, + { + "id": "player-d4c325a9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-34ca921d", + "condition": 100, + "full_name": "Jackspektra", + "attributes": { + "mechanics": 53, + "laning": 58, + "teamfighting": 53, + "macro_play": 54, + "consistency": 54, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 57, + "mental_resilience": 57 + }, + "match_name": "Jackspektra", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 62, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "NO", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-a8d3d218", - "match_name": "Mafro", - "full_name": "Mafro", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-d6762106", + "match_name": "Markus", + "full_name": "Markus Westerberg", + "position": "Jungle", + "team_id": "team-794821d8", + "nationality": "", "date_of_birth": null, - "nationality": "HR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-de5955c1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-390ad3b4", + "condition": 100, + "full_name": "Kevin Westerbacka", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Mishi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "SE", + "date_of_birth": "2001-12-16", + "stats": {}, + "profile_image_url": "/player-photos/160a1bc0f090d489.webp" + }, + { + "id": "player-e1768c84", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-794821d8", + "condition": 100, + "full_name": "MrTucker", + "attributes": { + "mechanics": 62, + "laning": 60, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "MrTucker", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "US", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6576b32a", - "match_name": "Hunt", - "full_name": "Hunt", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 63, - "macro_play": 58, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1cee59ca", - "traits": [], - "contract_end": null, + "career": [], + "id": "player-e4e77fb5", + "match_name": "Erolle", + "full_name": "Erol Bajramovic", + "position": "Mid", + "team_id": "team-390ad3b4", + "nationality": "", + "date_of_birth": "2001-08-14", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/bbbd1a7f55701c63.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-e5d6d739", + "match_name": "Kakarot", + "full_name": "Muhammet Yusuf Karakas", + "position": "ADC", + "team_id": "team-78aca3aa", + "nationality": "", + "date_of_birth": "2006-03-09", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/54b3b9bd693eadfa.webp" }, { "id": "player-e9bce2b7", - "match_name": "Sloppy Walrus", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e8c7e277", + "condition": 100, "full_name": "Sloppy Walrus", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 64, + "laning": 60, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 60, + "discipline": 64, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e8c7e277", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Sloppy Walrus", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "NL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-d4c325a9", - "match_name": "Jackspektra", - "full_name": "Jackspektra", - "date_of_birth": null, - "nationality": "NO", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f54c039a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-794821d8", + "condition": 100, + "full_name": "Sebrej", "attributes": { - "laning": 58, - "mechanics": 53, - "discipline": 57, - "macro_play": 54, - "consistency": 54, + "mechanics": 62, + "laning": 62, + "teamfighting": 63, + "macro_play": 62, + "consistency": 62, "shotcalling": 56, - "teamfighting": 53, - "champion_pool": 57, - "mental_resilience": 57 + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-34ca921d", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Sebrej", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 62, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "GB", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-323bff20", - "match_name": "RustySniper", - "full_name": "RustySniper", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-fa1bdd27", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cc3cd5f0", + "condition": 100, + "full_name": "Elijah", "attributes": { - "laning": 61, - "mechanics": 61, - "discipline": 64, + "mechanics": 62, + "laning": 63, + "teamfighting": 63, "macro_play": 62, - "consistency": 62, + "consistency": 63, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 59, - "mental_resilience": 63 + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cc3cd5f0", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Elijah", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-de5955c1", - "match_name": "Mishi", - "full_name": "Mishi", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-390ad3b4", - "traits": [], - "contract_end": null, + "career": [], + "id": "player-fc3baa7b", + "match_name": "Szygenda", + "full_name": "Mathias Jensen", + "position": "Top", + "team_id": "team-34ca921d", + "nationality": "", + "date_of_birth": "2001-04-14", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/97a6f9e3a96098f8.webp" }, { - "id": "player-f54c039a", - "match_name": "Sebrej", - "full_name": "Sebrej", - "date_of_birth": null, - "nationality": "GB", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-fdc5b065", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Patryk Czerniawski", "attributes": { - "laning": 62, - "mechanics": 62, - "discipline": 63, - "macro_play": 62, - "consistency": 62, - "shotcalling": 56, + "mechanics": 63, + "laning": 64, "teamfighting": 63, + "macro_play": 64, + "consistency": 63, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 63 + "discipline": 56, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-794821d8", - "traits": [], - "contract_end": null, + "match_name": "Uden", + "position": "Support", + "team_id": "team-78aca3aa", + "nationality": "PL", + "date_of_birth": "2002-02-14", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/62d7d32bdb0198ce.webp" } ] } \ No newline at end of file diff --git a/data/players/pcs_players.json b/data/players/pcs_players.json index abe50a317..381b32174 100644 --- a/data/players/pcs_players.json +++ b/data/players/pcs_players.json @@ -3,1165 +3,1701 @@ "description": "PCS - 2026 Season", "players": [ { - "id": "player-617556d7", - "match_name": "2274", - "full_name": "2274", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": "/player-photos/74f1a3c1.webp", - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], - "attributes": { - "laning": 72, - "mechanics": 70, - "discipline": 74, - "macro_play": 69, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 70, - "mental_resilience": 74 - }, - "condition": 100, + "id": "player-0a8e4e3e", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-43c10e12", - "match_name": "Pungyeon", - "full_name": "Pungyeon", - "date_of_birth": "2001-10-24", - "nationality": "KR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "team_id": "team-f8c7a360", + "condition": 100, + "full_name": "Chau Shu Tak", "attributes": { + "mechanics": 72, "laning": 74, - "mechanics": 70, - "discipline": 77, + "teamfighting": 72, "macro_play": 72, - "consistency": 72, - "shotcalling": 69, - "teamfighting": 70, + "consistency": 74, + "shotcalling": 70, "champion_pool": 71, - "mental_resilience": 75 + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "YSKM", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "HK", + "date_of_birth": "2004-02-11", "stats": {}, + "profile_image_url": "/player-photos/e748135ed915a1de.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-0fb5ec08", + "match_name": "Cid", + "full_name": "Lee Yong-jun", + "position": "Mid", + "team_id": "team-9c289ca5", + "nationality": "", + "date_of_birth": "2003-01-30", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-662702f1", - "match_name": "Zkai", - "full_name": "Zkai", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-12737d9e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4b825a93", + "condition": 100, + "full_name": "Lin Wei-Zhe", "attributes": { + "mechanics": 70, "laning": 72, - "mechanics": 74, - "discipline": 69, + "teamfighting": 70, "macro_play": 72, - "consistency": 72, + "consistency": 71, "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 67, - "mental_resilience": 68 + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Weizhe", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TW", + "date_of_birth": "2001-09-23", + "stats": {}, + "profile_image_url": "/player-photos/9279ff2ff9916762.webp" }, { - "id": "player-90cc8ac0", - "match_name": "Tracy", - "full_name": "Tracy", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-2af0a675", + "match_name": "Raon", + "full_name": "Ahn Jae-hyeong", + "position": "Jungle", + "team_id": "team-c4a0b95f", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 71, - "mechanics": 69, - "discipline": 74, - "macro_play": 69, - "consistency": 69, - "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 67, - "mental_resilience": 72 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-411e110b", + "match_name": "TNS", + "full_name": "Huang Po-Wei", + "position": "Support", + "team_id": "team-9c289ca5", + "nationality": "", + "date_of_birth": "2002-08-03", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/90987ff880f74255.webp" + }, + { + "id": "player-43c10e12", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Pungyeon", + "attributes": { + "mechanics": 70, + "laning": 74, + "teamfighting": 70, + "macro_play": 72, + "consistency": 72, + "shotcalling": 69, + "champion_pool": 71, + "discipline": 77, + "mental_resilience": 75 + }, + "match_name": "Pungyeon", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "KR", + "date_of_birth": "2001-10-24", "stats": {}, + "profile_image_url": null + }, + { + "id": "player-45c57bc5", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f8c7a360", + "condition": 100, + "full_name": "Tsang Tak Lam", + "attributes": { + "mechanics": 71, + "laning": 70, + "teamfighting": 71, + "macro_play": 70, + "consistency": 70, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "Holo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HK", + "date_of_birth": "2000-05-04", + "stats": {}, + "profile_image_url": "/player-photos/8ebf0e0c8c49aec7.webp" }, { "id": "player-4f130fde", - "match_name": "Yuhe", - "full_name": "Yuhe", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-94671303", + "condition": 100, + "full_name": "Huang Xing-Wei", "attributes": { - "laning": 70, "mechanics": 71, - "discipline": 68, + "laning": 70, + "teamfighting": 68, "macro_play": 71, "consistency": 70, "shotcalling": 71, - "teamfighting": 68, "champion_pool": 67, + "discipline": 68, "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Yuhe", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TW", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-66cc093a", - "match_name": "Roger", - "full_name": "Roger", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-4f6c9d3a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0df06611", + "condition": 100, + "full_name": "Guo Qi-Fan", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, + "shotcalling": 70, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Tianzhen", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "CN", + "date_of_birth": "2004-09-13", + "stats": {}, + "profile_image_url": "/player-photos/40a880b2717d7afa.webp" }, { - "id": "player-8373ac51", - "match_name": "MnM", - "full_name": "MnM", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-5a5139d7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-74d3c7fe", + "condition": 100, + "full_name": "K B", "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 70, + "mechanics": 70, + "laning": 70, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 71 + "champion_pool": 71, + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, + "match_name": "K B", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "HK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-5e6713da", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-c4a0b95f", + "condition": 100, + "full_name": "Hsu Ji-Xuan", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Hedonist", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TW", + "date_of_birth": null, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-5ece99f6", + "match_name": "Dotmm", + "full_name": "Chou Tsu-Yu", + "position": "ADC", + "team_id": "team-9c289ca5", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-a433a4f0", - "match_name": "Sorrymbggff", - "full_name": "Sorrymbggff", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-5f771268", + "match_name": "Mese", + "full_name": "Chiu Hsu-Cheng", + "position": "Support", + "team_id": "team-86604284", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 70, - "macro_play": 72, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 71 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "traits": [], - "contract_end": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-607fa235", + "match_name": "MadDogg9", + "full_name": "Sham Tsz Chung Kelvin", + "position": "ADC", + "team_id": "team-33bed81a", + "nationality": "", + "date_of_birth": "2004-04-17", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/adc05f779791eaca.webp" + }, + { + "id": "player-617556d7", "career": [], - "training_focus": null, - "transfer_listed": false, + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Chiu Chang-En", + "attributes": { + "mechanics": 70, + "laning": 72, + "teamfighting": 70, + "macro_play": 69, + "consistency": 72, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "2274", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2028-11-21", + "potential_base": 76, + "transfer_listed": false, + "position": "Support", + "team_id": "team-94671303", + "nationality": "TW", + "date_of_birth": "2008-04-21", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/3d79107d6da8eec5.webp" }, { - "id": "player-0a8e4e3e", - "match_name": "YSKM", - "full_name": "YSKM", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-624f5fc2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0df06611", + "condition": 100, + "full_name": "Lin You-Ju", "attributes": { + "mechanics": 74, "laning": 74, - "mechanics": 72, - "discipline": 71, - "macro_play": 72, + "teamfighting": 74, + "macro_play": 74, "consistency": 74, - "shotcalling": 70, - "teamfighting": 72, + "shotcalling": 71, "champion_pool": 71, - "mental_resilience": 71 + "discipline": 72, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Hermes", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TW", + "date_of_birth": "2006-12-31", + "stats": {}, + "profile_image_url": "/player-photos/9d6da0b57cfa12c4.webp" }, { - "id": "player-12737d9e", - "match_name": "Weizhe", - "full_name": "Weizhe", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-662702f1", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-94671303", + "condition": 100, + "full_name": "Yang Li-Kai", "attributes": { + "mechanics": 74, "laning": 72, - "mechanics": 70, - "discipline": 71, + "teamfighting": 71, "macro_play": 72, - "consistency": 71, + "consistency": 72, "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 72 + "champion_pool": 67, + "discipline": 69, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Zkai", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-18", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TW", + "date_of_birth": "2004-06-18", "stats": {}, + "profile_image_url": "/player-photos/c95108d93791ef3e.webp" + }, + { + "id": "player-66cc093a", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c4a0b95f", + "condition": 100, + "full_name": "Fu Po-Yu", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "Roger", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "TW", + "date_of_birth": "2001-09-09", + "stats": {}, + "profile_image_url": null }, { - "id": "player-b1917c18", - "match_name": "Cedric", - "full_name": "Cedric", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-741e12b4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f8c7a360", + "condition": 100, + "full_name": "Ng Cheuk Lun Jason", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, + "mechanics": 71, + "laning": 72, + "teamfighting": 68, + "macro_play": 71, + "consistency": 72, "shotcalling": 70, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 73 + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 71 }, - "condition": 100, + "match_name": "Pretender", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2025-11-17", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "HK", + "date_of_birth": "2001-03-11", + "stats": {}, + "profile_image_url": "/player-photos/8f4d6958b5f57cd1.webp" + }, + { + "id": "player-7ced2842", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-4b825a93", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "RedamnTion", + "attributes": { + "mechanics": 70, + "laning": 71, + "teamfighting": 71, + "macro_play": 70, + "consistency": 71, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 71, + "mental_resilience": 71 + }, + "match_name": "RedamnTion", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-74d3c7fe", + "nationality": "HK", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-741e12b4", - "match_name": "Pretender", - "full_name": "Pretender", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-814c6c95", + "match_name": "ANKS", + "full_name": "Lin Sheng-Syin", + "position": "Jungle", + "team_id": "team-33bed81a", + "nationality": "", "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 68, - "macro_play": 71, - "consistency": 72, - "shotcalling": 70, - "teamfighting": 68, - "champion_pool": 71, - "mental_resilience": 71 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "id": "player-821c2f46", + "match_name": "Keres", + "full_name": "Law Chi Kit", + "position": "Support", + "team_id": "team-33bed81a", + "nationality": "", + "date_of_birth": "1999-09-15", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/77318ea13aea90c0.webp" + }, + { + "id": "player-8373ac51", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f8c7a360", + "condition": 100, + "full_name": "Wong Ka Chun", + "attributes": { + "mechanics": 71, + "laning": 72, + "teamfighting": 70, + "macro_play": 70, + "consistency": 70, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "MnM", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2025-11-17", + "market_value": 0, "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HK", + "date_of_birth": "2000-09-19", + "stats": {}, + "profile_image_url": "/player-photos/c379fdcb8dd78f8e.webp" }, { - "id": "player-f6d6df03", - "match_name": "xin", - "full_name": "xin", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-8ca7a86d", + "match_name": "XI LAI", + "full_name": "Chang Peng", + "position": "Top", + "team_id": "team-86604284", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 70, - "mechanics": 71, - "discipline": 72, - "macro_play": 70, - "consistency": 68, - "shotcalling": 71, - "teamfighting": 68, - "champion_pool": 69, - "mental_resilience": 71 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-90cc8ac0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-94671303", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Lin Hong-Lin", + "attributes": { + "mechanics": 69, + "laning": 71, + "teamfighting": 70, + "macro_play": 69, + "consistency": 69, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 74, + "mental_resilience": 72 + }, + "match_name": "Tracy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-17", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 76, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TW", + "date_of_birth": "2007-08-16", + "stats": {}, + "profile_image_url": "/player-photos/742d67dd22c15a97.webp" }, { "id": "player-952c737d", - "match_name": "Hasu7", - "full_name": "Hasu7", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0df06611", + "condition": 100, + "full_name": "Hong Bing-You", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 72, + "laning": 74, + "teamfighting": 73, "macro_play": 73, "consistency": 74, "shotcalling": 71, - "teamfighting": 73, "champion_pool": 71, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Hasu7", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TW", + "date_of_birth": "2006-10-20", "stats": {}, + "profile_image_url": "/player-photos/da2f3ff5f7b426a3.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-9fee5fba", + "match_name": "Listo", + "full_name": "Kang Woo-seok", + "position": "Top", + "team_id": "team-33bed81a", + "nationality": "", + "date_of_birth": "2005-03-09", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-45c57bc5", - "match_name": "Holo", - "full_name": "Holo", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-a103d8c6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-74d3c7fe", + "condition": 100, + "full_name": "Micinb", "attributes": { + "mechanics": 70, "laning": 70, - "mechanics": 71, - "discipline": 70, + "teamfighting": 71, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 71, "champion_pool": 71, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, + "match_name": "Micinb", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "HK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-a433a4f0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-74d3c7fe", + "condition": 100, + "full_name": "Sorrymbggff", + "attributes": { + "mechanics": 73, + "laning": 72, + "teamfighting": 74, + "macro_play": 72, + "consistency": 73, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "Sorrymbggff", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TW", + "date_of_birth": null, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-ad347714", + "match_name": "Masuhana", + "full_name": "Tsai Ya-Chun", + "position": "Top", + "team_id": "team-33bed81a", + "nationality": "", + "date_of_birth": "2005-12-08", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-4f6c9d3a", - "match_name": "Tianzhen", - "full_name": "Tianzhen", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b1917c18", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4b825a93", + "condition": 100, + "full_name": "Liu Yu-Yang", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 70, + "mechanics": 73, + "laning": 73, "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "macro_play": 73, + "consistency": 73, + "shotcalling": 70, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Cedric", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "CN", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-5a5139d7", - "match_name": "ORS K B", - "full_name": "ORS K B", + "career": [], + "id": "player-b39a0917", + "match_name": "Rbow", + "full_name": "Zheng Kang", + "position": "Top", + "team_id": "team-9c289ca5", + "nationality": "", "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, - "teamfighting": 70, - "champion_pool": 71, - "mental_resilience": 72 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/b91bca56fdeb80ce.webp" + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-b636d52a", + "match_name": "Leowei", + "full_name": "Chang Yen-Wei", + "position": "Support", + "team_id": "team-94671303", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-a103d8c6", - "match_name": "ORS Micinb", - "full_name": "ORS Micinb", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-b7c3c0fd", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mak Chun Pan", "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 70, - "macro_play": 70, - "consistency": 70, - "shotcalling": 70, + "mechanics": 71, + "laning": 72, "teamfighting": 71, + "macro_play": 72, + "consistency": 73, + "shotcalling": 70, "champion_pool": 71, + "discipline": 70, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "traits": [], - "contract_end": null, + "match_name": "Kingpo54", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-f8c7a360", + "nationality": "HK", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-624f5fc2", - "match_name": "Hermes", - "full_name": "Hermes", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-c28ffe5a", + "match_name": "Zartheit1", + "full_name": "Lee Lun-Fung", + "position": "Top", + "team_id": "team-33bed81a", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-5e6713da", - "match_name": "Hedonist", - "full_name": "Hedonist", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-c4fa386e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c4a0b95f", + "condition": 100, + "full_name": "Wang Jian-Qiao", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "X1aoCHiao", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TW", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-c64cab9e", - "match_name": "ORS ner4", - "full_name": "ORS ner4", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-74d3c7fe", + "condition": 100, + "full_name": "ner4", "attributes": { - "laning": 70, "mechanics": 70, - "discipline": 74, + "laning": 70, + "teamfighting": 70, "macro_play": 70, "consistency": 70, "shotcalling": 70, - "teamfighting": 70, "champion_pool": 70, + "discipline": 74, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-74d3c7fe", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "ner4", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "HK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-cba7992b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4b825a93", + "condition": 100, + "full_name": "Chien Mao-An", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 72 + }, "match_name": "1116", - "full_name": "1116", - "date_of_birth": null, + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", "nationality": "TW", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", + "date_of_birth": "2002-11-16", + "stats": {}, + "profile_image_url": "/player-photos/ec3302f96b1c6831.webp" + }, + { + "id": "player-cddaa544", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-4b825a93", + "condition": 100, + "full_name": "Chen Chung-En", + "attributes": { + "mechanics": 73, + "laning": 71, + "teamfighting": 74, + "macro_play": 73, + "consistency": 73, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 72 + }, + "match_name": "Prage", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "TW", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ce03a0b90b3a121b.webp" + }, + { + "career": [], + "id": "player-d31effef", + "match_name": "Feng55", + "full_name": "Lin Hsiu-Yuan", + "position": "Support", + "team_id": "team-9c289ca5", + "nationality": "", + "date_of_birth": "1998-01-11", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 71, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-4b825a93", - "traits": [], - "contract_end": null, + "stats": {}, + "profile_image_url": "/player-photos/b9216c950b17772d.webp" + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-d462f3cc", + "match_name": "Killer2", + "full_name": "Chang Cheng-Yu", + "position": "Jungle", + "team_id": "team-9c289ca5", + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-da5d0a37", + "match_name": "Lucifer", + "full_name": "Kim Jae-won", + "position": "ADC", + "team_id": "team-86604284", + "nationality": "", + "date_of_birth": "2005-11-06", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-cddaa544", - "match_name": "Prage", - "full_name": "Prage", - "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "career": [], + "id": "player-dd854ce7", + "match_name": "Zsouaia", + "full_name": "Liu Yu-Chen", + "position": "Mid", + "team_id": "team-c4a0b95f", + "nationality": "", + "date_of_birth": "2004-02-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 71, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 73, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/780a59233937aa68.webp" + }, + { + "id": "player-e0d9429d", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-4b825a93", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "En", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "En", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-0df06611", + "nationality": "TW", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-e478bb1d", + "match_name": "BuLuKaKa", + "full_name": "Leong Ka Kit", + "position": "Mid", + "team_id": "team-33bed81a", + "nationality": "", + "date_of_birth": "2004-05-10", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/bbb6b6c9a3ac61b9.webp" }, { "id": "player-e66f4478", - "match_name": "Xzz", - "full_name": "Xzz", - "date_of_birth": null, - "nationality": "CN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0df06611", + "condition": 100, + "full_name": "Liu Zhu", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 72, + "laning": 74, + "teamfighting": 74, "macro_play": 73, "consistency": 74, "shotcalling": 70, - "teamfighting": 74, "champion_pool": 71, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Xzz", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CN", + "date_of_birth": "2002-01-20", + "stats": {}, + "profile_image_url": "/player-photos/47fbe8bb7d4d0496.webp" }, { - "id": "player-c4fa386e", - "match_name": "X1aoCHiao", - "full_name": "X1aoCHiao", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-ef608bed", + "match_name": "Yuji ", + "full_name": "Yang Xi-Qi", + "position": "Top", + "team_id": "team-86604284", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/87b7b8dfedec07b5.webp" + }, + { + "id": "player-f6d6df03", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-c4a0b95f", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-94671303", + "condition": 100, + "full_name": "Ye Shang-Hsin", + "attributes": { + "mechanics": 71, + "laning": 70, + "teamfighting": 68, + "macro_play": 70, + "consistency": 68, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 71 + }, + "match_name": "Xin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-18", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "TW", + "date_of_birth": "2004-11-11", + "stats": {}, + "profile_image_url": "/player-photos/eac2ad57d7247ea8.webp" }, { - "id": "player-b7c3c0fd", - "match_name": "kingpo54", - "full_name": "kingpo54", - "date_of_birth": null, - "nationality": "HK", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-f8472176", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Liu Jun", "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 70, + "mechanics": 73, + "laning": 73, + "teamfighting": 74, "macro_play": 72, - "consistency": 73, + "consistency": 72, "shotcalling": 70, - "teamfighting": 71, - "champion_pool": 71, - "mental_resilience": 71 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f8c7a360", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, + "match_name": "Ashlomailma", + "position": "Support", + "team_id": "team-4b825a93", + "nationality": "CN", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/dc17abbe4dc1363a.webp" }, { - "id": "player-e0d9429d", - "match_name": "En", - "full_name": "En", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-f8631e8c", + "match_name": "Zoey", + "full_name": "Chen Po-Yen", + "position": "Mid", + "team_id": "team-86604284", + "nationality": "", "date_of_birth": null, - "nationality": "TW", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0df06611", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 99, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-fa2f7fef", + "match_name": "Acheron", + "full_name": "Hu Ting-Yeh", + "position": "Support", + "team_id": "team-c4a0b95f", + "nationality": "", + "date_of_birth": "2004-07-29", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/bec0e7db08b5faca.webp" + }, + { + "career": [], + "id": "player-fecdc32b", + "match_name": "Epic", + "full_name": "Wu Chun Hin", + "position": "Jungle", + "team_id": "team-86604284", + "nationality": "", + "date_of_birth": "1998-10-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/d5f19e90bdade696.webp" } ] } \ No newline at end of file diff --git a/data/players/prime_league_players.json b/data/players/prime_league_players.json new file mode 100644 index 000000000..7dbc0dce5 --- /dev/null +++ b/data/players/prime_league_players.json @@ -0,0 +1,2056 @@ +{ + "description": "Prime League - 2026 Season", + "name": "Prime League Players", + "players": [ + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Dome", + "id": "player-5ccc5ade", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Dome", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 54, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1cba5c67", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Fooneses", + "id": "player-e583f428", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Fooneses", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Mid", + "potential_base": 77, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-f3b86137", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "January 19, 2006", + "fitness": 100, + "full_name": "Toasty", + "id": "player-243b55a2", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Toasty", + "morale": 100, + "morale_core": {}, + "nationality": "United States", + "position": "Mid", + "potential_base": 54, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-069c707b", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "November 5, 2002", + "fitness": 100, + "full_name": "Rin", + "id": "player-95451dbd", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Rin", + "morale": 100, + "morale_core": {}, + "nationality": "Algeria", + "position": "ADC", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-069c707b", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "January 20, 2001", + "fitness": 100, + "full_name": "Lilipp", + "id": "player-705a39f4", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Lilipp", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Support", + "potential_base": 74, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1347e217", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 3, 2003", + "fitness": 100, + "full_name": "Densi", + "id": "player-a7a82601", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Densi", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 77, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-3cef0cfa", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "February 14, 2004", + "fitness": 100, + "full_name": "Xagog", + "id": "player-0a52b810", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Xagog", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 76, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-bec332f5", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "September 9, 1998", + "fitness": 100, + "full_name": "Farfetch", + "id": "player-9c3f4bd0", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Farfetch", + "morale": 100, + "morale_core": {}, + "nationality": "Turkey", + "position": "Support", + "potential_base": 66, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-5dc37618", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 29, 2003", + "fitness": 100, + "full_name": "Fornoreason", + "id": "player-86df003a", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Fornoreason", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Top", + "potential_base": 82, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-e48c23c9", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "September 10, 1999", + "fitness": 100, + "full_name": "Abbedagge", + "id": "player-48c35607", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Abbedagge", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Mid", + "potential_base": 77, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-3cef0cfa", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "May 15, 2001", + "fitness": 100, + "full_name": "Reeker", + "id": "player-ddd8f069", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Reeker", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Mid", + "potential_base": 63, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-0be37b7e", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "December 17, 2000", + "fitness": 100, + "full_name": "Seaz", + "id": "player-cad7d4e6", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Seaz", + "morale": 100, + "morale_core": {}, + "nationality": "Austria", + "position": "Support", + "potential_base": 53, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-bec332f5", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "August 20, 2003", + "fitness": 100, + "full_name": "Wildenbruch", + "id": "player-0d6657cb", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Wildenbruch", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Support", + "potential_base": 83, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-a72b6e41", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "January 8, 2002", + "fitness": 100, + "full_name": "Venour", + "id": "player-d3b68dab", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Venour", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Top", + "potential_base": 54, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-3cef0cfa", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 9, 2005", + "fitness": 100, + "full_name": "Woldjo", + "id": "player-0042773f", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Woldjo", + "morale": 100, + "morale_core": {}, + "nationality": "Denmark", + "position": "Jungle", + "potential_base": 71, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1347e217", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "September 17, 1998", + "fitness": 100, + "full_name": "Sencux", + "id": "player-ec53ef0f", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Sencux", + "morale": 100, + "morale_core": {}, + "nationality": "Denmark", + "position": "Mid", + "potential_base": 70, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-5dc37618", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "November 17, 2001", + "fitness": 100, + "full_name": "D4nKa", + "id": "player-fed9089d", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "D4nKa", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 71, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-5dc37618", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "April 7, 2000", + "fitness": 100, + "full_name": "Patrik", + "id": "player-bd341328", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Patrik", + "morale": 100, + "morale_core": {}, + "nationality": "Czech Republic", + "position": "ADC", + "potential_base": 72, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-0be37b7e", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 4, 2000", + "fitness": 100, + "full_name": "Pyrka", + "id": "player-6b0a1d3d", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Pyrka", + "morale": 100, + "morale_core": {}, + "nationality": "Poland", + "position": "Support", + "potential_base": 69, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-3cef0cfa", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 6, 2002", + "fitness": 100, + "full_name": "RoyalKanin", + "id": "player-b2807ca0", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "RoyalKanin", + "morale": 100, + "morale_core": {}, + "nationality": "Sweden", + "position": "Mid", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-e48c23c9", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 3, 2000", + "fitness": 100, + "full_name": "Urban", + "id": "player-2a59d9d9", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Urban", + "morale": 100, + "morale_core": {}, + "nationality": "Denmark", + "position": "Support", + "potential_base": 52, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1cba5c67", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 14, 1993", + "fitness": 100, + "full_name": "Vizicsacsi", + "id": "player-7482960f", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Vizicsacsi", + "morale": 100, + "morale_core": {}, + "nationality": "Hungary", + "position": "Top", + "potential_base": 62, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-a72b6e41", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 11, 2004", + "fitness": 100, + "full_name": "Sajator", + "id": "player-08b3224a", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Sajator", + "morale": 100, + "morale_core": {}, + "nationality": "Czech Republic", + "position": "Mid", + "potential_base": 68, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1347e217", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "September 27, 2001", + "fitness": 100, + "full_name": "Notiko", + "id": "player-6caa9ee5", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Notiko", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "ADC", + "potential_base": 84, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-5dc37618", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "November 2, 2000", + "fitness": 100, + "full_name": "Twiizt", + "id": "player-a3320cdd", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Twiizt", + "morale": 100, + "morale_core": {}, + "nationality": "Sweden", + "position": "Support", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-e48c23c9", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 14, 2002", + "fitness": 100, + "full_name": "Relative", + "id": "player-9818a186", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Relative", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Mid", + "potential_base": 65, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-a72b6e41", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 22, 2001", + "fitness": 100, + "full_name": "Irrelevant", + "id": "player-f7fbfd4b", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Irrelevant", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Top", + "potential_base": 61, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-0be37b7e", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 13, 2000", + "fitness": 100, + "full_name": "Keduii", + "id": "player-7c6bb33a", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Keduii", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "ADC", + "potential_base": 82, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-bec332f5", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "December 17, 2002", + "fitness": 100, + "full_name": "Artoria", + "id": "player-ceb8f64e", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Artoria", + "morale": 100, + "morale_core": {}, + "nationality": "France", + "position": "Mid", + "potential_base": 73, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1cba5c67", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "August 23, 2000", + "fitness": 100, + "full_name": "UNF0RGIVEN", + "id": "player-12bc4b04", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "UNF0RGIVEN", + "morale": 100, + "morale_core": {}, + "nationality": "Sweden", + "position": "ADC", + "potential_base": 51, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-3cef0cfa", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "November 19, 1998", + "fitness": 100, + "full_name": "Kaiser", + "id": "player-cc66f9d3", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Kaiser", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Support", + "potential_base": 67, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-0be37b7e", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "December 10, 1998", + "fitness": 100, + "full_name": "JNX", + "id": "player-37d693a3", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "JNX", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Top", + "potential_base": 80, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-bec332f5", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "February 22, 2002", + "fitness": 100, + "full_name": "Tockimo", + "id": "player-4567482a", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Tockimo", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Support", + "potential_base": 56, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-069c707b", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "April 13, 2000", + "fitness": 100, + "full_name": "Afroboi", + "id": "player-e64db039", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Afroboi", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 56, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-a72b6e41", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Devn", + "id": "player-9619ae70", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Devn", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "ADC", + "potential_base": 80, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-f3b86137", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 11, 2005", + "fitness": 100, + "full_name": "Smarty", + "id": "player-7a8bee3b", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Smarty", + "morale": 100, + "morale_core": {}, + "nationality": "Czech Republic", + "position": "Support", + "potential_base": 59, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-f3b86137", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 29, 2004", + "fitness": 100, + "full_name": "Noz2k", + "id": "player-a30c74b7", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Noz2k", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "ADC", + "potential_base": 62, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-a72b6e41", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "June 28, 2002", + "fitness": 100, + "full_name": "Markoon", + "id": "player-bc8c4749", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Markoon", + "morale": 100, + "morale_core": {}, + "nationality": "Netherlands", + "position": "Jungle", + "potential_base": 50, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-069c707b", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 15, 2001", + "fitness": 100, + "full_name": "DenVoksne", + "id": "player-75553c80", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "DenVoksne", + "morale": 100, + "morale_core": {}, + "nationality": "Denmark", + "position": "ADC", + "potential_base": 52, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-e48c23c9", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Pasu", + "id": "player-b357e3bd", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Pasu", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 64, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-f3b86137", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "December 13, 1994", + "fitness": 100, + "full_name": "CPM", + "id": "player-f82cfbdc", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "CPM", + "morale": 100, + "morale_core": {}, + "nationality": "Romania", + "position": "Top", + "potential_base": 54, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-f3b86137", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Habubu", + "id": "player-192f0abc", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Habubu", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 72, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-0be37b7e", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Mietek", + "id": "player-76c27d3a", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Mietek", + "morale": 100, + "morale_core": {}, + "nationality": "Poland", + "position": "Top", + "potential_base": 82, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-5dc37618", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 2, 2006", + "fitness": 100, + "full_name": "Shelfmade", + "id": "player-d81a7289", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Shelfmade", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Top", + "potential_base": 52, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-069c707b", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "zorenous", + "id": "player-e52fe83d", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "zorenous", + "morale": 100, + "morale_core": {}, + "nationality": "Australia", + "position": "Top", + "potential_base": 56, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1347e217", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "September 27, 2004", + "fitness": 100, + "full_name": "Smurfe", + "id": "player-82f8e30c", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Smurfe", + "morale": 100, + "morale_core": {}, + "nationality": "Norway", + "position": "Top", + "potential_base": 70, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1cba5c67", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 3, 2005", + "fitness": 100, + "full_name": "Xay", + "id": "player-cd15d8d2", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Xay", + "morale": 100, + "morale_core": {}, + "nationality": "France", + "position": "ADC", + "potential_base": 77, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1cba5c67", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "October 27, 1997", + "fitness": 100, + "full_name": "PowerOfEvil", + "id": "player-1d30d3cb", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "PowerOfEvil", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Mid", + "potential_base": 71, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-bec332f5", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": "July 11, 2002", + "fitness": 100, + "full_name": "White", + "id": "player-2f1363b2", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "White", + "morale": 100, + "morale_core": {}, + "nationality": "Germany", + "position": "Jungle", + "potential_base": 70, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-e48c23c9", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + }, + { + "alternate_positions": [], + "attributes": { + "champion_pool": 0, + "consistency": 0, + "discipline": 0, + "laning": 0, + "macro_play": 0, + "mechanics": 0, + "mental_resilience": 0, + "shotcalling": 0, + "teamfighting": 0 + }, + "career": [], + "champion_mastery": [], + "condition": 100, + "contract_end": "2027-12-31", + "date_of_birth": null, + "fitness": 100, + "full_name": "Ryuk", + "id": "player-455adb8e", + "injury": null, + "loan_listed": false, + "market_value": 0, + "match_name": "Ryuk", + "morale": 100, + "morale_core": {}, + "nationality": "Austria", + "position": "ADC", + "potential_base": 76, + "potential_research_eta_days": null, + "potential_research_started_on": null, + "potential_revealed": null, + "profile_image_url": null, + "team_id": "team-1347e217", + "training_focus": null, + "traits": [], + "transfer_listed": false, + "transfer_offers": [], + "wage": 0 + } + ] +} \ No newline at end of file diff --git a/data/players/prm_players.json b/data/players/prm_players.json index 9c10931d2..a80c14d09 100644 --- a/data/players/prm_players.json +++ b/data/players/prm_players.json @@ -3,1739 +3,1769 @@ "description": "PRM - 2026 Season", "players": [ { - "id": "player-60a41eaf", - "match_name": "Daniel Golzmann", - "full_name": "D4nKa", - "date_of_birth": "2001-11-17", - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-04031c7d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cef0cfa", + "condition": 100, + "full_name": "Mario Emilov Strugov", "attributes": { - "laning": 70, - "mechanics": 70, - "discipline": 71, + "mechanics": 72, + "laning": 71, + "teamfighting": 72, "macro_play": 72, - "consistency": 71, - "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 70, - "mental_resilience": 71 + "consistency": 72, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "traits": [], + "match_name": "Exofeng", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BG", + "date_of_birth": "2007-07-17", + "stats": {}, + "profile_image_url": "/player-photos/10bb4bcc706f8724.webp" }, { - "id": "player-d1aece38", - "match_name": "Chres Laursen", - "full_name": "Sencux", - "date_of_birth": "1998-09-17", - "nationality": "DK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-243b55a2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-069c707b", + "condition": 100, + "full_name": "Victor Alexander Chea", "attributes": { - "laning": 72, - "mechanics": 71, - "discipline": 72, - "macro_play": 72, - "consistency": 73, + "mechanics": 74, + "laning": 74, + "teamfighting": 73, + "macro_play": 73, + "consistency": 74, "shotcalling": 66, - "teamfighting": 72, "champion_pool": 71, - "mental_resilience": 70 + "discipline": 70, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "traits": [], + "match_name": "Toasty", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "US", + "date_of_birth": "2006-01-19", + "stats": {}, + "profile_image_url": "/player-photos/10b2869cfe2b45ae.webp" }, { - "id": "player-c94c8003", - "match_name": "Laurentiu-Dodel Zidaru", - "full_name": "CPM", - "date_of_birth": "1994-12-13", - "nationality": "RO", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-086d4c66", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f3b86137", + "condition": 100, + "full_name": "Nam Jürgen Nguyen", "attributes": { + "mechanics": 72, "laning": 72, - "mechanics": 73, - "discipline": 73, + "teamfighting": 72, "macro_play": 72, "consistency": 72, - "shotcalling": 66, - "teamfighting": 72, + "shotcalling": 71, "champion_pool": 70, - "mental_resilience": 71 + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "traits": [], + "match_name": "Devn", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/0d1f24637a22054c.webp" }, { - "id": "player-df5efcb2", - "match_name": "Nick Celombitko", - "full_name": "Notiko", - "date_of_birth": "2001-09-27", - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-705a39f4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "traits": [], + "fitness": 100, + "team_id": "team-1347e217", + "position": "Support", + "condition": 100, + "full_name": "Philipp Samuel Englert", "attributes": { - "laning": 68, - "mechanics": 70, - "discipline": 73, - "macro_play": 68, - "consistency": 68, + "mechanics": 73, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 71, - "teamfighting": 70, - "champion_pool": 69, - "mental_resilience": 72 + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-5dc37618", - "traits": [], + "match_name": "Lilipp", + "loan_listed": false, + "morale_core": {}, + "nationality": "Germany", "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-5dc37618", - "team_name": "Eintracht Frankfurt", - "appearances": 0 - } - ], + "date_of_birth": "2001-01-20", + "potential_base": 74, "training_focus": null, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 77, + "champion_mastery": [], + "profile_image_url": "/player-photos/125ebe1ba8a11870.png", "potential_revealed": null, - "potential_research_started_on": null, + "alternate_positions": [], "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "potential_research_started_on": null, + "stats": {} }, { - "id": "player-57a747f4", - "match_name": "Janik Bartels", - "full_name": "JNX", - "date_of_birth": "1998-12-10", - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-089fc0e4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e48c23c9", + "condition": 100, + "full_name": "Linus Grönlund", "attributes": { - "laning": 73, "mechanics": 74, - "discipline": 71, - "macro_play": 73, - "consistency": 74, - "shotcalling": 71, + "laning": 74, "teamfighting": 74, - "champion_pool": 69, - "mental_resilience": 72 + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "traits": [], + "match_name": "RoyalKanin", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "SE", + "date_of_birth": "2002-07-06", + "stats": {}, + "profile_image_url": "/player-photos/adefea342e9038b4.webp" }, { - "id": "player-d4147879", - "match_name": "Hannes Hollmann", - "full_name": "Fooneses", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-0ecb44ed", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cef0cfa", + "condition": 100, + "full_name": "Felix Alfred Braun", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, - "macro_play": 72, + "mechanics": 73, + "laning": 73, + "teamfighting": 73, + "macro_play": 73, "consistency": 72, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 70, - "mental_resilience": 72 + "discipline": 73, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "traits": [], + "match_name": "Abbedagge", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": "1999-09-10", + "stats": {}, + "profile_image_url": "/player-photos/6ca4d77d49333bf7.webp" }, { - "id": "player-6d902f63", - "match_name": "Isa Arda Dagli", - "full_name": "Xagog", - "date_of_birth": "2004-02-14", - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-18753194", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e48c23c9", + "condition": 100, + "full_name": "Felix Schummel", "attributes": { - "laning": 73, - "mechanics": 73, - "discipline": 74, - "macro_play": 71, - "consistency": 72, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, + "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "traits": [], + "match_name": "Fornoreason", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "2003-10-29", + "stats": {}, + "profile_image_url": "/player-photos/1fc3e8493fec6a9f.webp" }, { - "id": "player-086d4c66", - "match_name": "Nam Jürgen Nguyen", - "full_name": "Devn", - "date_of_birth": null, + "id": "player-2421cd97", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Norman Kaiser", + "attributes": { + "mechanics": 74, + "laning": 68, + "teamfighting": 72, + "macro_play": 70, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 66, + "mental_resilience": 70 + }, + "match_name": "Kaiser", + "loan_listed": false, + "contract_end": "1998-11-19", + "transfer_listed": false, + "position": "Support", + "team_id": "team-0be37b7e", "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/eada66fb28abfaa1.webp" + }, + { + "id": "player-242c6678", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Łukasz Grześkowiak", "attributes": { - "laning": 72, "mechanics": 72, - "discipline": 73, + "laning": 74, + "teamfighting": 73, "macro_play": 72, "consistency": 72, - "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, - "mental_resilience": 73 + "shotcalling": 66, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 72 }, - "condition": 100, + "match_name": "Pyrka", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 77, + "transfer_listed": false, + "position": "Support", + "team_id": "team-3cef0cfa", + "nationality": "PL", + "date_of_birth": "2000-06-04", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/26cfeca8d8677824.webp" + }, + { + "id": "player-347bc312", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-f3b86137", - "traits": [], + "condition": 100, + "full_name": "Matyáš Rozvoral", + "attributes": { + "mechanics": 70, + "laning": 72, + "teamfighting": 72, + "macro_play": 71, + "consistency": 70, + "shotcalling": 66, + "champion_pool": 70, + "discipline": 74, + "mental_resilience": 72 + }, + "match_name": "Smarty", + "loan_listed": false, "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "position": "Support", + "team_id": "team-f3b86137", + "nationality": "CZ", + "date_of_birth": "2005-06-11", "wage": 0, "market_value": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/eaf063e254b6c45e.webp" }, { - "id": "player-745d4d5e", - "match_name": "Tristan Schrage", - "full_name": "PowerOfEvil", - "date_of_birth": "1997-10-27", - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-37f6bfcd", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cef0cfa", + "condition": 100, + "full_name": "Iwan Skorikov", "attributes": { + "mechanics": 73, "laning": 73, - "mechanics": 74, - "discipline": 70, + "teamfighting": 72, "macro_play": 72, "consistency": 73, "shotcalling": 71, - "teamfighting": 73, - "champion_pool": 71, - "mental_resilience": 72 + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "traits": [], - "contract_end": "2026-11-16", - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, + "match_name": "Venour", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2027-01-01", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "2002-01-08", + "stats": {}, + "profile_image_url": "/player-photos/7d4d47f2c2bc9c36.webp" }, { - "id": "player-e1ae451e", - "match_name": "Tim Willers", - "full_name": "Keduii", - "date_of_birth": "2000-10-13", - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-3ce96e17", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Timo Nils Bock", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 73, - "macro_play": 72, - "consistency": 72, - "shotcalling": 71, + "laning": 72, "teamfighting": 72, + "macro_play": 73, + "consistency": 73, + "shotcalling": 71, "champion_pool": 69, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "traits": [], + "match_name": "Tockimo", + "loan_listed": false, "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "position": "Support", + "team_id": "team-069c707b", + "nationality": "DE", + "date_of_birth": "2002-02-22", "wage": 0, "market_value": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/0f07e6bcefbf726a.webp" }, { - "id": "player-9769972c", - "match_name": "Daniel Binderhofer", - "full_name": "seaz", - "date_of_birth": "2000-11-17", - "nationality": "AT", - "profile_image_url": null, - "position": "SUPPORT", - "natural_position": "SUPPORT", - "alternate_positions": [], + "id": "player-57a747f4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-bec332f5", + "condition": 100, + "full_name": "Janik Bartels", "attributes": { + "mechanics": 74, "laning": 73, - "mechanics": 73, - "discipline": 72, - "macro_play": 74, - "consistency": 73, - "shotcalling": 70, - "teamfighting": 72, + "teamfighting": 74, + "macro_play": 73, + "consistency": 74, + "shotcalling": 71, "champion_pool": 69, - "mental_resilience": 73 + "discipline": 71, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-bec332f5", - "traits": [], - "contract_end": null, - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-bec332f5", - "team_name": "Eintracht Spandau", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, + "match_name": "JNX", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "1998-12-10", + "stats": {}, + "profile_image_url": "/player-photos/a0bc13b53437e058.webp" }, { - "id": "player-75246c7e", - "match_name": "Francesco Cardia", - "full_name": "Shelfmade", - "date_of_birth": "2006-10-02", - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-60a41eaf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5dc37618", + "condition": 100, + "full_name": "Daniel Golzmann", "attributes": { - "laning": 73, - "mechanics": 74, - "discipline": 71, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, + "mechanics": 70, + "laning": 70, "teamfighting": 73, - "champion_pool": 69, + "macro_play": 72, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "traits": [], + "match_name": "D4nKa", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": "2001-11-17", + "stats": {}, + "profile_image_url": "/player-photos/7b0d406f07ac4169.webp" }, { - "id": "player-d45dee60", - "match_name": "Khalil Sahraoui (خليل صحراوي)", - "full_name": "Rin", - "date_of_birth": "2002-11-05", - "nationality": "DZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", + "id": "player-62c0b82f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a72b6e41", + "condition": 100, + "full_name": "Leon Van", + "attributes": { + "mechanics": 71, + "laning": 70, + "teamfighting": 70, + "macro_play": 72, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 70 + }, + "match_name": "Relative", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/da1ffaf8386c2ea4.webp" + }, + { + "id": "player-6d902f63", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-bec332f5", + "condition": 100, + "full_name": "Isa Arda Dagli", "attributes": { - "laning": 73, "mechanics": 73, - "discipline": 72, - "macro_play": 73, - "consistency": 73, - "shotcalling": 66, + "laning": 73, "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 + "macro_play": 71, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, + "match_name": "Xagog", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": "2004-02-14", + "stats": {}, + "profile_image_url": "/player-photos/d45526da9eaee72c.webp" + }, + { + "id": "player-7173ba7d", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-069c707b", - "traits": [], + "team_id": "team-f3b86137", + "condition": 100, + "full_name": "Paul Hildebrandt", + "attributes": { + "mechanics": 72, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 73 + }, + "match_name": "Pasu", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-069c707b", - "team_name": "G2 Nord", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ad2a42242fb0dc1c.webp" }, { - "id": "player-37f6bfcd", - "match_name": "Iwan Skorikov", - "full_name": "Venour", - "date_of_birth": "2002-01-08", - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", + "id": "player-73a185a2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e48c23c9", + "condition": 100, + "full_name": "Nikolaj Asbjorn Meilby", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 + }, + "match_name": "DenVoksne", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "DK", + "date_of_birth": "2001-07-15", + "stats": {}, + "profile_image_url": "/player-photos/73ea24edeb4078f9.webp" + }, + { + "id": "player-745d4d5e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-bec332f5", + "condition": 100, + "full_name": "Tristan Schrage", "attributes": { + "mechanics": 74, "laning": 73, - "mechanics": 73, - "discipline": 72, + "teamfighting": 73, "macro_play": 72, "consistency": 73, "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 70, + "champion_pool": 71, + "discipline": 70, + "mental_resilience": 72 + }, + "match_name": "PowerOfEvil", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": "1997-10-27", + "stats": {}, + "profile_image_url": "/player-photos/c128ed441a288673.webp" + }, + { + "career": [], + "attributes": { + "mechanics": 67, + "laning": 72, + "teamfighting": 68, + "macro_play": 68, + "consistency": 68, + "shotcalling": 68, + "champion_pool": 67, + "discipline": 69, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 76, + "transfer_listed": false, + "id": "player-75057df7", + "match_name": "UNF0RGIVEN", + "full_name": "William Nieminen", + "position": "ADC", "team_id": "team-3cef0cfa", - "traits": [], - "contract_end": null, + "nationality": "SE", + "date_of_birth": "2000-08-23", "wage": 0, "market_value": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/6d3296b5afab1c0f.webp" }, { - "id": "player-0ecb44ed", - "match_name": "Felix Alfred Braun", - "full_name": "Abbedagge", - "date_of_birth": "1999-09-10", - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-75246c7e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-069c707b", + "condition": 100, + "full_name": "Francesco Cardia", "attributes": { + "mechanics": 74, "laning": 73, - "mechanics": 73, - "discipline": 73, - "macro_play": 73, - "consistency": 72, - "shotcalling": 71, "teamfighting": 73, - "champion_pool": 70, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 71, "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "traits": [], + "match_name": "Shelfmade", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "2006-10-02", + "stats": {}, + "profile_image_url": "/player-photos/95a8dc85c382f071.webp" }, { - "id": "player-04031c7d", - "match_name": "Mario Emilov Strugov", - "full_name": "Exofeng", - "date_of_birth": "2007-07-17", - "nationality": "BG", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-82f0f276", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Linus Köhler", "attributes": { - "laning": 71, - "mechanics": 72, - "discipline": 73, - "macro_play": 72, + "mechanics": 70, + "laning": 74, + "teamfighting": 68, + "macro_play": 74, "consistency": 72, - "shotcalling": 66, - "teamfighting": 72, - "champion_pool": 69, - "mental_resilience": 72 + "shotcalling": 71, + "champion_pool": 70, + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3cef0cfa", - "traits": [], + "match_name": "Wildenbruch", + "loan_listed": false, "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "team-a72b6e41", + "nationality": "DE", + "date_of_birth": "2003-08-20", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/3b5ee3e45fe515eb.webp" }, { - "id": "player-e313b092", - "match_name": "Joel Miro Scharoll", - "full_name": "Irrelevant", - "date_of_birth": "2001-10-22", - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-8a36dc48", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8c9a2d4b", + "condition": 100, + "full_name": "Johannes Eckerl", "attributes": { - "laning": 72, - "mechanics": 73, - "discipline": 70, - "macro_play": 69, - "consistency": 73, + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 70, - "mental_resilience": 71 + "champion_pool": 71, + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "traits": [], + "match_name": "ZWICKL", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 80, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-c8a93f6b", - "match_name": "Patrik Jírů", - "full_name": "Patrik", - "date_of_birth": "2000-04-07", - "nationality": "CZ", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-946db369", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Berk Badur", "attributes": { - "laning": 70, - "mechanics": 73, - "discipline": 66, - "macro_play": 68, + "mechanics": 70, + "laning": 71, + "teamfighting": 70, + "macro_play": 71, "consistency": 68, - "shotcalling": 66, - "teamfighting": 69, - "champion_pool": 67, - "mental_resilience": 70 + "shotcalling": 65, + "champion_pool": 70, + "discipline": 71, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "traits": [], + "match_name": "Farfetch", + "loan_listed": false, "contract_end": "2026-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "team-5dc37618", + "nationality": "TR", + "date_of_birth": "1998-09-09", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 75, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/19b377b797407322.webp" }, { - "id": "player-a56a774f", - "match_name": "Steven Chen", - "full_name": "Reeker", - "date_of_birth": "2001-05-15", - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-975a5169", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cef0cfa", + "condition": 100, + "full_name": "Denis Aljic", "attributes": { - "laning": 70, "mechanics": 72, - "discipline": 73, - "macro_play": 69, + "laning": 74, + "teamfighting": 74, + "macro_play": 72, "consistency": 73, "shotcalling": 71, - "teamfighting": 71, - "champion_pool": 70, + "champion_pool": 71, + "discipline": 73, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0be37b7e", - "traits": [], + "match_name": "Densi", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-0be37b7e", - "team_name": "Berlin International Gaming", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": "2003-06-03", + "stats": {}, + "profile_image_url": "/player-photos/a8dbb1bf4079c9cd.webp" + }, + { + "id": "player-9769972c", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Daniel Binderhofer", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 72, + "macro_play": 74, + "consistency": 73, + "shotcalling": 70, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 73 + }, + "match_name": "seaz", + "loan_listed": false, + "contract_end": "2027-01-01", "potential_base": 78, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "position": "Support", + "team_id": "team-bec332f5", + "nationality": "AT", + "date_of_birth": "2000-11-17", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/28d0adbd50c93f01.webp" }, { - "id": "player-73a185a2", - "match_name": "DenVoksne", - "full_name": "DenVoksne", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-9995be5f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakob Waich", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 66, - "teamfighting": 74, + "shotcalling": 70, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "traits": [], - "contract_end": null, + "match_name": "Jakobobbi", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "position": "Support", + "team_id": "team-8c9a2d4b", + "nationality": "AT", + "date_of_birth": "2000-03-26", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/73e98ae0337038ff.webp" }, { - "id": "player-18753194", - "match_name": "Fornoreason", - "full_name": "Fornoreason", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-9fb2dfc7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8c9a2d4b", + "condition": 100, + "full_name": "Adrian Steiner", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 71, - "teamfighting": 74, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Tazaku", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": "2000-09-12", "stats": {}, + "profile_image_url": "/player-photos/a8a961dd9d50a525.webp" + }, + { + "id": "player-a56a774f", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0be37b7e", + "condition": 100, + "full_name": "Steven Chen", + "attributes": { + "mechanics": 72, + "laning": 70, + "teamfighting": 71, + "macro_play": 69, + "consistency": 73, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 72 + }, + "match_name": "Reeker", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": "2001-05-15", + "stats": {}, + "profile_image_url": "/player-photos/485de658d1fcec37.webp" }, { - "id": "player-9fb2dfc7", - "match_name": "Tazaku", - "full_name": "Tazaku", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-aa67e0e2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e48c23c9", + "condition": 100, + "full_name": "Aslan Panglose", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, + "shotcalling": 66, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "White", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "FR", + "date_of_birth": "2002-07-11", + "stats": {}, + "profile_image_url": "/player-photos/c4265828dc0b49a0.webp" }, { - "id": "player-d8771aee", - "match_name": "zorenous", - "full_name": "zorenous", - "date_of_birth": null, - "nationality": "AU", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-b081196c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1347e217", + "condition": 100, + "full_name": "Jan Zítek", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 73, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 70, + "champion_pool": 71, + "discipline": 72, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SAJATOR", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "CZ", + "date_of_birth": "2004-10-11", + "stats": {}, + "profile_image_url": "/player-photos/5c478506425a94ed.webp" }, { - "id": "player-aa67e0e2", - "match_name": "White", - "full_name": "White", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b9516ad8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1347e217", + "condition": 100, + "full_name": "William Donatzky", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 72, "macro_play": 74, "consistency": 74, "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Woldjo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DK", + "date_of_birth": "2005-07-09", + "stats": {}, + "profile_image_url": "/player-photos/62ab141bbbaf91a9.webp" }, { - "id": "player-b081196c", - "match_name": "SAJATOR", - "full_name": "SAJATOR", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-bc2ba158", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a72b6e41", + "condition": 100, + "full_name": "Tamás Kiss", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 72, - "macro_play": 74, - "consistency": 74, + "mechanics": 72, + "laning": 68, + "teamfighting": 73, + "macro_play": 72, + "consistency": 70, "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 73 + "champion_pool": 67, + "discipline": 72, + "mental_resilience": 71 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Vizicsacsi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "HU", + "date_of_birth": "1993-06-14", + "stats": {}, + "profile_image_url": "/player-photos/5c52e9d4046cca90.webp" }, { - "id": "player-75057df7", - "match_name": "William Nieminen", - "full_name": "UNF0RGIVEN", - "date_of_birth": "2000-08-23", - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-c8a93f6b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0be37b7e", + "condition": 100, + "full_name": "Patrik Jírů", "attributes": { - "laning": 72, - "mechanics": 67, - "discipline": 69, + "mechanics": 73, + "laning": 70, + "teamfighting": 69, "macro_play": 68, "consistency": 68, - "shotcalling": 68, - "teamfighting": 68, + "shotcalling": 66, "champion_pool": 67, - "mental_resilience": 71 + "discipline": 66, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "team-3cef0cfa", - "traits": [], + "match_name": "Patrik", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 50000, - "market_value": 750000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "training_focus": null, + "market_value": 0, + "potential_base": 75, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 76, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "CZ", + "date_of_birth": "2000-04-07", + "stats": {}, + "profile_image_url": "/player-photos/5d4d08de184a2840.webp" }, { - "id": "player-e1b9abd6", - "match_name": "Sven", - "full_name": "Sven", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-c94c8003", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f3b86137", + "condition": 100, + "full_name": "Laurentiu-Dodel Zidaru", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 74, - "macro_play": 74, - "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "mechanics": 73, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 72, + "shotcalling": 66, + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 71 }, - "condition": 100, + "match_name": "CPM", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "RO", + "date_of_birth": "1994-12-13", + "stats": {}, + "profile_image_url": "/player-photos/0cac219acfa088be.webp" + }, + { + "id": "player-cb663ba0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-8c9a2d4b", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-a72b6e41", + "condition": 100, + "full_name": "Noah Richter", + "attributes": { + "mechanics": 73, + "laning": 71, + "teamfighting": 71, + "macro_play": 71, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 66, + "mental_resilience": 69 + }, + "match_name": "Noz2k", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": "2004-06-29", + "stats": {}, + "profile_image_url": "/player-photos/c278c8362e573cac.webp" }, { - "id": "player-b9516ad8", - "match_name": "Woldjo", - "full_name": "Woldjo", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-cb7a6822", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5dc37618", + "condition": 100, + "full_name": "Nikolas Nowak", "attributes": { - "laning": 74, - "mechanics": 74, - "discipline": 73, - "macro_play": 74, - "consistency": 74, + "mechanics": 71, + "laning": 71, + "teamfighting": 71, + "macro_play": 70, + "consistency": 71, "shotcalling": 66, - "teamfighting": 72, "champion_pool": 70, - "mental_resilience": 73 + "discipline": 72, + "mental_resilience": 70 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-1347e217", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Mietek", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 77, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/1ec361dec8e1d55d.webp" }, { - "id": "player-723b52e9", - "match_name": "Luke", - "full_name": "Luke", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-cf6de495", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Elton Richie Garcia Spetsig", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, + "shotcalling": 66, "champion_pool": 71, + "discipline": 74, "mental_resilience": 74 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "traits": [], - "contract_end": null, + "match_name": "Twiizt", + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 78, + "transfer_listed": false, + "position": "Support", + "team_id": "team-e48c23c9", + "nationality": "SE", + "date_of_birth": "2000-11-02", "wage": 0, "market_value": 0, "stats": {}, + "profile_image_url": "/player-photos/fdc1cbb13043ce4a.webp" + }, + { + "id": "player-d1aece38", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5dc37618", + "condition": 100, + "full_name": "Chres Laursen", + "attributes": { + "mechanics": 71, + "laning": 72, + "teamfighting": 72, + "macro_play": 72, + "consistency": 73, + "shotcalling": 66, + "champion_pool": 71, + "discipline": 72, + "mental_resilience": 70 + }, + "match_name": "Sencux", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DK", + "date_of_birth": "1998-09-17", + "stats": {}, + "profile_image_url": "/player-photos/027e94b503f7259b.webp" }, { - "id": "player-975a5169", - "match_name": "Denis Aljic", - "full_name": "Densi", - "date_of_birth": "2003-06-03", - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-d4147879", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f3b86137", + "condition": 100, + "full_name": "Hannes Hollmann", "attributes": { - "laning": 74, "mechanics": 72, - "discipline": 73, + "laning": 72, + "teamfighting": 74, "macro_play": 72, - "consistency": 73, + "consistency": 72, "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, + "champion_pool": 70, + "discipline": 74, "mental_resilience": 72 }, - "condition": 100, + "match_name": "Fooneses", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/217d02b306e2e319.webp" + }, + { + "id": "player-d45dee60", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-3cef0cfa", - "traits": [], + "team_id": "team-069c707b", + "condition": 100, + "full_name": "Khalil Sahraoui (خليل صحراوي)", + "attributes": { + "mechanics": 73, + "laning": 73, + "teamfighting": 72, + "macro_play": 73, + "consistency": 73, + "shotcalling": 66, + "champion_pool": 69, + "discipline": 72, + "mental_resilience": 72 + }, + "match_name": "Rin", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-3cef0cfa", - "team_name": "Kaufland Hangry Knights", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DZ", + "date_of_birth": "2002-11-05", + "stats": {}, + "profile_image_url": "/player-photos/e472694f2d4ba8fe.webp" }, { - "id": "player-8a36dc48", - "match_name": "ZWICKL", - "full_name": "ZWICKL", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-d81526a8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-069c707b", + "condition": 100, + "full_name": "Mark van Woensel", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 72, + "teamfighting": 72, "macro_play": 74, "consistency": 74, - "shotcalling": 71, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "shotcalling": 66, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-8c9a2d4b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Markoon", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-01-01", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/6c82b6ebfa02beb4.webp" }, { - "id": "player-089fc0e4", - "match_name": "RoyalKanin", - "full_name": "RoyalKanin", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d8771aee", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-1347e217", + "condition": 100, + "full_name": "Cameron Abbott", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 74, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, "shotcalling": 66, - "teamfighting": 74, - "champion_pool": 71, - "mental_resilience": 74 + "champion_pool": 70, + "discipline": 73, + "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e48c23c9", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "zorenous", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 79, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "AU", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/f41840344d13a9e5.webp" + }, + { + "id": "player-df5efcb2", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-5dc37618", + "condition": 100, + "full_name": "Nick Celombitko", + "attributes": { + "mechanics": 70, + "laning": 68, + "teamfighting": 70, + "macro_play": 68, + "consistency": 68, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 73, + "mental_resilience": 72 + }, + "match_name": "Notiko", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 77, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": "2001-09-27", + "stats": {}, + "profile_image_url": "/player-photos/78dc09055deea58a.webp" }, { - "id": "player-d81526a8", - "match_name": "Mark van Woensel", - "full_name": "Markoon", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-192f0abc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0be37b7e", + "condition": 100, + "full_name": "Seyit Cüce", "attributes": { - "laning": 72, - "mechanics": 74, - "discipline": 70, + "mechanics": 73, + "laning": 71, + "teamfighting": 69, "macro_play": 74, - "consistency": 74, - "shotcalling": 66, - "teamfighting": 72, + "consistency": 73, + "shotcalling": 71, "champion_pool": 70, + "discipline": 70, "mental_resilience": 72 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-069c707b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Habubu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "lec-g2-esports", - "team_name": "G2 Esports", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 78, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/8f300791bbdaef74.webp" }, { - "id": "player-7173ba7d", - "match_name": "Paul Hildebrandt", - "full_name": "Pasu", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-e1ae451e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-bec332f5", + "condition": 100, + "full_name": "Tim Willers", "attributes": { - "laning": 72, - "mechanics": 72, - "discipline": 74, + "mechanics": 73, + "laning": 73, + "teamfighting": 72, "macro_play": 72, "consistency": 72, "shotcalling": 71, - "teamfighting": 72, - "champion_pool": 71, + "champion_pool": 69, + "discipline": 73, "mental_resilience": 73 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f3b86137", - "traits": [], + "match_name": "Keduii", + "loan_listed": false, + "morale_core": {}, "contract_end": "2026-11-16", - "wage": 0, "market_value": 0, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "team-f3b86137", - "team_name": "ROSSMANN Centaurs", - "appearances": 0 - } - ], - "training_focus": null, + "potential_base": 79, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 79, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DE", + "date_of_birth": "2000-10-13", + "stats": {}, + "profile_image_url": "/player-photos/513c073642eab1d4.webp" }, { - "id": "player-afc0ae8e", - "match_name": "Ryuk", - "full_name": "Ryuk", - "date_of_birth": null, - "nationality": "AT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e1b9abd6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-8c9a2d4b", + "condition": 100, + "full_name": "Sven Olejnikow", "attributes": { - "laning": 74, "mechanics": 74, - "discipline": 73, + "laning": 74, + "teamfighting": 74, "macro_play": 74, "consistency": 74, - "shotcalling": 70, - "teamfighting": 74, + "shotcalling": 71, "champion_pool": 71, - "mental_resilience": 73 + "discipline": 74, + "mental_resilience": 74 }, - "condition": 100, + "match_name": "Sven", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/717e9d05862a152f.webp" + }, + { + "id": "player-e313b092", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-1347e217", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-0be37b7e", + "condition": 100, + "full_name": "Joel Miro Scharoll", + "attributes": { + "mechanics": 73, + "laning": 72, + "teamfighting": 74, + "macro_play": 69, + "consistency": 73, + "shotcalling": 71, + "champion_pool": 70, + "discipline": 70, + "mental_resilience": 71 + }, + "match_name": "Irrelevant", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2026-11-16", "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "2001-10-22", "stats": {}, + "profile_image_url": "/player-photos/32ece2fe8873c261.webp" + }, + { + "id": "player-fc5e2fec", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a72b6e41", + "condition": 100, + "full_name": "Adrian Kaymer", + "attributes": { + "mechanics": 72, + "laning": 70, + "teamfighting": 69, + "macro_play": 74, + "consistency": 74, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 68, + "mental_resilience": 71 + }, + "match_name": "Afroboi", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 80, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-11-16", + "market_value": 0, + "potential_base": 78, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": "2000-04-13", + "stats": {}, + "profile_image_url": "/player-photos/00a02c7a3a5cfc40.webp" } ] -} +} \ No newline at end of file diff --git a/data/players/rl_players.json b/data/players/rl_players.json index a39954bd9..83d740b49 100644 --- a/data/players/rl_players.json +++ b/data/players/rl_players.json @@ -4,1379 +4,1745 @@ "players": [ { "id": "player-0902a935", - "match_name": "Agresivoo", - "full_name": "Agresivoo", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d772ad68", + "condition": 100, + "full_name": "Tobiasz Ciba", "attributes": { - "laning": 62, "mechanics": 63, - "discipline": 58, + "laning": 62, + "teamfighting": 60, "macro_play": 61, "consistency": 63, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 57, + "discipline": 58, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Agresivoo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "1999-07-09", "stats": {}, + "profile_image_url": "/player-photos/fdc64d5f8388d985.webp" + }, + { + "id": "player-093c891a", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-83efd7e9", + "condition": 100, + "full_name": "Paweł Drozd", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 61 + }, + "match_name": "FullClear", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": "2007-08-31", + "stats": {}, + "profile_image_url": null }, { - "id": "player-c08cf697", - "match_name": "iBo", - "full_name": "iBo", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-09b29b54", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c5d360c2", + "condition": 100, + "full_name": "Nicolas Gawron", "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 62, - "macro_play": 64, - "consistency": 63, + "mechanics": 64, + "laning": 63, + "teamfighting": 63, + "macro_play": 62, + "consistency": 64, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, + "champion_pool": 59, + "discipline": 60, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Decay", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": "1999-12-21", + "stats": {}, + "profile_image_url": "/player-photos/791daf7ec8c908ca.webp" }, { - "id": "player-dddb946b", - "match_name": "Goldmen", - "full_name": "Goldmen", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0d700886", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ff1df943", + "condition": 100, + "full_name": "Thomas Folcher", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Fantomisto", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-25a3588e", - "match_name": "Guli", - "full_name": "Guli", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 56, - "macro_play": 62, - "consistency": 61, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 59 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/0aba2fed60ef2a01.webp" }, { - "id": "player-59fd9067", - "match_name": "Krysia", - "full_name": "Krysia", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-122a8b8d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c5d360c2", + "condition": 100, + "full_name": "Sergen Eke", "attributes": { + "mechanics": 63, "laning": 62, - "mechanics": 61, + "teamfighting": 62, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 60, "discipline": 63, - "macro_play": 62, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Scorth", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "TR", + "date_of_birth": "2002-05-29", + "stats": {}, + "profile_image_url": "/player-photos/2133be845fc08333.webp" }, { - "id": "player-dbc79639", - "match_name": "Sobek", - "full_name": "Sobek", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-150bcd56", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Oskar Bazydło", "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 60, + "mechanics": 60, + "laning": 56, + "teamfighting": 60, "macro_play": 58, "consistency": 61, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 59, + "discipline": 60, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Raxxo", + "position": "Support", "team_id": "team-239dd021", - "traits": [], - "contract_end": null, + "nationality": "PL", + "date_of_birth": "1996-10-12", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/3b23ad1dc2e4fd29.webp" }, { - "id": "player-906e4183", - "match_name": "frajgo", - "full_name": "frajgo", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1777ef72", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c3747fd1", + "condition": 100, + "full_name": "Jakub Szafarczyk", "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 60, + "mechanics": 60, + "laning": 61, + "teamfighting": 61, "macro_play": 62, - "consistency": 62, + "consistency": 60, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 60, - "mental_resilience": 61 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "discipline": 64, + "mental_resilience": 62 + }, + "match_name": "Szafa", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-1777ef72", - "match_name": "Szafa", - "full_name": "Szafa", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1d200cf4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Diogo Sousa", "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 64, + "mechanics": 61, + "laning": 63, + "teamfighting": 63, "macro_play": 62, "consistency": 60, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 60, - "mental_resilience": 62 + "discipline": 58, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": null, + "match_name": "Calmsky", + "position": "Support", + "team_id": "team-ff1df943", + "nationality": "PT", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/5176b8bdb31aecfb.webp" + }, + { + "id": "player-2592eefa", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-efe1b300", + "condition": 100, + "full_name": "Michał Drobek", + "attributes": { + "mechanics": 64, + "laning": 62, + "teamfighting": 63, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Klorell", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "2004-07-04", + "stats": {}, + "profile_image_url": null }, { - "id": "player-3607121f", - "match_name": "Joki37", - "full_name": "Joki37", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-25a3588e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-76542a8b", + "condition": 100, + "full_name": "Igor Oblizajek", "attributes": { - "laning": 56, - "mechanics": 58, - "discipline": 62, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, + "mechanics": 62, + "laning": 60, "teamfighting": 56, + "macro_play": 62, + "consistency": 61, + "shotcalling": 56, "champion_pool": 59, - "mental_resilience": 60 + "discipline": 56, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Guli", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-093c891a", - "match_name": "FullClear", - "full_name": "FullClear", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-31579a79", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-83efd7e9", + "condition": 100, + "full_name": "Maciej Gołębiowski", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 62, + "laning": 61, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, + "champion_pool": 60, + "discipline": 60, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "traits": [], - "contract_end": null, + "match_name": "PmK", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "2002-11-28", + "stats": {}, + "profile_image_url": "/player-photos/06038284938a03f9.webp" + }, + { + "career": [], + "id": "player-31d1fa76", + "match_name": "Xavi", + "full_name": "Ksawery Gurbada", + "position": "Support", + "team_id": "team-efe1b300", + "nationality": "", + "date_of_birth": "2003-09-05", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/341d533c679bfb53.webp" + }, + { + "id": "player-3607121f", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-239dd021", + "condition": 100, + "full_name": "Jakub Korzeniecki", + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 56, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 60 + }, + "match_name": "Joki37", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/ac216db48d47db7e.webp" }, { - "id": "player-ff90bb51", - "match_name": "Kokos", - "full_name": "Kokos", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-3752c496", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ff1df943", + "condition": 100, + "full_name": "Jakob Skovmand", "attributes": { - "laning": 63, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Faetski", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "DK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-c7a1d0b3", - "match_name": "Birkyy", - "full_name": "Birkyy", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "id": "player-41e444c0", + "match_name": "Opat04", + "full_name": "Dan Suchomel", + "position": "Mid", + "team_id": "team-c3747fd1", + "nationality": "", + "date_of_birth": "2000-10-07", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": "/player-photos/9465d082510368c8.webp" + }, + { + "id": "player-4225b189", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-83efd7e9", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-efe1b300", + "condition": 100, + "full_name": "Rafał Marek", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 64 + }, + "match_name": "Blesia", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-7da12333", - "match_name": "HeSSZero", - "full_name": "HeSSZero", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-443480fc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c3747fd1", + "condition": 100, + "full_name": "Jakub Wójtowicz", "attributes": { - "laning": 61, - "mechanics": 59, - "discipline": 60, - "macro_play": 58, - "consistency": 58, + "mechanics": 60, + "laning": 60, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 59, - "mental_resilience": 58 + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-239dd021", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Salami", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "2000-09-09", + "stats": {}, + "profile_image_url": "/player-photos/ca304120b33069eb.webp" }, { - "id": "player-31579a79", - "match_name": "PmK", - "full_name": "PmK", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "career": [], + "id": "player-511fe89f", + "match_name": "Vzz", + "full_name": "Teodor Cholakov", + "position": "ADC", + "team_id": "team-c5d360c2", + "nationality": "", + "date_of_birth": "2000-06-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/58e8b410ad76bb4f.webp" + }, + { + "id": "player-5453c8e7", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakub Skurzyński", "attributes": { - "laning": 61, "mechanics": 60, - "discipline": 60, + "laning": 60, + "teamfighting": 61, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 60, - "mental_resilience": 61 + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-83efd7e9", - "traits": [], - "contract_end": null, + "match_name": "Jactroll", + "position": "Support", + "team_id": "team-d772ad68", + "nationality": "PL", + "date_of_birth": "1998-08-05", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/c3ec73967e296e92.webp" + }, + { + "id": "player-59fd9067", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c3747fd1", + "condition": 100, + "full_name": "Krysia", + "attributes": { + "mechanics": 61, + "laning": 62, + "teamfighting": 63, + "macro_play": 62, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Krysia", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-4225b189", - "match_name": "Blesia", - "full_name": "Blesia", + "career": [], + "id": "player-6328d358", + "match_name": "LeQu", + "full_name": "Kamil Rosik", + "position": "Top", + "team_id": "team-76542a8b", + "nationality": "", "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/43f7d0818ab0cc23.webp" + }, + { + "id": "player-69e0a4ed", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ff1df943", + "condition": 100, + "full_name": "Marcin Swereda", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 63, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Belit", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": "2002-09-22", + "stats": {}, + "profile_image_url": "/player-photos/437a5908c159338d.webp" }, { "id": "player-6dd2eddd", - "match_name": "mikusik", - "full_name": "mikusik", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d772ad68", + "condition": 100, + "full_name": "Mikołaj Cywiński", "attributes": { - "laning": 59, "mechanics": 63, - "discipline": 58, + "laning": 59, + "teamfighting": 63, "macro_play": 61, "consistency": 62, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 57, + "discipline": 58, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Mikusik", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": "2007-09-04", + "stats": {}, + "profile_image_url": "/player-photos/18b8bfeb2e1c762a.webp" }, { - "id": "player-eac818ff", - "match_name": "XnS", - "full_name": "XnS", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 60, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-7067109a", + "match_name": "Apriil", + "full_name": "Jakub Kupisz", + "position": "Support", "team_id": "team-c5d360c2", - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": "2000-09-06", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-69e0a4ed", - "match_name": "belit", - "full_name": "belit", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-741015cf", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-239dd021", + "condition": 100, + "full_name": "Wiktor Świderski", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 61, + "laning": 56, + "teamfighting": 61, + "macro_play": 58, + "consistency": 58, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 57, + "discipline": 56, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Ejsner", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/0e8dbd0197c683d1.webp" }, { - "id": "player-de866e2f", - "match_name": "Tenshi", - "full_name": "Tenshi", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-7da12333", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-239dd021", + "condition": 100, + "full_name": "Paweł Karwot", "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 56, - "consistency": 56, + "mechanics": 59, + "laning": 61, + "teamfighting": 60, + "macro_play": 58, + "consistency": 58, "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "HeSSZero", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "2004-02-23", + "stats": {}, + "profile_image_url": "/player-photos/e743de55a6108167.webp" }, { - "id": "player-09b29b54", - "match_name": "Decay", - "full_name": "Decay", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-81c7cd91", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Damian Konefał", "attributes": { - "laning": 63, - "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 64, + "mechanics": 61, + "laning": 61, + "teamfighting": 61, + "macro_play": 61, + "consistency": 60, "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Lucker", + "position": "Support", "team_id": "team-c5d360c2", - "traits": [], - "contract_end": null, + "nationality": "PL", + "date_of_birth": "1997-10-10", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/65a7ad370686af6e.webp" }, { - "id": "player-0d700886", - "match_name": "fantomisto", - "full_name": "fantomisto", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-8985dbe2", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-83efd7e9", + "condition": 100, + "full_name": "Norbert Zamojć", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 60, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Anyone", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "2000-09-25", "stats": {}, + "profile_image_url": null + }, + { "career": [], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "id": "player-8a37954c", + "match_name": "Hyper720", + "full_name": "Jakub Wojtycki", + "position": "Support", + "team_id": "team-76542a8b", + "nationality": "", + "date_of_birth": "2002-09-20", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null }, { - "id": "player-9b064375", - "match_name": "Mrozku", - "full_name": "Mrozku", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-906e4183", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-76542a8b", + "condition": 100, + "full_name": "Krzysztof Chibowski", "attributes": { - "laning": 61, "mechanics": 62, - "discipline": 58, - "macro_play": 61, + "laning": 63, + "teamfighting": 62, + "macro_play": 62, "consistency": 62, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 61, - "mental_resilience": 59 + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Frajgo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-92e03f8d", - "match_name": "Sorrow2", - "full_name": "Sorrow2", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c3747fd1", + "condition": 100, + "full_name": "Franciszek Strzeja", "attributes": { - "laning": 62, "mechanics": 60, - "discipline": 63, + "laning": 62, + "teamfighting": 60, "macro_play": 60, "consistency": 60, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 60, + "discipline": 63, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Sorrow2", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2008-06-20", + "stats": {}, + "profile_image_url": null }, { - "id": "player-741015cf", - "match_name": "ejsner", - "full_name": "ejsner", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 56, - "mechanics": 61, - "discipline": 56, - "macro_play": 58, - "consistency": 58, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 58 - }, - "condition": 100, + "id": "player-97dcb9ed", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-239dd021", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Robertoos", + "attributes": { + "mechanics": 62, + "laning": 62, + "teamfighting": 62, + "macro_play": 61, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 63 + }, + "match_name": "Robertoos", + "position": "Support", + "team_id": "team-efe1b300", + "nationality": "PL", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-8985dbe2", - "match_name": "Anyone", - "full_name": "Anyone", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-98e769d6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakub Miernicki", "attributes": { - "laning": 60, "mechanics": 60, - "discipline": 60, + "laning": 61, + "teamfighting": 60, "macro_play": 60, - "consistency": 60, + "consistency": 61, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 61, - "mental_resilience": 61 + "discipline": 58, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Kubagoat", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-83efd7e9", - "traits": [], - "contract_end": null, + "nationality": "PL", + "date_of_birth": "2007-08-04", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-9a8bb526", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d772ad68", + "condition": 100, + "full_name": "Paweł Pruski", + "attributes": { + "mechanics": 62, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 60 + }, + "match_name": "Woolite", "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "1996-05-07", + "stats": {}, + "profile_image_url": "/player-photos/e1f9cc38a2e1fcd0.webp" + }, + { + "id": "player-9b064375", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-76542a8b", + "condition": 100, + "full_name": "Adrian Skonieczny", + "attributes": { + "mechanics": 62, + "laning": 61, + "teamfighting": 60, + "macro_play": 61, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 59 + }, + "match_name": "Mrozku", + "loan_listed": false, "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2004-12-24", + "stats": {}, + "profile_image_url": "/player-photos/449d81be946d8650.webp" }, { - "id": "player-2592eefa", - "match_name": "Klorell", - "full_name": "Klorell", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-9df2110d", + "match_name": "Raticait", + "full_name": "Alan Szwarc", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "team_id": "team-83efd7e9", + "nationality": "", + "date_of_birth": "2009-02-17", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-9ecb047c", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Kamil Pękacki", "attributes": { - "laning": 62, "mechanics": 64, - "discipline": 64, + "laning": 63, + "teamfighting": 64, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "Syrpy", + "position": "Support", + "team_id": "team-efe1b300", + "nationality": "PL", + "date_of_birth": "1998-07-01", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/84fa6e7c7fe2d46e.webp" + }, + { + "id": "player-ceb8f64e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d772ad68", + "condition": 100, + "full_name": "Alexis Diebold", + "attributes": { + "mechanics": 60, + "laning": 58, + "teamfighting": 58, "macro_play": 62, - "consistency": 62, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 56, + "mental_resilience": 60 + }, + "match_name": "Artoria", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": "2002-12-17", + "stats": {}, + "profile_image_url": "/player-photos/ff5392f904dc3b6f.webp" + }, + { + "career": [], + "id": "player-a3fe8d49", + "match_name": "ShazQ", + "full_name": "Michał Szymiczek", + "position": "Jungle", + "team_id": "team-c3747fd1", + "nationality": "", + "date_of_birth": "2002-03-14", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/db01789a03df70a2.webp" + }, + { + "career": [], + "id": "player-b2a34f15", + "match_name": "Bwipo", + "full_name": "Gabriël Rau", + "position": "Jungle", + "team_id": "team-c5d360c2", + "nationality": "", + "date_of_birth": "1998-12-24", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/a9585f46eea0876d.webp" + }, + { + "id": "player-c08cf697", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c5d360c2", + "condition": 100, + "full_name": "Marcin Lebuda", + "attributes": { + "mechanics": 63, + "laning": 62, + "teamfighting": 62, + "macro_play": 64, + "consistency": 63, "shotcalling": 56, - "teamfighting": 63, "champion_pool": 60, - "mental_resilience": 64 + "discipline": 62, + "mental_resilience": 62 }, + "match_name": "IBo", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": "1997-03-08", + "stats": {}, + "profile_image_url": "/player-photos/4a73bbe6626d3b8d.webp" + }, + { + "id": "player-c7a1d0b3", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-83efd7e9", "condition": 100, + "full_name": "Kacper Niemiec", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 63, + "mental_resilience": 62 + }, + "match_name": "Birkyy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2007-02-13", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-cfaf0a5a", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-efe1b300", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Patryk Kozłowski", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Lee sang", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2004-08-26", + "stats": {}, + "profile_image_url": "/player-photos/47198bf4c9999405.webp" + }, + { + "id": "player-d5f18fff", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Jakub Rożek", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 62 + }, + "match_name": "Acorderr", + "position": "Support", + "team_id": "team-c3747fd1", + "nationality": "PL", + "date_of_birth": "2002-07-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/dfdcecbf1e1e89b6.webp" + }, + { + "id": "player-dbc79639", "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-239dd021", + "condition": 100, + "full_name": "Patryk Sobczak", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 63, + "macro_play": 58, + "consistency": 61, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Sobek", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/e0c55c71dafbf493.webp" }, { - "id": "player-cfaf0a5a", - "match_name": "lee sang", - "full_name": "lee sang", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-dddb946b", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-ff1df943", + "condition": 100, + "full_name": "Goldmen", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-efe1b300", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Goldmen", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-9a8bb526", - "match_name": "Woolite", - "full_name": "Woolite", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-de866e2f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-d772ad68", + "condition": 100, + "full_name": "Tenshi", "attributes": { - "laning": 64, - "mechanics": 62, - "discipline": 62, - "macro_play": 64, - "consistency": 64, + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 56, + "consistency": 56, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 59, + "champion_pool": 57, + "discipline": 61, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-d772ad68", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Tenshi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-122a8b8d", - "match_name": "Scorth", - "full_name": "Scorth", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-eac818ff", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-c5d360c2", + "condition": 100, + "full_name": "Enes Hansu", "attributes": { - "laning": 62, "mechanics": 63, - "discipline": 63, + "laning": 63, + "teamfighting": 62, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 62, "champion_pool": 60, - "mental_resilience": 63 + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c5d360c2", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "XnS", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "TR", + "date_of_birth": "2003-09-15", + "stats": {}, + "profile_image_url": "/player-photos/736c647baa33886a.webp" }, { - "id": "player-3752c496", - "match_name": "Faetski", - "full_name": "Faetski", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f4650a26", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Maciej Wicher", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 60, + "laning": 60, + "teamfighting": 60, + "macro_play": 59, + "consistency": 62, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-ff1df943", - "traits": [], - "contract_end": null, + "match_name": "Minemaciek", + "position": "Support", + "team_id": "team-76542a8b", + "nationality": "PL", + "date_of_birth": "2004-07-16", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/08675048904887a7.webp" }, { "id": "player-f72ff573", - "match_name": "Odi11", - "full_name": "Odi11", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-76542a8b", + "condition": 100, + "full_name": "Adrian Kruk", "attributes": { - "laning": 61, "mechanics": 63, - "discipline": 56, + "laning": 61, + "teamfighting": 60, "macro_play": 63, "consistency": 63, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 57, + "discipline": 56, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-76542a8b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Odi11", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "2001-11-05", + "stats": {}, + "profile_image_url": "/player-photos/c153a6c0bb564afd.webp" }, { - "id": "player-443480fc", - "match_name": "Salami", - "full_name": "Salami", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-ff90bb51", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-efe1b300", + "condition": 100, + "full_name": "Dominik Krzoska", "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 63, - "macro_play": 60, - "consistency": 60, + "mechanics": 64, + "laning": 63, + "teamfighting": 63, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 60, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-c3747fd1", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Kokos", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/rol_players.json b/data/players/rol_players.json index 765637a02..fe2258d60 100644 --- a/data/players/rol_players.json +++ b/data/players/rol_players.json @@ -3,1681 +3,1865 @@ "description": "ROL - 2026 Season", "players": [ { - "id": "player-e8dae42f", - "match_name": "Painful", - "full_name": "Painful", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-0696415c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e6e445de", + "condition": 100, + "full_name": "Jeroen Cretier", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, + "mechanics": 54, + "laning": 57, + "teamfighting": 56, + "macro_play": 54, + "consistency": 53, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, - "mental_resilience": 64 + "discipline": 60, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Ferrari", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 63, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NL", + "date_of_birth": "1998-11-18", + "stats": {}, + "profile_image_url": null }, { - "id": "player-2d8f71c0", - "match_name": "Twendddy", - "full_name": "Twendddy", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-08f6765d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e6e445de", + "condition": 100, + "full_name": "Boye", "attributes": { + "mechanics": 55, "laning": 56, - "mechanics": 58, - "discipline": 58, - "macro_play": 57, - "consistency": 55, + "teamfighting": 54, + "macro_play": 58, + "consistency": 54, "shotcalling": 56, - "teamfighting": 57, - "champion_pool": 55, + "champion_pool": 56, + "discipline": 56, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Boye", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 63, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "DK", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-6947b83d", - "match_name": "Sprotte", - "full_name": "Sprotte", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-0bee5510", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Owpi", "attributes": { - "laning": 56, "mechanics": 60, - "discipline": 58, - "macro_play": 55, - "consistency": 56, + "laning": 62, + "teamfighting": 60, + "macro_play": 60, + "consistency": 62, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 + "champion_pool": 57, + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Owpi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "GR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-4cd7c8f1", - "match_name": "Ilyxøu", - "full_name": "Ilyxøu", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-10003555", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Simon Bogaerts", "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 61, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, + "mechanics": 62, + "laning": 62, "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 61, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Space", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "BE", + "date_of_birth": "2002-10-08", + "stats": {}, + "profile_image_url": "/player-photos/e4ef823a94b5c0d4.webp" }, { - "id": "player-a5a1743e", - "match_name": "MaiYuk", - "full_name": "MaiYuk", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-10ff71f6", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0e8ccac", + "condition": 100, + "full_name": "Hendrik van Dijkhuizen", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 62, + "teamfighting": 61, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Luncafoer", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-0696415c", - "match_name": "Ferrari", - "full_name": "Ferrari", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-16b75fca", + "match_name": "Fortunate", + "full_name": "Tim Merckens", + "position": "Support", + "team_id": "team-45502488", + "nationality": "", "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 57, - "mechanics": 54, - "discipline": 60, - "macro_play": 54, - "consistency": 53, - "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 61, - "mental_resilience": 58 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-3d4d10ac", - "match_name": "zaycear", - "full_name": "zaycear", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-16cd4c12", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Sebastián Maslančík", "attributes": { + "mechanics": 64, "laning": 60, - "mechanics": 57, - "discipline": 59, - "macro_play": 57, - "consistency": 54, + "teamfighting": 63, + "macro_play": 62, + "consistency": 62, "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 55, - "mental_resilience": 57 + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": null, + "match_name": "AwerpiS", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-a0e8ccac", + "nationality": "SK", + "date_of_birth": "2005-12-17", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-ebcab0ce", - "match_name": "Egemen", - "full_name": "Egemen", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1d869a40", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Marek Baumann", "attributes": { + "mechanics": 57, "laning": 58, - "mechanics": 58, - "discipline": 62, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 58, + "teamfighting": 56, + "macro_play": 55, + "consistency": 55, + "shotcalling": 56, "champion_pool": 59, - "mental_resilience": 63 + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Baumeef", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "CZ", + "date_of_birth": "2002-02-17", + "stats": {}, + "profile_image_url": "/player-photos/47d0281d49f36463.webp" }, { - "id": "player-b5a61ae9", - "match_name": "Bisk", - "full_name": "Bisk", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-1e6ce5ce", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mateusz Krauz", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 60, + "laning": 62, + "teamfighting": 64, "macro_play": 63, - "consistency": 64, + "consistency": 63, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": null, + "match_name": "Enkil", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-f9cfb0f2", + "nationality": "PL", + "date_of_birth": "2005-10-06", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-fb63c394", - "match_name": "Fishue", - "full_name": "Fishue", - "date_of_birth": null, - "nationality": "DE", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2afb569e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-897210b6", + "condition": 100, + "full_name": "Pascal Haygarth", "attributes": { - "laning": 58, - "mechanics": 54, - "discipline": 61, - "macro_play": 58, - "consistency": 58, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 54, - "champion_pool": 60, - "mental_resilience": 60 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, + "match_name": "Pipibaat", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NL", + "date_of_birth": "2001-02-24", + "stats": {}, + "profile_image_url": "/player-photos/00f6f0d56df848e3.webp" + }, + { + "id": "player-2d8f71c0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-45502488", - "traits": [], - "contract_end": null, - "wage": 0, + "condition": 100, + "full_name": "Luca Werner", + "attributes": { + "mechanics": 58, + "laning": 56, + "teamfighting": 57, + "macro_play": 57, + "consistency": 55, + "shotcalling": 56, + "champion_pool": 55, + "discipline": 58, + "mental_resilience": 58 + }, + "match_name": "Twendddy", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 64, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/d419cdef49f98e95.webp" }, { - "id": "player-1d869a40", - "match_name": "Baumeef", - "full_name": "Baumeef", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2dfc0dd7", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e6e445de", + "condition": 100, + "full_name": "Frank Temminck", "attributes": { - "laning": 58, "mechanics": 57, - "discipline": 64, + "laning": 56, + "teamfighting": 55, "macro_play": 55, "consistency": 55, "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 62 + "champion_pool": 60, + "discipline": 55, + "mental_resilience": 55 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Franky", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 63, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "NL", + "date_of_birth": "1998-09-28", + "stats": {}, + "profile_image_url": "/player-photos/94ad1eacdfb042bc.webp" }, { - "id": "player-10ff71f6", - "match_name": "Luncafoer", - "full_name": "Luncafoer", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-2f3a4e09", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0e8ccac", + "condition": 100, + "full_name": "Michael Smirnov", "attributes": { - "laning": 62, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, + "mechanics": 62, + "laning": 63, + "teamfighting": 64, + "macro_play": 62, "consistency": 64, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 59, + "discipline": 61, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Bbmuffin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "IE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/65367451bfd04589.webp" }, { - "id": "player-2afb569e", - "match_name": "Pipibaat", - "full_name": "Pipibaat", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-31e220c3", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mick op den Akker", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, + "match_name": "Stookbeer", + "position": "Support", + "team_id": "team-897210b6", + "nationality": "NL", + "date_of_birth": "1999-12-04", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/85f96d6e7043c97c.webp" + }, + { + "id": "player-3b7cd37e", + "career": [], "morale": 100, "fitness": 100, - "team_id": "team-897210b6", - "traits": [], - "contract_end": null, + "condition": 100, + "full_name": "Ève Monvoisin", + "attributes": { + "mechanics": 61, + "laning": 62, + "teamfighting": 63, + "macro_play": 62, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Colomblbl", + "position": "Support", + "team_id": "team-3738562e", + "nationality": "FR", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/4f44232bb87c1793.webp" + }, + { + "id": "player-3d4d10ac", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-45502488", + "condition": 100, + "full_name": "Lucas Aveline", + "attributes": { + "mechanics": 57, + "laning": 60, + "teamfighting": 59, + "macro_play": 57, + "consistency": 54, + "shotcalling": 56, + "champion_pool": 55, + "discipline": 59, + "mental_resilience": 57 + }, + "match_name": "Zaycear", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 64, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-f3b7db20", - "match_name": "Archfiend", - "full_name": "Archfiend", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-3e71895a", + "match_name": "Tali", + "full_name": "Luka Tadic", + "position": "ADC", + "team_id": "team-a0e8ccac", + "nationality": "", "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-403ca252", + "match_name": "Dino", + "full_name": "Christian van As", + "position": "Jungle", + "team_id": "team-3088debc", + "nationality": "", + "date_of_birth": "2007-11-25", + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-45fb2a81", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-45502488", + "condition": 100, + "full_name": "Mark Legrand", + "attributes": { + "mechanics": 58, + "laning": 60, + "teamfighting": 59, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 59, + "mental_resilience": 58 + }, + "match_name": "Void", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "ADC", + "nationality": "BE", + "date_of_birth": "2003-03-06", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-468fb864", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-45502488", + "condition": 100, + "full_name": "Mathis Vannieuwenuyse", "attributes": { - "laning": 54, - "mechanics": 60, - "discipline": 60, + "mechanics": 61, + "laning": 63, + "teamfighting": 59, "macro_play": 61, - "consistency": 58, + "consistency": 62, "shotcalling": 56, - "teamfighting": 60, - "champion_pool": 58, + "champion_pool": 61, + "discipline": 58, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "MathisV", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": "2008-03-08", + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-47201b68", + "match_name": "Pekidelion", + "full_name": "Geert Kock", + "position": "ADC", "team_id": "team-45502488", - "traits": [], - "contract_end": null, + "nationality": "", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": null + }, + { + "id": "player-4cd7c8f1", + "wage": 0, "career": [], - "training_focus": null, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f9cfb0f2", + "condition": 100, + "full_name": "Iliane Bessa", + "attributes": { + "mechanics": 63, + "laning": 60, + "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 62 + }, + "match_name": "Ilyxøu", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 67, "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "FR", + "date_of_birth": "2001-12-22", + "stats": {}, + "profile_image_url": "/player-photos/6c1398e85fd9d0ed.webp" + }, + { + "id": "player-546ea5f0", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-897210b6", + "condition": 100, + "full_name": "Joekie", + "attributes": { + "mechanics": 63, + "laning": 62, + "teamfighting": 63, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Joekie", "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "NL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-629f300f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Pierre Annet", + "attributes": { + "mechanics": 64, + "laning": 62, + "teamfighting": 64, + "macro_play": 62, + "consistency": 62, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "Sïgma", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", + "team_id": "team-96e42b9a", + "nationality": "BE", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-6947b83d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-e6e445de", + "condition": 100, + "full_name": "Dominik Koch", + "attributes": { + "mechanics": 60, + "laning": 56, + "teamfighting": 62, + "macro_play": 55, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Sprotte", + "loan_listed": false, "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "DE", + "date_of_birth": "2005-07-23", + "stats": {}, + "profile_image_url": null }, { - "id": "player-e5257c41", - "match_name": "NuQ", - "full_name": "NuQ", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", + "id": "player-714dea8a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Flavien Goffinet", + "attributes": { + "mechanics": 56, + "laning": 56, + "teamfighting": 58, + "macro_play": 56, + "consistency": 56, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Spinto", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 63, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "BE", + "date_of_birth": "2002-11-10", + "stats": {}, + "profile_image_url": "/player-photos/34b29a918d9cc30c.webp" + }, + { + "id": "player-78613ecc", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-96e42b9a", + "condition": 100, + "full_name": "Petr Dolejš", + "attributes": { + "mechanics": 64, + "laning": 63, + "teamfighting": 63, + "macro_play": 63, + "consistency": 63, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 62 + }, + "match_name": "Dolis", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Mid", + "nationality": "CZ", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/3e9f445deb239ad3.webp" + }, + { + "id": "player-92ecd9b8", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f9cfb0f2", + "condition": 100, + "full_name": "Sergiusz Liberek", "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 57, + "mechanics": 64, + "laning": 64, + "teamfighting": 62, "macro_play": 63, - "consistency": 61, - "shotcalling": 55, - "teamfighting": 59, + "consistency": 63, + "shotcalling": 56, "champion_pool": 60, - "mental_resilience": 58 + "discipline": 60, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Sidav", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PL", + "date_of_birth": "2006-08-01", + "stats": {}, + "profile_image_url": null }, { - "id": "player-0bee5510", - "match_name": "Owpi", - "full_name": "Owpi", - "date_of_birth": null, - "nationality": "GR", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-a322542f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Rym Salloum", "attributes": { - "laning": 62, - "mechanics": 60, - "discipline": 62, + "mechanics": 62, + "laning": 61, + "teamfighting": 61, "macro_play": 60, - "consistency": 62, + "consistency": 63, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 57, - "mental_resilience": 62 + "discipline": 58, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Rym", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "VE", + "date_of_birth": null, "stats": {}, + "profile_image_url": "/player-photos/dcb25273cbd1a91a.webp" + }, + { + "id": "player-a5a1743e", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-897210b6", + "condition": 100, + "full_name": "Constantine de Jong", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 56, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "MaiYuk", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "NL", + "date_of_birth": "2002-01-14", + "stats": {}, + "profile_image_url": "/player-photos/64cde59d02975426.webp" }, { "id": "player-a9bdb0b1", - "match_name": "Smart", - "full_name": "Smart", - "date_of_birth": null, - "nationality": "UA", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-96e42b9a", + "condition": 100, + "full_name": "Rotyslav Sarnatsky", "attributes": { - "laning": 62, "mechanics": 62, - "discipline": 63, + "laning": 62, + "teamfighting": 62, "macro_play": 63, "consistency": 62, "shotcalling": 56, - "teamfighting": 62, "champion_pool": 60, + "discipline": 63, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Smart", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "UA", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/21e75c40ef961191.webp" }, { - "id": "player-cfafaa98", - "match_name": "Cboi", - "full_name": "Cboi", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b038b2f0", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-897210b6", + "condition": 100, + "full_name": "Job Goossens", "attributes": { - "laning": 60, - "mechanics": 62, - "discipline": 57, - "macro_play": 63, - "consistency": 63, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Slyv3r", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "NL", + "date_of_birth": "1992-12-21", + "stats": {}, + "profile_image_url": "/player-photos/655f2b973a75f605.webp" }, { - "id": "player-f9021ba0", - "match_name": "Dismas", - "full_name": "Dismas", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-b5a61ae9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0e8ccac", + "condition": 100, + "full_name": "Lars de Haan", "attributes": { - "laning": 59, - "mechanics": 62, - "discipline": 56, - "macro_play": 61, - "consistency": 59, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 63, + "consistency": 64, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 57, - "mental_resilience": 59 + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Bisk", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "NL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-eb8d3e27", - "match_name": "Hatred", - "full_name": "Hatred", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-b86911d2", + "match_name": "ShadowDragon", + "full_name": "Yu Hao Chou", + "position": "Mid", + "team_id": "team-a0e8ccac", + "nationality": "", "date_of_birth": null, - "nationality": "BG", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 61, - "mechanics": 62, - "discipline": 63, - "macro_play": 60, - "consistency": 60, - "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-bc260053", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-96e42b9a", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-e6e445de", + "condition": 100, + "full_name": "Simon Nord", + "attributes": { + "mechanics": 58, + "laning": 60, + "teamfighting": 60, + "macro_play": 58, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 58 + }, + "match_name": "BunnyBeast", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { "id": "player-c6c3c252", - "match_name": "Guertas", - "full_name": "Guertas", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f9cfb0f2", + "condition": 100, + "full_name": "Romain Polo", "attributes": { - "laning": 59, "mechanics": 64, - "discipline": 56, + "laning": 59, + "teamfighting": 61, "macro_play": 61, "consistency": 62, "shotcalling": 56, - "teamfighting": 61, "champion_pool": 59, + "discipline": 56, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Guertas", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-546ea5f0", - "match_name": "Joekie", - "full_name": "Joekie", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], - "attributes": { - "laning": 62, - "mechanics": 63, - "discipline": 63, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 63 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "FR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/868591ff7b266fd1.webp" }, { - "id": "player-f9ee2cd5", - "match_name": "Wolorz", - "full_name": "Wolorz", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-cfafaa98", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3088debc", + "condition": 100, + "full_name": "Casper Bo Simonsen", "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 58, - "macro_play": 62, - "consistency": 64, + "mechanics": 62, + "laning": 60, + "teamfighting": 56, + "macro_play": 63, + "consistency": 63, "shotcalling": 56, - "teamfighting": 58, "champion_pool": 59, + "discipline": 57, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3088debc", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Cboi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DK", + "date_of_birth": "1998-08-19", + "stats": {}, + "profile_image_url": "/player-photos/e855a78449ebe550.webp" }, { - "id": "player-714dea8a", - "match_name": "Spinto", - "full_name": "Spinto", + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-d32d4735", + "match_name": "Luuuk", + "full_name": "Lucas Mariano Rosario", + "position": "Top", + "team_id": "team-45502488", + "nationality": "", "date_of_birth": null, - "nationality": "BE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 58, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 60 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-2f3a4e09", - "match_name": "bbmuffin", - "full_name": "bbmuffin", - "date_of_birth": null, - "nationality": "IE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-d613ae5e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-f9cfb0f2", + "condition": 100, + "full_name": "Corentin Rostand", "attributes": { - "laning": 63, - "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 64, + "mechanics": 63, + "laning": 60, + "teamfighting": 62, + "macro_play": 64, + "consistency": 62, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 59, + "discipline": 63, "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Numandiel", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-45fb2a81", - "match_name": "Void", - "full_name": "Void", - "date_of_birth": null, - "nationality": "BE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 58, - "discipline": 59, - "macro_play": 56, - "consistency": 56, - "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 61, - "mental_resilience": 58 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-45502488", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "FR", + "date_of_birth": "2000-11-23", + "stats": {}, + "profile_image_url": "/player-photos/8ae001d6348feb76.webp" }, { - "id": "player-10003555", - "match_name": "Space", - "full_name": "Space", - "date_of_birth": null, - "nationality": "BE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-db44522d", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-a0e8ccac", + "condition": 100, + "full_name": "Joris Maas", "attributes": { + "mechanics": 64, "laning": 62, - "mechanics": 62, - "discipline": 61, + "teamfighting": 63, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 61 + "champion_pool": 59, + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "CaviaVampier", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "NL", + "date_of_birth": null, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { "id": "player-e2261e3e", - "match_name": "Jamie", - "full_name": "Jamie", - "date_of_birth": null, - "nationality": "UA", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-96e42b9a", + "condition": 100, + "full_name": "Evgeny Sorokin", "attributes": { - "laning": 64, "mechanics": 63, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, "champion_pool": 60, + "discipline": 64, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Jamie", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "UA", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/3416c4d5e9cf009b.webp" }, { - "id": "player-468fb864", - "match_name": "MathisV", - "full_name": "MathisV", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-e25b100d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Luís Pereira", "attributes": { - "laning": 63, - "mechanics": 61, - "discipline": 58, - "macro_play": 61, - "consistency": 62, + "mechanics": 60, + "laning": 58, + "teamfighting": 62, + "macro_play": 58, + "consistency": 61, "shotcalling": 56, - "teamfighting": 59, - "champion_pool": 61, - "mental_resilience": 59 + "champion_pool": 60, + "discipline": 53, + "mental_resilience": 57 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Wuis", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-45502488", - "traits": [], - "contract_end": null, + "nationality": "PT", + "date_of_birth": "2003-11-16", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-2dfc0dd7", - "match_name": "Franky", - "full_name": "Franky", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-e5257c41", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3088debc", + "condition": 100, + "full_name": "Erkmen Erdoğdu", "attributes": { - "laning": 56, - "mechanics": 57, - "discipline": 55, - "macro_play": 55, - "consistency": 55, - "shotcalling": 56, - "teamfighting": 55, + "mechanics": 60, + "laning": 62, + "teamfighting": 59, + "macro_play": 63, + "consistency": 61, + "shotcalling": 55, "champion_pool": 60, - "mental_resilience": 55 + "discipline": 57, + "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "NuQ", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-d613ae5e", - "match_name": "Numandiel", - "full_name": "Numandiel", - "date_of_birth": null, - "nationality": "FR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 62, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-f9cfb0f2", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 66, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": "2003-05-12", + "stats": {}, + "profile_image_url": "/player-photos/2c9e77f24de52fe0.webp" }, { - "id": "player-bc260053", - "match_name": "BunnyBeast", - "full_name": "BunnyBeast", - "date_of_birth": null, - "nationality": "SE", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e7828672", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Malte Emil Olsen", "attributes": { + "mechanics": 60, "laning": 60, - "mechanics": 58, - "discipline": 60, + "teamfighting": 60, "macro_play": 58, - "consistency": 58, + "consistency": 56, "shotcalling": 56, - "teamfighting": 60, "champion_pool": 59, + "discipline": 60, "mental_resilience": 58 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Dovendyr", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-e6e445de", - "traits": [], - "contract_end": null, + "nationality": "DK", + "date_of_birth": null, "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-db44522d", - "match_name": "CaviaVampier", - "full_name": "CaviaVampier", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-e8411189", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3088debc", + "condition": 100, + "full_name": "Rodrigo de Oliveira", "attributes": { - "laning": 62, "mechanics": 64, - "discipline": 63, + "laning": 63, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 59, - "mental_resilience": 63 + "champion_pool": 60, + "discipline": 57, + "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-a0e8ccac", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "FlickeR", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "PT", + "date_of_birth": "2005-04-15", + "stats": {}, + "profile_image_url": "/player-photos/49f05831b1dbee3c.webp" }, { - "id": "player-08f6765d", - "match_name": "Boye", - "full_name": "Boye", - "date_of_birth": null, - "nationality": "DK", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-e8dae42f", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-897210b6", + "condition": 100, + "full_name": "Kevin Druga", "attributes": { - "laning": 56, - "mechanics": 55, - "discipline": 56, - "macro_play": 58, - "consistency": 54, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 56, - "teamfighting": 54, - "champion_pool": 56, - "mental_resilience": 58 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-e6e445de", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Painful", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 63, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "SE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-a322542f", - "match_name": "rym", - "full_name": "rym", - "date_of_birth": null, - "nationality": "VE", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-eb8d3e27", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-96e42b9a", + "condition": 100, + "full_name": "Veselin Popov", "attributes": { - "laning": 61, "mechanics": 62, - "discipline": 58, + "laning": 61, + "teamfighting": 61, "macro_play": 60, - "consistency": 63, + "consistency": 60, "shotcalling": 56, - "teamfighting": 61, - "champion_pool": 57, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3738562e", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Hatred", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 68, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "BG", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/eedb4a406eb4a737.webp" }, { - "id": "player-78613ecc", - "match_name": "Dolis", - "full_name": "Dolis", - "date_of_birth": null, - "nationality": "CZ", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-ebcab0ce", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Egemen Örek", "attributes": { - "laning": 63, - "mechanics": 64, + "mechanics": 58, + "laning": 58, + "teamfighting": 58, + "macro_play": 58, + "consistency": 56, + "shotcalling": 55, + "champion_pool": 59, "discipline": 62, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 63, - "champion_pool": 60, - "mental_resilience": 62 + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-96e42b9a", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Egemen", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-e8411189", - "match_name": "FlickeR", - "full_name": "FlickeR", - "date_of_birth": null, - "nationality": "PT", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-ed5ad285", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Fabian de Lint", "attributes": { - "laning": 63, "mechanics": 64, - "discipline": 57, + "laning": 62, + "teamfighting": 63, "macro_play": 64, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 60, + "champion_pool": 57, + "discipline": 55, "mental_resilience": 59 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Seal", + "loan_listed": false, + "transfer_listed": false, + "position": "Support", "team_id": "team-3088debc", - "traits": [], - "contract_end": null, + "nationality": "NL", + "date_of_birth": "2001-01-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/628b83450d88d6ac.webp" }, { - "id": "player-92ecd9b8", - "match_name": "Sidav", - "full_name": "Sidav", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-f2cb9b2b", + "match_name": "Xeliyi", + "full_name": "Xeliyi", "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "team_id": "team-45502488", + "nationality": "", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 60, - "macro_play": 63, - "consistency": 63, - "shotcalling": 56, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-f9021ba0", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-f9cfb0f2", - "traits": [], - "contract_end": null, - "wage": 0, + "team_id": "team-3738562e", + "condition": 100, + "full_name": "Dismas", + "attributes": { + "mechanics": 62, + "laning": 59, + "teamfighting": 62, + "macro_play": 61, + "consistency": 59, + "shotcalling": 56, + "champion_pool": 57, + "discipline": 56, + "mental_resilience": 59 + }, + "match_name": "Dismas", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 65, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-b038b2f0", - "match_name": "Slyv3r", - "full_name": "Slyv3r", - "date_of_birth": null, - "nationality": "NL", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-f9ee2cd5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3088debc", + "condition": 100, + "full_name": "Krzysztof Kasprzak", "attributes": { + "mechanics": 63, "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, + "teamfighting": 58, + "macro_play": 62, "consistency": 64, "shotcalling": 56, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-897210b6", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Wolorz", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "PL", + "date_of_birth": "2006-12-31", "stats": {}, + "profile_image_url": "/player-photos/afc1ed2a53d53d9a.webp" + }, + { + "id": "player-fb63c394", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-45502488", + "condition": 100, + "full_name": "Niklas Kraft", + "attributes": { + "mechanics": 54, + "laning": 58, + "teamfighting": 54, + "macro_play": 58, + "consistency": 58, + "shotcalling": 56, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 60 + }, + "match_name": "Fishue", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "DE", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/players/tcl_players.json b/data/players/tcl_players.json index 9878f8198..18c69006b 100644 --- a/data/players/tcl_players.json +++ b/data/players/tcl_players.json @@ -3,860 +3,1452 @@ "description": "TCL - 2026 Season", "players": [ { - "id": "player-b2160bc5", - "match_name": "Fatih Kurşun", - "full_name": "Fade", - "date_of_birth": "2003-12-03", + "id": "player-007d4382", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Stalken", + "attributes": { + "mechanics": 64, + "laning": 65, + "teamfighting": 64, + "macro_play": 65, + "consistency": 65, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 63 + }, + "match_name": "Stalken", + "potential_base": 74, + "position": "Jungle", + "team_id": "tcl-pcific-esports", + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "contract_end": "2026-06-25", + "id": "player-024b1212", + "match_name": "Aklass", + "full_name": "Eid Alazmi", + "position": "ADC", + "team_id": "tcl-su-esports", + "nationality": "", + "date_of_birth": "2001-06-01", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/781afd282e335baa.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 62, + "laning": 64, + "teamfighting": 62, + "macro_play": 64, + "consistency": 65, + "shotcalling": 63, + "champion_pool": 62, + "discipline": 62, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 70, + "transfer_listed": false, + "stats.potential_base": "74", + "stats.transfer_listed": "false", + "stats.attributes.laning": "68", + "stats.potential_revealed": "71", + "stats.attributes.mechanics": "68", + "stats.attributes.discipline": "75", + "stats.attributes.macro_play": "65", + "stats.attributes.consistency": "80", + "stats.attributes.shotcalling": "68", + "stats.attributes.teamfighting": "65", + "stats.attributes.champion_pool": "70", + "stats.attributes.mental_resilience": "72", + "id": "player-031c31af", + "match_name": "Ragner", + "full_name": "Onurcan Aslan", + "position": "Top", + "team_id": "tcl-misa-esports", + "nationality": "TR", + "date_of_birth": "2000-12-19", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/e255a1cb6fe3156e.webp" + }, + { + "id": "player-033b395f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Eren Parlak", + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 66, + "macro_play": 66, + "consistency": 66, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 66, + "mental_resilience": 66 + }, + "match_name": "Raen1", + "loan_listed": false, + "contract_end": "2026-07-01", + "potential_base": 75, + "transfer_listed": false, + "position": "ADC", + "team_id": "tcl-team-phoenix", + "nationality": "TR", + "date_of_birth": "2005-10-25", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-124b3ca7", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hype", + "attributes": { + "mechanics": 73, + "laning": 74, + "teamfighting": 72, + "macro_play": 74, + "consistency": 74, + "shotcalling": 65, + "champion_pool": 67, + "discipline": 66, + "mental_resilience": 70 + }, + "match_name": "Hype", + "potential_base": 77, + "position": "ADC", + "team_id": "tcl-misa-esports", + "nationality": "KR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/d631e67f79ced9dc.png" + }, + { + "id": "player-1a2ec39e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mert Ali Orman", + "attributes": { + "mechanics": 55, + "laning": 60, + "teamfighting": 55, + "macro_play": 55, + "consistency": 55, + "shotcalling": 61, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 57 + }, + "match_name": "Bmoooo", + "loan_listed": false, + "contract_end": "2026-07-01", + "potential_base": 65, + "transfer_listed": false, + "position": "Support", + "team_id": "tcl-team-phoenix", + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-1ba5dc01", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Simon Bucht", + "attributes": { + "mechanics": 62, + "laning": 56, + "teamfighting": 63, + "macro_play": 58, + "consistency": 56, + "shotcalling": 55, + "champion_pool": 57, + "discipline": 58, + "mental_resilience": 60 + }, + "match_name": "Seneca", + "contract_end": "2026-06-25", + "potential_base": 69, + "position": "Support", + "team_id": "tcl-su-esports", + "nationality": "SE", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/aaee9bbca3f3aecd.webp" + }, + { + "id": "player-1d424a4e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Nawa", + "attributes": { + "mechanics": 63, + "laning": 64, + "teamfighting": 60, + "macro_play": 63, + "consistency": 63, + "shotcalling": 61, + "champion_pool": 59, + "discipline": 60, + "mental_resilience": 61 + }, + "match_name": "Nawa", + "potential_base": 68, + "position": "ADC", + "team_id": "tcl-pcific-esports", + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-2ad76443", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Beplush", + "attributes": { + "mechanics": 58, + "laning": 64, + "teamfighting": 58, + "macro_play": 60, + "consistency": 64, + "shotcalling": 63, + "champion_pool": 61, + "discipline": 61, + "mental_resilience": 60 + }, + "match_name": "Beplush", + "potential_base": 70, + "position": "Support", + "team_id": "tcl-pcific-esports", + "nationality": "TR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-2ca57031", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Hasan Samarsın", + "attributes": { + "mechanics": 60, + "laning": 58, + "teamfighting": 60, + "macro_play": 58, + "consistency": 58, + "shotcalling": 63, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 60 + }, + "match_name": "Neramin", + "contract_end": "2026-03-10", + "potential_base": 68, + "position": "ADC", + "team_id": "tcl-dark-passage", + "nationality": "TR", + "date_of_birth": "2001-08-04", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/6b1d63e8baea139b.webp" + }, + { + "career": [], + "contract_end": "2026-11-16", + "id": "player-2f019360", + "match_name": "Grave", + "full_name": "Demir Demirsoy", + "position": "ADC", + "team_id": "tcl-ozarox-esports", + "nationality": "", + "date_of_birth": "2005-01-01", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/cc4f9ba570185671.webp" + }, + { + "id": "player-30d4d38d", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Ahmet Cihan Battal", + "attributes": { + "mechanics": 58, + "laning": 54, + "teamfighting": 57, + "macro_play": 54, + "consistency": 54, + "shotcalling": 61, + "champion_pool": 59, + "discipline": 56, + "mental_resilience": 56 + }, + "match_name": "Mean", + "contract_end": "2026-03-16", + "potential_base": 65, + "position": "ADC", + "team_id": "tcl-boostgate-esports", + "nationality": "TR", + "date_of_birth": "1999-04-27", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/bc14a58e11064f13.webp" + }, + { + "wage": 41, + "career": [], + "attributes": { + "mechanics": 70, + "laning": 66, + "teamfighting": 69, + "macro_play": 72, + "consistency": 68, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 71, + "mental_resilience": 69 + }, + "loan_listed": false, + "contract_end": "2026-06-25", + "market_value": 21, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 76, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-38c26301", + "match_name": "Warner", + "full_name": "Eren Yücel", + "position": "Mid", + "team_id": "tcl-bushido-wildcats", + "nationality": "TR", + "date_of_birth": "2005-08-23", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-39987898", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Bedirhan Kalkan", + "attributes": { + "mechanics": 57, + "laning": 60, + "teamfighting": 60, + "macro_play": 60, + "consistency": 61, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 64, + "mental_resilience": 62 + }, + "match_name": "Joexy", + "loan_listed": false, + "contract_end": "2026-06-01", + "potential_base": 73, + "transfer_listed": false, + "position": "Support", + "team_id": "tcl-dark-passage", + "nationality": "TR", + "date_of_birth": "2003-07-26", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "contract_end": "2026-07-01", + "transfer_listed": false, + "id": "player-3f634687", + "match_name": "Podex", + "full_name": "Berkay Çinpolat", + "position": "Jungle", + "team_id": "tcl-team-phoenix", + "nationality": "", + "date_of_birth": "2003-04-09", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 62, + "macro_play": 63, + "consistency": 64, + "shotcalling": 61, + "champion_pool": 61, + "discipline": 60, + "mental_resilience": 61 + }, + "loan_listed": false, + "potential_base": 71, + "transfer_listed": false, + "id": "player-456675f0", + "match_name": "Aytekn", + "full_name": "Aytekin Tekin", + "position": "Top", + "team_id": "tcl-pcific-esports", + "nationality": "TR", + "date_of_birth": "2004-07-28", + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": "/player-photos/c718c6a1a6df68e8.webp" + }, + { + "wage": 72000, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 64, + "laning": 65, + "teamfighting": 62, + "macro_play": 66, + "consistency": 65, + "shotcalling": 63, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 61 + }, + "loan_listed": false, + "contract_end": "2026-07-01", + "market_value": 34500, + "potential_base": 69, + "transfer_listed": false, + "id": "player-52665c56", + "match_name": "Kofte", + "full_name": "Emre Akça", + "position": "Mid", + "team_id": "tcl-misa-esports", + "nationality": "TR", + "date_of_birth": "2001-05-15", + "stats": {}, + "profile_image_url": "/player-photos/94ab935638ab5e73.webp" + }, + { + "wage": 3300, + "career": [], + "attributes": { + "mechanics": 63, + "laning": 64, + "teamfighting": 63, + "macro_play": 65, + "consistency": 64, + "shotcalling": 63, + "champion_pool": 62, + "discipline": 64, + "mental_resilience": 63 + }, + "loan_listed": false, + "market_value": 20000, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 72, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-564a1818", + "match_name": "FireAscept", + "full_name": "Resul Polat", + "position": "Mid", + "team_id": "tcl-pcific-esports", + "nationality": "TR", + "date_of_birth": "2006-09-20", + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-5666118e", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Tunahan Kevioğlu", + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 60, + "macro_play": 62, + "consistency": 60, + "shotcalling": 63, + "champion_pool": 62, + "discipline": 64, + "mental_resilience": 62 + }, + "match_name": "Kireas", + "contract_end": "2026-03-10", + "potential_base": 70, + "position": "Jungle", + "team_id": "tcl-dark-passage", + "nationality": "TR", + "date_of_birth": "2001-04-04", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/a47545b63af4f151.webp" + }, + { + "wage": 23400, + "career": [], + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 61, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-07-01", + "market_value": 11700, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 69, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-5f7e7ef8", + "match_name": "SmallBugi", + "full_name": "Yiğithan Yaşar", + "position": "Mid", + "team_id": "tcl-team-phoenix", + "nationality": "TR", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "contract_end": "2026-11-16", + "id": "player-67cd8bd2", + "match_name": "HolyPhoenix", + "full_name": "Anıl Işık", + "position": "ADC", + "team_id": "tcl-bushido-wildcats", + "nationality": "", + "date_of_birth": "1997-06-02", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/b86a454d83b7fde6.webp" + }, + { + "id": "player-6fbc9197", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Mustafa Selim Yılmaz", + "attributes": { + "mechanics": 60, + "laning": 64, + "teamfighting": 60, + "macro_play": 64, + "consistency": 62, + "shotcalling": 63, + "champion_pool": 59, + "discipline": 65, + "mental_resilience": 64 + }, + "match_name": "Carry", + "loan_listed": false, + "contract_end": "2026-07-01", + "potential_base": 67, + "transfer_listed": false, + "position": "Support", + "team_id": "tcl-misa-esports", + "nationality": "TR", + "date_of_birth": "2000-03-17", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/892a6be6804300da.webp" + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 70, + "laning": 71, + "teamfighting": 71, + "macro_play": 70, + "consistency": 70, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 68, + "mental_resilience": 66 + }, + "loan_listed": false, + "contract_end": "2026-06-24", + "potential_base": 79, + "transfer_listed": false, + "id": "player-752adfb4", + "match_name": "Dionelux", + "full_name": "Yağız Özvarna", + "position": "Top", + "team_id": "tcl-boostgate-esports", + "nationality": "TR", + "date_of_birth": "2006-08-24", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/e2f1e8491d07f82f.webp" + }, + { + "id": "player-7c5d8bbe", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Marley Benezech", + "attributes": { + "mechanics": 64, + "laning": 63, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Vespa", + "contract_end": "2026-06-25", + "potential_base": 72, + "position": "ADC", + "team_id": "tcl-su-esports", + "nationality": "FR", + "date_of_birth": "2002-12-02", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/0f57464364b968e5.webp" + }, + { + "id": "player-843e5af4", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Yağız Mert Tütüncüoğlu", + "attributes": { + "mechanics": 76, + "laning": 76, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 73, + "discipline": 76, + "mental_resilience": 76 + }, + "match_name": "Meto", + "contract_end": "2026-07-01", + "potential_base": 86, + "position": "Jungle", + "team_id": "tcl-team-phoenix", + "nationality": "TR", + "date_of_birth": "2005-02-13", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/153c78746783b576.webp" + }, + { + "id": "player-84a4a487", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Alp Eren Öğdem", + "attributes": { + "mechanics": 61, + "laning": 61, + "teamfighting": 62, + "macro_play": 60, + "consistency": 61, + "shotcalling": 61, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 58 + }, + "match_name": "Kurama", + "loan_listed": false, + "contract_end": "2026-06-25", + "potential_base": 70, + "transfer_listed": false, + "position": "Jungle", + "team_id": "tcl-bushido-wildcats", + "nationality": "TR", + "date_of_birth": "2005-05-08", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-07-01", + "potential_base": 69, + "transfer_listed": false, + "id": "player-8bdb0d29", + "match_name": "Hecabrand", + "full_name": "Dzhaner Feyzula", + "position": "Top", + "team_id": "tcl-team-phoenix", + "nationality": "BG", + "date_of_birth": "2005-12-24", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 65, + "laning": 62, + "teamfighting": 64, + "macro_play": 65, + "consistency": 64, + "shotcalling": 63, + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 64 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "potential_base": 74, + "transfer_listed": false, + "id": "player-8c60bca6", + "match_name": "StarScreen", + "full_name": "Soner Kaya", + "position": "Top", + "team_id": "tcl-ozarox-esports", + "nationality": "TR", + "date_of_birth": "2001-01-20", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/e0dfd4c46f281020.webp" + }, + { + "id": "player-8eb5f967", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Stend", + "attributes": { + "mechanics": 62, + "laning": 60, + "teamfighting": 57, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 56, + "discipline": 54, + "mental_resilience": 59 + }, + "match_name": "Stend", + "potential_base": 65, + "position": "Support", + "team_id": "tcl-misa-esports", + "nationality": "FR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "id": "player-a1200f38", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "İlker Bilen", + "attributes": { + "mechanics": 71, + "laning": 73, + "teamfighting": 70, + "macro_play": 72, + "consistency": 72, + "shotcalling": 71, + "champion_pool": 69, + "discipline": 70, + "mental_resilience": 72 + }, + "match_name": "Ruep", + "contract_end": "2026-07-01", + "potential_base": 79, + "position": "ADC", + "team_id": "tcl-misa-esports", + "nationality": "TR", + "date_of_birth": "2002-12-09", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/531c859ec3195e04.webp" + }, + { + "wage": 0, + "career": [], + "attributes": { + "mechanics": 60, + "laning": 62, + "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 61, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 + }, + "loan_listed": false, + "contract_end": "2026-11-16", + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 72, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-a304bf1e", + "match_name": "Cape", + "full_name": "Bedirhan Çalişkan", + "position": "Jungle", + "team_id": "tcl-ozarox-esports", + "nationality": "TR", + "date_of_birth": null, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 59, + "laning": 60, + "teamfighting": 61, + "macro_play": 60, + "consistency": 60, + "shotcalling": 61, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 60 + }, + "loan_listed": false, + "contract_end": "2026-06-01", + "potential_base": 67, + "transfer_listed": false, + "id": "player-a92a7ef2", + "match_name": "Sangrod", + "full_name": "Kerem Güzel", + "position": "Top", + "team_id": "tcl-dark-passage", "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "date_of_birth": "2001-08-15", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/3f7b7d77f10b1e46.webp" + }, + { + "wage": 44400, + "career": [], "attributes": { - "laning": 68, - "mechanics": 67, + "mechanics": 63, + "laning": 62, + "teamfighting": 61, + "macro_play": 62, + "consistency": 62, + "shotcalling": 61, + "champion_pool": 60, "discipline": 60, - "macro_play": 69, - "consistency": 69, - "shotcalling": 60, - "teamfighting": 56, - "champion_pool": 67, - "mental_resilience": 60 + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-ozarox-esports", - "traits": [], - "contract_end": null, - "wage": 44400, + "loan_listed": false, + "contract_end": "2026-11-16", "market_value": 24000, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "AURORA Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galakticos Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Fenerbahçe Academy\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "⁠Phoenix Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Fourth Wall", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "GnG Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠eSuba", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SU Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Ozarox Esports", - "appearances": 0 - } - ], - "training_focus": null, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 67, + "stats.condition": "100", "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "id": "player-b2160bc5", + "match_name": "Fade", + "full_name": "Fatih Kurşun", + "position": "Mid", + "team_id": "tcl-ozarox-esports", + "nationality": "TR", + "date_of_birth": "2003-11-03", + "stats": {}, + "profile_image_url": null }, { - "id": "player-ba94a490", - "match_name": "Tomasz Gas", - "full_name": "Iwanan", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, "attributes": { - "laning": 60, - "mechanics": 72, - "discipline": 60, - "macro_play": 64, - "consistency": 65, - "shotcalling": 64, - "teamfighting": 72, + "mechanics": 73, + "laning": 70, + "teamfighting": 70, + "macro_play": 72, + "consistency": 70, + "shotcalling": 73, "champion_pool": 71, - "mental_resilience": 62 + "discipline": 70, + "mental_resilience": 68 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-boostgate-esports", - "traits": [], - "contract_end": null, + "loan_listed": false, + "contract_end": "2026-06-25", + "potential_base": 78, + "transfer_listed": false, + "id": "player-b85eaf08", + "match_name": "Ersin", + "full_name": "Salim Ersin Altıparmak", + "position": "Top", + "team_id": "tcl-bushido-wildcats", + "nationality": "TR", + "date_of_birth": "2004-03-09", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null + }, + { "wage": 44400, + "career": [], + "attributes": { + "mechanics": 64, + "laning": 60, + "teamfighting": 64, + "macro_play": 57, + "consistency": 60, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 57, + "mental_resilience": 55 + }, + "loan_listed": false, + "contract_end": "2026-06-24", "market_value": 24000, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 65, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-ba94a490", + "match_name": "Iwanan", + "full_name": "Tomasz Gas", + "position": "Mid", + "team_id": "tcl-boostgate-esports", + "nationality": "PL", + "date_of_birth": null, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Actions Per Minute", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Meavedron", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Zero Tenacity", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "GMBLERS Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Orbit Anonymo", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - } - ], - "training_focus": null, + "profile_image_url": null + }, + { + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "condition": 100, + "attributes": { + "mechanics": 66, + "laning": 66, + "teamfighting": 65, + "macro_play": 66, + "consistency": 66, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 64, + "mental_resilience": 65 + }, + "loan_listed": false, + "contract_end": "2026-06-25", + "potential_base": 74, "transfer_listed": false, + "id": "player-c3094769", + "match_name": "Leks", + "full_name": "Aleksan Zaruki", + "position": "Top", + "team_id": "tcl-su-esports", + "nationality": "TR", + "date_of_birth": "2003-01-25", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/cc0f7de18f9eedd3.webp" + }, + { + "id": "player-c9afca1f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Spyridon Pantelopoulos", + "attributes": { + "mechanics": 70, + "laning": 70, + "teamfighting": 70, + "macro_play": 70, + "consistency": 72, + "shotcalling": 67, + "champion_pool": 72, + "discipline": 70, + "mental_resilience": 68 + }, + "match_name": "Centu", "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-06-24", + "potential_base": 83, + "transfer_listed": false, + "position": "Support", + "team_id": "tcl-boostgate-esports", + "nationality": "GR", + "date_of_birth": "2004-08-03", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": null }, { - "id": "player-38c26301", - "match_name": "Eren Yücel", - "full_name": "Warner", - "date_of_birth": "2005-06-23", + "id": "player-d8fdd88c", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Tunahan Durmaz", + "attributes": { + "mechanics": 71, + "laning": 72, + "teamfighting": 74, + "macro_play": 71, + "consistency": 71, + "shotcalling": 71, + "champion_pool": 71, + "discipline": 68, + "mental_resilience": 68 + }, + "match_name": "Jeyrus", + "contract_end": "2026-06-25", + "potential_base": 79, + "position": "ADC", + "team_id": "tcl-bushido-wildcats", "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "date_of_birth": "2002-09-24", + "wage": 0, + "market_value": 0, + "stats": {}, + "profile_image_url": "/player-photos/da38587e7a1e4fc6.webp" + }, + { + "wage": 55200, + "career": [], "attributes": { - "laning": 62, - "mechanics": 61, - "discipline": 66, - "macro_play": 63, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, "consistency": 64, - "shotcalling": 64, - "teamfighting": 61, - "champion_pool": 62, - "mental_resilience": 60 + "shotcalling": 55, + "champion_pool": 60, + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-bushido-wildcats", - "traits": [], - "contract_end": null, - "wage": 41.4, - "market_value": 20.6, - "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Gamespace MCE", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Fox Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Baam Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Bushido Wildcats", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2026-06-25", + "market_value": 28750, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 71, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-da2efcc9", + "match_name": "Secrett", + "full_name": "Maciej Charzyński", + "position": "Mid", + "team_id": "tcl-su-esports", + "nationality": "PL", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { + "wage": 2650, + "career": [], + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 61, + "macro_play": 58, + "consistency": 56, + "shotcalling": 61, + "champion_pool": 61, + "discipline": 58, + "mental_resilience": 58 + }, + "loan_listed": false, + "contract_end": "2026-03-10", + "market_value": 15000, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 67, + "stats.condition": "100", + "transfer_listed": false, "id": "player-e970485e", - "match_name": "Yunus Emre Şahin", - "full_name": "Ksaez", - "date_of_birth": "2000-12-12", + "match_name": "KSAEZ", + "full_name": "Yunus Emre Şahin", + "position": "Mid", + "team_id": "tcl-dark-passage", "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "date_of_birth": "2000-11-12", + "stats": {}, + "profile_image_url": "/player-photos/bda3a3c42e00af82.webp" + }, + { + "id": "player-ee635235", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "SlowQ", "attributes": { - "laning": 61, - "mechanics": 60, - "discipline": 64, - "macro_play": 63, + "mechanics": 62, + "laning": 64, + "teamfighting": 62, + "macro_play": 62, "consistency": 64, - "shotcalling": 66, - "teamfighting": 63, - "champion_pool": 70, + "shotcalling": 57, + "champion_pool": 61, + "discipline": 66, "mental_resilience": 66 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-dark-passage", - "traits": [], - "contract_end": null, - "wage": 2650, - "market_value": 15000, + "match_name": "SlowQ", + "potential_base": 72, + "position": "Mid", + "team_id": "tcl-misa-esports", + "nationality": "KR", + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Team Cappadocia", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "⁠RY Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "SUP Academy", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "SuperMassive", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Beşiktaş Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": null }, { - "id": "player-5f7e7ef8", - "match_name": "Yiğithan Yaşar", - "full_name": "SmallBugi", - "date_of_birth": null, - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-efc0f6cd", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Pedro Simões", "attributes": { - "laning": 57, "mechanics": 58, - "discipline": 61, - "macro_play": 57, + "laning": 56, + "teamfighting": 56, + "macro_play": 58, "consistency": 56, - "shotcalling": 60, - "teamfighting": 66, - "champion_pool": 64, - "mental_resilience": 62 + "shotcalling": 55, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 56 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-team-phoenix", - "traits": [], - "contract_end": null, - "wage": 23400, - "market_value": 11700, + "match_name": "Bicas", + "contract_end": "2026-06-24", + "potential_base": 63, + "position": "Jungle", + "team_id": "tcl-boostgate-esports", + "nationality": "PT", + "date_of_birth": null, + "wage": 0, + "market_value": 0, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "R5 Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Team Phoenix", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/d59bc338b61a62a2.webp" }, { - "id": "player-564a1818", - "match_name": "Resul Polat", - "full_name": "FireAscept", - "date_of_birth": "2006-09-20", + "id": "player-f0d328d6", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Creal", + "attributes": { + "mechanics": 67, + "laning": 65, + "teamfighting": 70, + "macro_play": 64, + "consistency": 65, + "shotcalling": 71, + "champion_pool": 67, + "discipline": 71, + "mental_resilience": 68 + }, + "match_name": "Creal", + "potential_base": 75, + "position": "Mid", + "team_id": "tcl-bushido-wildcats", "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "date_of_birth": null, + "wage": 0, + "market_value": 0, + "contract_end": "", + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "contract_end": "2026-11-16", + "id": "player-f0e036fb", + "match_name": "MonkaS", + "full_name": "Mehmet Kaan Sönmez", + "position": "Support", + "team_id": "tcl-ozarox-esports", + "nationality": "", + "date_of_birth": "2001-10-26", + "wage": 0, + "market_value": 0, + "potential_base": 0, "attributes": { - "laning": 66, - "mechanics": 56, - "discipline": 68, - "macro_play": 62, - "consistency": 58, - "shotcalling": 60, - "teamfighting": 57, - "champion_pool": 63, - "mental_resilience": 62 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 75, - "team_id": "tcl-pcific-esports", - "traits": [], - "contract_end": null, - "wage": 3300, - "market_value": 20000, "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Ascendance", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠Comanchero Gaming\t", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "BoostGate Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "PCIFIC Esports", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/92bb7a0a4c566888.webp" }, { - "id": "player-da2efcc9", - "match_name": "Maciej Charzyński", - "full_name": "Secrett", - "date_of_birth": null, - "nationality": "PL", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 39000, + "career": [], "attributes": { - "laning": 64, - "mechanics": 70, - "discipline": 64, - "macro_play": 69, - "consistency": 64, - "shotcalling": 60, - "teamfighting": 68, - "champion_pool": 58, - "mental_resilience": 62 + "mechanics": 76, + "laning": 75, + "teamfighting": 76, + "macro_play": 76, + "consistency": 76, + "shotcalling": 73, + "champion_pool": 72, + "discipline": 74, + "mental_resilience": 75 }, - "condition": 100, - "morale": 100, - "fitness": 75, + "loan_listed": false, + "contract_end": "2026-06-25", + "market_value": 18000, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 83, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-f28272fb", + "match_name": "RAMES", + "full_name": "Mustafa Korkmaz", + "position": "Jungle", "team_id": "tcl-su-esports", - "traits": [], - "contract_end": null, - "wage": 55200, - "market_value": 28750, + "nationality": "TR", + "date_of_birth": "2004-01-05", "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "⁠GTZ Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "WLGaming Esports", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Anubis Gaming", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "⁠Forsaken", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "SU Esports", - "appearances": 0 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 71, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/0a766ba6baf88d95.webp" }, { - "id": "player-52665c56", - "match_name": "Emre Akça", - "full_name": "Kofte", - "date_of_birth": "2001-05-15", - "nationality": "TR", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "wage": 0, + "career": [], "attributes": { - "laning": 69, "mechanics": 66, - "discipline": 70, - "macro_play": 72, - "consistency": 72, - "shotcalling": 68, - "teamfighting": 65, - "champion_pool": 68, - "mental_resilience": 68 + "laning": 66, + "teamfighting": 64, + "macro_play": 66, + "consistency": 66, + "shotcalling": 63, + "champion_pool": 63, + "discipline": 62, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "loan_listed": false, + "contract_end": "2026-11-16", + "market_value": 0, + "stats.injury": "", + "stats.morale": "100", + "stats.fitness": "100", + "potential_base": 71, + "stats.condition": "100", + "transfer_listed": false, + "id": "player-f419fc4a", + "match_name": "113", + "full_name": "Doğukan Balcı", + "position": "Jungle", "team_id": "tcl-misa-esports", - "traits": [], - "contract_end": null, - "wage": 72000, - "market_value": 34500, + "nationality": "TR", + "date_of_birth": "2004-08-12", "stats": {}, - "career": [ - { - "kills": 0, - "deaths": 0, - "season": 2018, - "assists": 0, - "team_id": "", - "team_name": "Valhalla Vikings", - "appearances": 0 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "HWA Gaming", - "appearances": 18 - }, - { - "kills": 0, - "deaths": 0, - "season": 2019, - "assists": 0, - "team_id": "", - "team_name": "Istanbul Wildcats", - "appearances": 37 - }, - { - "kills": 0, - "deaths": 0, - "season": 2020, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Esports", - "appearances": 18 - }, - { - "kills": 0, - "deaths": 0, - "season": 2021, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 45 - }, - { - "kills": 0, - "deaths": 0, - "season": 2022, - "assists": 0, - "team_id": "", - "team_name": "Galatasaray Esports", - "appearances": 32 - }, - { - "kills": 0, - "deaths": 0, - "season": 2023, - "assists": 0, - "team_id": "", - "team_name": "Istanbul Wildcats", - "appearances": 75 - }, - { - "kills": 0, - "deaths": 0, - "season": 2024, - "assists": 0, - "team_id": "", - "team_name": "Z10", - "appearances": 113 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Dark Passage", - "appearances": 22 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Bushido Wildcats", - "appearances": 37 - }, - { - "kills": 0, - "deaths": 0, - "season": 2025, - "assists": 0, - "team_id": "", - "team_name": "Misa Esports", - "appearances": 11 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "S2G Esports", - "appearances": 29 - }, - { - "kills": 0, - "deaths": 0, - "season": 2026, - "assists": 0, - "team_id": "", - "team_name": "Misa Esports", - "appearances": 8 - } - ], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 73, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/86a12a49fd3fad59.webp" } ] } \ No newline at end of file diff --git a/data/players/vcs_players.json b/data/players/vcs_players.json index 3c6ded333..699d6021a 100644 --- a/data/players/vcs_players.json +++ b/data/players/vcs_players.json @@ -4,949 +4,1309 @@ "players": [ { "id": "player-0bbfbad5", - "match_name": "SkyK", - "full_name": "SkyK", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2b60138b", + "condition": 100, + "full_name": "Nguyễn Thái Kiệt", "attributes": { - "laning": 61, "mechanics": 60, - "discipline": 60, + "laning": 61, + "teamfighting": 62, "macro_play": 60, "consistency": 60, "shotcalling": 55, - "teamfighting": 62, "champion_pool": 59, + "discipline": 60, "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SkyK", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2028-11-18", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": "2005-03-27", + "stats": {}, + "profile_image_url": "/player-photos/0f449c07bafce87f.webp" }, { - "id": "player-2f226c7c", - "match_name": "SanSan", - "full_name": "SanSan", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-19fa967e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-0b0654fe", + "condition": 100, + "full_name": "DINO Yashiro2", "attributes": { - "laning": 62, "mechanics": 63, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, + "laning": 64, "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, "champion_pool": 59, - "mental_resilience": 61 + "discipline": 63, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "DINO Yashiro2", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null }, { - "id": "player-e3cfd19b", - "match_name": "Emo", - "full_name": "Emo", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-1c5531fe", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd683e2d", + "condition": 100, + "full_name": "Huỳnh Thiếc Tuấn", "attributes": { - "laning": 62, "mechanics": 64, - "discipline": 60, - "macro_play": 62, - "consistency": 63, + "laning": 64, + "teamfighting": 63, + "macro_play": 64, + "consistency": 64, "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 62 + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Aomine", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bad4f46c", - "match_name": "Nuna", - "full_name": "Nuna", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 58, - "mechanics": 58, - "discipline": 61, - "macro_play": 58, - "consistency": 58, - "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 59 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": "2001-08-28", + "stats": {}, + "profile_image_url": "/player-photos/417ca1bec8eed73e.webp" }, { - "id": "player-ffd216e5", - "match_name": "Clyde", - "full_name": "Clyde", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 56, - "mechanics": 56, - "discipline": 64, - "macro_play": 58, - "consistency": 56, - "shotcalling": 55, - "teamfighting": 58, - "champion_pool": 57, - "mental_resilience": 62 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "contract_end": null, + "career": [], + "id": "player-1db8680c", + "match_name": "Haaland", + "full_name": "Nguyễn Thanh Nhã", + "position": "Top", + "team_id": "team-cf666c65", + "nationality": "", + "date_of_birth": "2003-02-25", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 64, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/a6b648f759015027.webp" }, { - "id": "player-e7486fa7", - "match_name": "AisyL", - "full_name": "AisyL", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-2499f4df", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd683e2d", + "condition": 100, + "full_name": "Đồng Nguyễn Tấn Lộc", "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 63, - "macro_play": 63, - "consistency": 64, + "mechanics": 63, + "laning": 63, + "teamfighting": 63, + "macro_play": 64, + "consistency": 63, "shotcalling": 55, - "teamfighting": 64, "champion_pool": 61, + "discipline": 63, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Nern", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "VN", + "date_of_birth": "2005-10-22", + "stats": {}, + "profile_image_url": "/player-photos/4b29d14db086f7e8.webp" }, { - "id": "player-1c5531fe", - "match_name": "Aomine", - "full_name": "Aomine", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-2ac58114", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Võ Văn Phi", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 62, + "laning": 63, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 63, "champion_pool": 61, + "discipline": 63, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Kairi", + "position": "Support", "team_id": "team-cd683e2d", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2002-12-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/7c59fae69d12f51a.webp" }, { - "id": "player-76475360", - "match_name": "Vin", - "full_name": "Vin", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 61, - "discipline": 61, - "macro_play": 60, - "consistency": 60, + "id": "player-2e6b37fe", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Phạm Lê Cao Tấn", + "attributes": { + "mechanics": 61, + "laning": 62, + "teamfighting": 63, + "macro_play": 58, + "consistency": 61, "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 60, - "mental_resilience": 61 + "champion_pool": 59, + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, + "match_name": "Callian", + "loan_listed": false, + "contract_end": "2028-11-16", + "transfer_listed": false, + "position": "Support", + "team_id": "team-2b60138b", + "nationality": "VN", + "date_of_birth": "2006-05-17", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "stats": {}, + "profile_image_url": "/player-photos/f76a33bed59a272a.webp" + }, + { + "id": "player-2f226c7c", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-3cd254ed", - "traits": [], - "contract_end": null, + "team_id": "team-2b60138b", + "condition": 100, + "full_name": "Lê Quốc Khánh", + "attributes": { + "mechanics": 63, + "laning": 62, + "teamfighting": 64, + "macro_play": 62, + "consistency": 62, + "shotcalling": 55, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "SanSan", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2028-11-16", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "VN", + "date_of_birth": "2006-12-10", + "stats": {}, + "profile_image_url": "/player-photos/57b297afabec0649.webp" + }, + { + "career": [], + "id": "player-3a004205", + "match_name": "Easylove", + "full_name": "Hứa Thành An", + "position": "ADC", + "team_id": "team-0b0654fe", + "nationality": "", + "date_of_birth": "1999-11-26", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/276b797fa8007c49.webp" + }, + { + "id": "player-49258aa1", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cd254ed", + "condition": 100, + "full_name": "RyuK2", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 62, + "macro_play": 62, + "consistency": 60, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 60 + }, + "match_name": "RyuK2", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "VN", + "date_of_birth": null, + "stats": {}, + "profile_image_url": "/player-photos/6247cf0922deeca4.webp" }, { - "id": "player-d4675232", - "match_name": "GiaQui", - "full_name": "GiaQui", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "MID", - "natural_position": "MID", - "alternate_positions": [], + "id": "player-5863cc32", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cf666c65", + "condition": 100, + "full_name": "Huỳnh Nguyễn Duy Thức", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, + "match_name": "Solis", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "VN", + "date_of_birth": "2004-04-30", + "stats": {}, + "profile_image_url": "/player-photos/b545bbf7eb728ef7.webp" + }, + { + "career": [], + "contract_end": "2028-11-16", + "id": "player-5d20721a", + "match_name": "NPC", + "full_name": "Bùi Phan Thành Nhân", + "position": "Mid", + "team_id": "team-2b60138b", + "nationality": "", + "date_of_birth": "2007-03-07", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/994f5fc25d234756.webp" + }, + { + "career": [], + "contract_end": "2026-12-01", + "id": "player-665b801f", + "match_name": "Rayq", + "full_name": "Trần Bảo Quang", + "position": "Jungle", + "team_id": "team-0b0654fe", + "nationality": "", + "date_of_birth": "2004-03-12", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/3616b6be650d9ad9.webp" + }, + { + "id": "player-76475360", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, - "team_id": "team-cf666c65", - "traits": [], - "contract_end": null, + "team_id": "team-3cd254ed", + "condition": 100, + "full_name": "Trần Hoài Vinh", + "attributes": { + "mechanics": 61, + "laning": 60, + "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 55, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "Vin", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, + "potential_base": 67, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "VN", + "date_of_birth": "2003-03-21", + "stats": {}, + "profile_image_url": "/player-photos/a4f8387f4dd67fd9.webp" + }, + { + "career": [], + "loan_listed": false, + "transfer_listed": false, + "id": "player-8b783618", + "match_name": "TT", + "full_name": "Trần Quốc Thanh", + "position": "Mid", + "team_id": "team-cd683e2d", + "nationality": "", + "date_of_birth": "2002-11-20", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, + "profile_image_url": "/player-photos/4e1ae2932e34c99e.webp" + }, + { + "id": "player-9029b334", + "wage": 0, "career": [], - "training_focus": null, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cf666c65", + "condition": 100, + "full_name": "Lâm Tiểu Minh", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 + }, + "match_name": "Charlington", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 70, "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": "2004-10-16", + "stats": {}, + "profile_image_url": "/player-photos/14ea16a8c090a4ea.webp" + }, + { + "id": "player-afc0ae8e", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cd254ed", + "condition": 100, + "full_name": "Võ Hoàng Lê Khang", + "attributes": { + "mechanics": 74, + "laning": 74, + "teamfighting": 74, + "macro_play": 74, + "consistency": 74, + "shotcalling": 70, + "champion_pool": 71, + "discipline": 73, + "mental_resilience": 73 + }, + "match_name": "RyuK2", "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, + "potential_base": 80, + "transfer_listed": false, "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "AT", + "date_of_birth": "2003-06-22", + "stats": {}, + "profile_image_url": "/player-photos/6247cf0922deeca4.webp" + }, + { + "id": "player-b4fbb17c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-12d8ddae", + "condition": 100, + "full_name": "Phùng Đức Tài", + "attributes": { + "mechanics": 58, + "laning": 61, + "teamfighting": 62, + "macro_play": 60, + "consistency": 58, + "shotcalling": 55, + "champion_pool": 59, + "discipline": 58, + "mental_resilience": 56 + }, + "match_name": "Nanaue", + "loan_listed": false, "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2028-12-15", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "VN", + "date_of_birth": "2006-06-14", + "stats": {}, + "profile_image_url": "/player-photos/278414fc07f9ff94.webp" }, { - "id": "player-cb03c2d9", - "match_name": "Vit", - "full_name": "Vit", - "date_of_birth": null, + "career": [], + "contract_end": "2028-12-15", + "id": "player-b5f898f6", + "match_name": "BayMaxxx", + "full_name": "Nguyễn Quang Tú", + "position": "Mid", + "team_id": "team-12d8ddae", + "nationality": "", + "date_of_birth": "2005-08-05", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/08e2d94dd1ee4582.webp" + }, + { + "id": "player-b79de885", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cd254ed", + "condition": 100, + "full_name": "Nguyễn Nhật Trường", + "attributes": { + "mechanics": 62, + "laning": 61, + "teamfighting": 62, + "macro_play": 62, + "consistency": 62, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 61, + "mental_resilience": 62 + }, + "match_name": "NtNt", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2027-11-15", + "market_value": 0, + "potential_base": 68, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", "nationality": "VN", - "profile_image_url": null, + "date_of_birth": "2000-01-20", + "stats": {}, + "profile_image_url": "/player-photos/77496faf3e653837.webp" + }, + { + "id": "player-bad4f46c", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-12d8ddae", + "condition": 100, + "full_name": "Lê Quốc Anh", + "attributes": { + "mechanics": 58, + "laning": 58, + "teamfighting": 62, + "macro_play": 58, + "consistency": 58, + "shotcalling": 55, + "champion_pool": 60, + "discipline": 61, + "mental_resilience": 59 + }, + "match_name": "Nuna", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2028-12-15", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], "position": "ADC", - "natural_position": "ADC", + "nationality": "VN", + "date_of_birth": "2005-02-20", + "stats": {}, + "profile_image_url": "/player-photos/aaebea73c7e05d15.webp" + }, + { + "id": "player-bbbc0755", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-12d8ddae", + "condition": 100, + "full_name": "Umi", + "attributes": { + "mechanics": 56, + "laning": 56, + "teamfighting": 58, + "macro_play": 56, + "consistency": 56, + "shotcalling": 55, + "champion_pool": 59, + "discipline": 62, + "mental_resilience": 61 + }, + "match_name": "Umi", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", + "market_value": 0, + "potential_base": 65, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Jungle", + "nationality": "VN", + "date_of_birth": null, + "stats": {}, + "profile_image_url": null + }, + { + "career": [], + "loan_listed": false, + "contract_end": "2028-11-18", + "transfer_listed": false, + "id": "player-bddb2f0b", + "match_name": "Hy", + "full_name": "Phan Hoàng Huy", + "position": "Mid", + "team_id": "team-2b60138b", + "nationality": "", + "date_of_birth": "2006-01-11", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/6008a536dbfd5332.webp" + }, + { + "career": [], + "contract_end": "2028-12-15", + "id": "player-ca3cf125", + "match_name": "Dara2", + "full_name": "Chau Đa Ra", + "position": "Support", + "team_id": "team-12d8ddae", + "nationality": "", + "date_of_birth": "2006-09-24", + "wage": 0, + "market_value": 0, + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, + "stats": {}, + "profile_image_url": "/player-photos/5b8689398c9aa287.webp" + }, + { + "id": "player-cb03c2d9", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-3cd254ed", + "condition": 100, + "full_name": "Lê Hoài An", "attributes": { - "laning": 62, "mechanics": 60, - "discipline": 63, + "laning": 62, + "teamfighting": 62, "macro_play": 61, "consistency": 61, "shotcalling": 55, - "teamfighting": 62, "champion_pool": 59, + "discipline": 63, "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "Vit", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-9029b334", - "match_name": "Charlington", - "full_name": "Charlington", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], - "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 64, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 64 - }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "traits": [], - "contract_end": null, - "wage": 0, + "contract_end": "2027-11-15", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 67, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "ADC", + "nationality": "VN", + "date_of_birth": "2001-02-19", + "stats": {}, + "profile_image_url": "/player-photos/b21d19136ce854bd.webp" }, { - "id": "player-2499f4df", - "match_name": "Nern", - "full_name": "Nern", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-cb94c9ab", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Phạm Thạch Nhân Băng", "attributes": { - "laning": 63, - "mechanics": 63, - "discipline": 63, + "mechanics": 64, + "laning": 64, + "teamfighting": 63, "macro_play": 64, "consistency": 63, "shotcalling": 55, - "teamfighting": 63, - "champion_pool": 61, + "champion_pool": 60, + "discipline": 62, "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "traits": [], - "contract_end": null, + "match_name": "Elio", + "contract_end": "2026-12-01", + "position": "Support", + "team_id": "team-0b0654fe", + "nationality": "VN", + "date_of_birth": "2000-11-07", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/fac1dc5ecdf4b240.webp" }, { - "id": "player-ec0220d4", - "match_name": "SCP", - "full_name": "SCP", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-d1faeb23", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Nguyễn Tuấn Thọ", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Zin", + "position": "Support", "team_id": "team-cf666c65", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "1999-01-11", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/fc9c30d048fcf13f.webp" }, { - "id": "player-e97dc6c3", - "match_name": "Copper", - "full_name": "Copper", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-d4675232", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cf666c65", + "condition": 100, + "full_name": "Nguyễn Gia Qui", "attributes": { - "laning": 60, - "mechanics": 60, - "discipline": 61, - "macro_play": 60, - "consistency": 60, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 55, - "teamfighting": 56, - "champion_pool": 59, - "mental_resilience": 61 + "champion_pool": 61, + "discipline": 64, + "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-2b60138b", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "GiaQui", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 70, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "VN", + "date_of_birth": "2004-03-21", + "stats": {}, + "profile_image_url": "/player-photos/a7edd6b84434d099.webp" }, { - "id": "player-b4fbb17c", - "match_name": "Nanaue", - "full_name": "Nanaue", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-e05e964a", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd683e2d", + "condition": 100, + "full_name": "Lê Đình Tấn", "attributes": { - "laning": 61, - "mechanics": 58, - "discipline": 58, - "macro_play": 60, - "consistency": 58, + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 64, + "consistency": 64, "shotcalling": 55, - "teamfighting": 62, - "champion_pool": 59, - "mental_resilience": 56 + "champion_pool": 61, + "discipline": 62, + "mental_resilience": 63 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-12d8ddae", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "J1n5", + "loan_listed": false, + "morale_core": {}, + "contract_end": "", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 69, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 66, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "VN", + "date_of_birth": "2003-05-01", + "stats": {}, + "profile_image_url": "/player-photos/bb28fe17001f267b.webp" }, { - "id": "player-f2b17afb", - "match_name": "Virgo", - "full_name": "Virgo", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], - "attributes": { - "laning": 60, - "mechanics": 63, - "discipline": 62, - "macro_play": 60, - "consistency": 60, - "shotcalling": 55, - "teamfighting": 61, - "champion_pool": 61, - "mental_resilience": 63 - }, - "condition": 100, + "id": "player-e3cfd19b", + "wage": 0, + "career": [], + "injury": null, "morale": 100, "fitness": 100, "team_id": "team-0b0654fe", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "condition": 100, + "full_name": "Nguyễn Thái Vinh", + "attributes": { + "mechanics": 64, + "laning": 62, + "teamfighting": 62, + "macro_play": 62, + "consistency": 63, + "shotcalling": 55, + "champion_pool": 60, + "discipline": 60, + "mental_resilience": 62 + }, + "match_name": "Emo", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "2026-12-01", + "market_value": 0, "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null - }, - { - "id": "player-bbbc0755", - "match_name": "Umi", - "full_name": "Umi", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], "alternate_positions": [], + "position": "Mid", + "nationality": "VN", + "date_of_birth": "2005-07-15", + "stats": {}, + "profile_image_url": "/player-photos/4e5a8085142c3be2.webp" + }, + { + "id": "player-e6186510", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Trần Hoàng Huy", "attributes": { - "laning": 56, "mechanics": 56, - "discipline": 62, + "laning": 60, + "teamfighting": 59, "macro_play": 56, "consistency": 56, "shotcalling": 55, - "teamfighting": 58, "champion_pool": 59, - "mental_resilience": 61 + "discipline": 62, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Tahahy", + "contract_end": "2029-04-20", + "position": "Support", "team_id": "team-12d8ddae", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2002-06-08", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/630ef2501e22d9c0.webp" + }, + { + "id": "player-e7486fa7", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cd683e2d", + "condition": 100, + "full_name": "Nguyễn Hoàng Phú", + "attributes": { + "mechanics": 64, + "laning": 64, + "teamfighting": 64, + "macro_play": 63, + "consistency": 64, + "shotcalling": 55, + "champion_pool": 61, + "discipline": 63, + "mental_resilience": 63 + }, + "match_name": "AisyL", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 65, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "", + "market_value": 0, + "potential_base": 69, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "VN", + "date_of_birth": "2005-02-20", + "stats": {}, + "profile_image_url": "/player-photos/ad3ebabededac006.webp" }, { - "id": "player-49258aa1", - "match_name": "SCBC RyuK2", - "full_name": "SCBC RyuK2", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-e8bee72f", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Nguyễn Văn Huy", "attributes": { + "mechanics": 60, "laning": 60, - "mechanics": 61, - "discipline": 62, - "macro_play": 62, - "consistency": 60, - "shotcalling": 55, "teamfighting": 62, - "champion_pool": 61, - "mental_resilience": 60 + "macro_play": 60, + "consistency": 63, + "shotcalling": 55, + "champion_pool": 60, + "discipline": 62, + "mental_resilience": 61 }, - "condition": 100, - "morale": 100, - "fitness": 100, + "match_name": "Shogun", + "loan_listed": false, + "contract_end": "2027-11-15", + "transfer_listed": false, + "position": "Support", "team_id": "team-3cd254ed", - "traits": [], - "contract_end": null, + "nationality": "VN", + "date_of_birth": "2004-03-31", "wage": 0, "market_value": 0, + "potential_base": 0, "stats": {}, + "profile_image_url": "/player-photos/37a086d47b07fcf3.webp" + }, + { + "id": "player-e97dc6c3", + "wage": 0, "career": [], - "training_focus": null, - "transfer_listed": false, + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-2b60138b", + "condition": 100, + "full_name": "Phùng Khánh Đồng", + "attributes": { + "mechanics": 60, + "laning": 60, + "teamfighting": 56, + "macro_play": 60, + "consistency": 60, + "shotcalling": 55, + "champion_pool": 59, + "discipline": 61, + "mental_resilience": 61 + }, + "match_name": "Copper", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, - "potential_base": 67, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "contract_end": "2028-11-18", + "market_value": 0, + "potential_base": 66, + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Top", + "nationality": "VN", + "date_of_birth": "2005-07-29", + "stats": {}, + "profile_image_url": "/player-photos/ecfcaf605244c9e2.webp" }, { - "id": "player-5863cc32", - "match_name": "Solis", - "full_name": "Solis", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "TOP", - "natural_position": "TOP", - "alternate_positions": [], + "id": "player-ec0220d4", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-cf666c65", + "condition": 100, + "full_name": "Lê Tấn Tỷ", "attributes": { - "laning": 64, "mechanics": 64, - "discipline": 64, + "laning": 64, + "teamfighting": 64, "macro_play": 64, "consistency": 64, "shotcalling": 55, - "teamfighting": 64, "champion_pool": 61, + "discipline": 64, "mental_resilience": 64 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cf666c65", - "traits": [], - "contract_end": null, - "wage": 0, - "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, + "match_name": "SCP", "loan_listed": false, - "transfer_offers": [], "morale_core": {}, + "contract_end": "", + "market_value": 0, "potential_base": 70, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "transfer_listed": false, + "transfer_offers": [], + "champion_mastery": [], + "alternate_positions": [], + "position": "Jungle", + "nationality": "VN", + "date_of_birth": "2005-07-10", + "stats": {}, + "profile_image_url": "/player-photos/62acac3c92366e97.webp" }, { - "id": "player-b79de885", - "match_name": "NtNt", - "full_name": "NtNt", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "id": "player-f2b17afb", + "career": [], + "morale": 100, + "fitness": 100, + "condition": 100, + "full_name": "Đào Châu Trí Cường", "attributes": { - "laning": 61, "mechanics": 62, - "discipline": 61, - "macro_play": 62, - "consistency": 62, - "shotcalling": 55, + "laning": 57, "teamfighting": 62, + "macro_play": 60, + "consistency": 60, + "shotcalling": 63, "champion_pool": 61, - "mental_resilience": 62 + "discipline": 62, + "mental_resilience": 60 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-3cd254ed", - "traits": [], - "contract_end": null, + "match_name": "Virgo", + "loan_listed": false, + "contract_end": "2026-12-01", + "potential_base": 71, + "transfer_listed": false, + "position": "Top", + "team_id": "team-0b0654fe", + "nationality": "TR", + "date_of_birth": "2005-09-21", "wage": 0, "market_value": 0, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 68, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/eb9f938858f8c705.webp" }, { - "id": "player-e05e964a", - "match_name": "j1n5", - "full_name": "j1n5", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "JUNGLE", - "natural_position": "JUNGLE", - "alternate_positions": [], + "career": [], + "loan_listed": false, + "contract_end": "2028-12-15", + "transfer_listed": false, + "id": "player-f71343e3", + "match_name": "666", + "full_name": "Kiều Minh Huy", + "position": "Jungle", + "team_id": "team-12d8ddae", + "nationality": "", + "date_of_birth": "2007-11-09", + "wage": 0, + "market_value": 0, + "potential_base": 0, "attributes": { - "laning": 64, - "mechanics": 64, - "discipline": 62, - "macro_play": 64, - "consistency": 64, - "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 61, - "mental_resilience": 63 + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-cd683e2d", - "traits": [], - "contract_end": null, + "stats": {}, + "profile_image_url": "/player-photos/28476ba58927349b.webp" + }, + { + "career": [], + "id": "player-fb09c941", + "match_name": "PTM", + "full_name": "Trần Gia Huy", + "position": "Support", + "team_id": "team-cf666c65", + "nationality": "", + "date_of_birth": "2002-08-11", "wage": 0, "market_value": 0, + "contract_end": "", + "potential_base": 0, + "attributes": { + "mechanics": 50, + "laning": 50, + "teamfighting": 50, + "macro_play": 50, + "consistency": 50, + "shotcalling": 50, + "champion_pool": 50, + "discipline": 50, + "mental_resilience": 50 + }, "stats": {}, - "career": [], - "training_focus": null, - "transfer_listed": false, - "loan_listed": false, - "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "profile_image_url": "/player-photos/8d2da560f0eaf883.webp" }, { - "id": "player-19fa967e", - "match_name": "DINO Yashiro2", - "full_name": "DINO Yashiro2", - "date_of_birth": null, - "nationality": "VN", - "profile_image_url": null, - "position": "ADC", - "natural_position": "ADC", - "alternate_positions": [], + "id": "player-ffd216e5", + "wage": 0, + "career": [], + "injury": null, + "morale": 100, + "fitness": 100, + "team_id": "team-12d8ddae", + "condition": 100, + "full_name": "Tô Hoàng Đăng Phương", "attributes": { - "laning": 64, - "mechanics": 63, - "discipline": 63, - "macro_play": 64, - "consistency": 64, + "mechanics": 56, + "laning": 56, + "teamfighting": 58, + "macro_play": 58, + "consistency": 56, "shotcalling": 55, - "teamfighting": 64, - "champion_pool": 59, - "mental_resilience": 63 + "champion_pool": 57, + "discipline": 64, + "mental_resilience": 62 }, - "condition": 100, - "morale": 100, - "fitness": 100, - "team_id": "team-0b0654fe", - "traits": [], - "contract_end": null, - "wage": 0, + "match_name": "Clyde", + "loan_listed": false, + "morale_core": {}, + "contract_end": "2029-04-20", "market_value": 0, - "stats": {}, - "career": [], - "training_focus": null, + "potential_base": 64, "transfer_listed": false, - "loan_listed": false, "transfer_offers": [], - "morale_core": {}, - "potential_base": 69, - "potential_revealed": null, - "potential_research_started_on": null, - "potential_research_eta_days": null, - "champion_training_targets": [], - "can_be_transferred_until": null + "champion_mastery": [], + "alternate_positions": [], + "position": "Mid", + "nationality": "VN", + "date_of_birth": "2005-05-04", + "stats": {}, + "profile_image_url": "/player-photos/8290f5bc2296660e.webp" } ] } \ No newline at end of file diff --git a/data/staffs/cblol_staffs.json b/data/staffs/cblol_staffs.json index 5aaf713d5..6098eb3d7 100644 --- a/data/staffs/cblol_staffs.json +++ b/data/staffs/cblol_staffs.json @@ -6,221 +6,163 @@ "contract_end": "2100-01-01", "id": "100f0da2-5a17-4d1a-a3b0-2c35aefc34dc", "first_name": "Bruno Oliveira", - "last_name": "", "nickname": "PlayHard", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-loud2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/591f78ff7c93010a.png" }, { "contract_end": "2026-11-16", "id": "177f7123-bdb2-427b-a8e2-fb06b44cd797", "first_name": "Ludvig Granquist", - "last_name": "", "nickname": "Smiley", - "nationality": "SE", - "birth_country": null, - "date_of_birth": "1998-06-30", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-0e114265", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/eca1b98b24e9f340.png" }, { "id": "staff-6a869f91", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-a72bf9ea", "last_name": "Barbosa", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 72, + "judging_ability": 80, + "judging_potential": 76 }, "first_name": "Gabriel Barbosa", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-03-24", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Von", - "team_id_2": null + "profile_image_url": "/staff-photos/41328c5d.webp", + "nickname": "Von" }, { "id": "staff-9d2dd290", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-loud2025", "last_name": "Ji-hwan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 80, + "judging_ability": 78, + "judging_potential": 79 }, "first_name": "Oh Ji-hwan", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-11-18", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Raise", - "team_id_2": null + "profile_image_url": "/staff-photos/1ad23005.webp", + "nickname": "Raise" }, { "id": "staff-f35b7199", "role": "Analyst", - "wage": 0, + "wage": null, "team_id": "team-0c8be917", "last_name": "Venancio", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 61, + "physiotherapy": 51, + "judging_ability": 64, + "judging_potential": 63 }, "first_name": "Victor Venancio", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1990-08-12", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "SrVenancio", - "team_id_2": null + "profile_image_url": "/staff-photos/6e17d9bc.webp", + "nickname": "SrVenancio" }, { "id": "staff-281f3669", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-76137e73", "last_name": "Souza", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 69, + "judging_ability": 74, + "judging_potential": 76 }, "first_name": "Lucas Spínola de Souza", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-03-02", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "BeellzY", - "team_id_2": null + "profile_image_url": "/staff-photos/32b5c98543d4d694.png", + "nickname": "BeellzY" }, { "contract_end": "2100-01-01", "id": "301675c6-dd90-436d-998d-7a43bf28200e", "first_name": "Rodrigo Fernandes", - "last_name": "", "nickname": "Rodrigo Fernandes", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-b3da089b", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": null }, { "id": "staff-a3bf85af", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-0e114265", "last_name": "Lee", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 73, + "judging_ability": 77, + "judging_potential": 77 }, "first_name": "Christopher Lee", "nationality": "South Korea", "contract_end": "2028-11-16", "birth_country": null, - "date_of_birth": "1996-06-12", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "SeeEl", - "team_id_2": null + "profile_image_url": "/staff-photos/79e148bf.webp", + "nickname": "SeeEl" }, { "contract_end": "2100-01-01", "id": "39e45eb3-194c-4eed-b9f9-086af75ddd25", "first_name": "Jaime Padua", - "last_name": "", "nickname": "raizen", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-fur2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/8168965f15d1ae0e.png" }, { "id": "staff-88d25eba", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-0c8be917", "last_name": "Valvo", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 61, + "judging_ability": 72, + "judging_potential": 71 }, "first_name": "Lautaro Nicolas Lo Valvo", "nationality": "Argentina", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-12-18", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "LautaLoval", - "team_id_2": null + "profile_image_url": "/staff-photos/ac7c208c5a759340.png", + "nickname": "LautaLoval" }, { "id": "staff-c66d3b80", @@ -230,515 +172,396 @@ "last_name": "Corradini", "attributes": { "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "physiotherapy": 52, + "judging_ability": 49, + "judging_potential": 51 }, "first_name": "Felippe Corradini", "nationality": "Brazil", "contract_end": "2100-01-01", "birth_country": null, - "date_of_birth": "1990-05-10", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Fekz", - "team_id_2": null + "profile_image_url": "/staff-photos/8ddb2bd958859865.png", + "nickname": "Fekz" }, { "contract_end": "2100-01-01", "id": "5081c556-c857-4429-a569-a7ef031978b0", "first_name": "Arthur Zarzur", - "last_name": "", "nickname": "PAANDA", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1988-09-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-a72bf9ea", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/b362b0660cc927ac.png" }, { "id": "staff-b90f8716", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-76137e73", "last_name": "Garcia", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 74, + "physiotherapy": 72, + "judging_ability": 76, + "judging_potential": 76 }, "first_name": "Vinicius Garcia", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1999-03-04", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Vinicin", - "team_id_2": null + "profile_image_url": "/staff-photos/70db4cff.webp", + "nickname": "Vinicin" }, { "id": "staff-a45c12d1", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-20461098", "last_name": "Merlo", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 72, + "judging_ability": 81, + "judging_potential": 81 }, "first_name": "Brandon Merlo", "nationality": "Argentina", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-11-25", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Nothing", - "team_id_2": null + "profile_image_url": "/staff-photos/6df8716b.webp", + "nickname": "Nothing" }, { "id": "staff-dd1906aa", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-b3da089b", "last_name": "Brandão", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 73, + "physiotherapy": 67, + "judging_ability": 63, + "judging_potential": 71 }, "first_name": "Felipe Brandão", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1999-11-01", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Brandão", - "team_id_2": null + "profile_image_url": "/staff-photos/4530dfda.webp", + "nickname": "Brandão" }, { "id": "staff-2e7b4502", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-b3da089b", "last_name": "Theodorou", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 79, + "judging_ability": 81, + "judging_potential": 77 }, "first_name": "Ilias Theodorou", "nationality": "Greece", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-01-24", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Enatron", - "team_id_2": null + "profile_image_url": "/staff-photos/14030e9c.webp", + "nickname": "Enatron" }, { "contract_end": "2100-01-01", "id": "85f1ccc5-820f-4d4d-a42c-4d27a3004210", "first_name": "Pedro Schmidt", - "last_name": "", "nickname": "Pedro Schmidt", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1970-01-01", - "profile_image_url": "/staff-photos/1779566651372_ekwt3phmxcu.webp", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-0e114265", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/a906f6001a3d941e.webp" }, { "id": "staff-d9bd2215", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-fur2025", "last_name": "Felippe", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 68, + "judging_ability": 62, + "judging_potential": 71 }, "first_name": "Caio Cavaglieri Felippe", "nationality": "Brazil", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "1991-12-27", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Ianterninho", - "team_id_2": null + "profile_image_url": "/staff-photos/25eee27aeed47227.png", + "nickname": "Ianterninho" }, { "contract_end": "2026-11-16", "id": "8a2ec08b-af0a-48fb-a9ae-39b994c16512", "first_name": "Mayoah Almeida", - "last_name": "", "nickname": "Samyy", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1996-10-07", - "profile_image_url": null, "role": "HeadCoach", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-20461098", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/fcfc9fc97ccfdf1f.png" }, { "contract_end": "2026-11-16", "id": "9382fcec-6c50-4aa4-9a52-88bcdd8b08af", "first_name": "Heorhii Vechkanov", - "last_name": "", "nickname": "Heovech", - "nationality": "UA", - "birth_country": null, - "date_of_birth": "1999-01-01", - "profile_image_url": "/staff-photos/HHB1IgpbQAAWD_r.jpg", "role": "Analyst", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-a72bf9ea", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/5412dda873109119.jpg" }, { "id": "staff-fba0226b", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-0e114265", "last_name": "Moore", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 73, + "physiotherapy": 68, + "judging_ability": 74, + "judging_potential": 72 }, "first_name": "Ben Moore", "nationality": "Australia", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "2000-03-01", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Benvi", - "team_id_2": null + "profile_image_url": "/staff-photos/51acbeb8.webp", + "nickname": "Benvi" }, { "id": "staff-54022195", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-76137e73", "last_name": "Claumann", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 75, + "judging_ability": 73, + "judging_potential": 80 }, "first_name": "Gabriel Claumann", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1996-08-21", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Tockers", - "team_id_2": null + "profile_image_url": "/staff-photos/59d6adc9.webp", + "nickname": "Tockers" }, { "id": "staff-f67ac5f5", "role": "Performance Coach", - "wage": 0, + "wage": null, "team_id": "team-0c8be917", "last_name": "Kraan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 68, + "physiotherapy": 69, + "judging_ability": 68, + "judging_potential": 70 }, "first_name": "Christopher Kraan", "nationality": "Argentina", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1988-06-23", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/462544ea.webp", - "nickname": "Kraan", - "team_id_2": null + "nickname": "Kraan" }, { "id": "staff-a769d79c", "role": "Analyst", - "wage": 0, + "wage": null, "team_id": "team-20461098", "last_name": "Ruoso", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 66, + "judging_ability": 68, + "judging_potential": 69 }, "first_name": "Henrique Ruoso", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-12-27", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/2e9b68af.webp", - "nickname": "Lyfaenia", - "team_id_2": null + "nickname": "Lyfaenia" }, { "id": "staff-d5672904", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-0c8be917", "last_name": "González", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 76, + "physiotherapy": 74, + "judging_ability": 81, + "judging_potential": 78 }, "first_name": "Jorge Eduardo Bravo González", "nationality": "Peru", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-12-10", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Kouke", - "team_id_2": null + "profile_image_url": "/staff-photos/ac8269da34d2230e.png", + "nickname": "Kouke" }, { "contract_end": "2100-01-01", "id": "c7db6dce-f51e-48e5-9463-6e4cd184fc49", "first_name": "Fernando Diez", - "last_name": "", "nickname": "Fernando Diez", - "nationality": "AR", - "birth_country": null, - "date_of_birth": "1970-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-0c8be917", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": null }, { "id": "staff-7e98ddbc", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-a72bf9ea", "last_name": "Sarquis", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 78, + "judging_ability": 78, + "judging_potential": 81 }, "first_name": "Matheus Guimarães Sarquis", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1996-03-19", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Sarkis", - "team_id_2": null + "profile_image_url": "/staff-photos/90422fdc27f0c58c.png", + "nickname": "Sarkis" }, { "contract_end": "2026-11-16", "id": "db800e2a-9f4a-4474-a6d4-be570832f2d7", "first_name": "Michele Maneggia", - "last_name": "", "nickname": "Yariet", - "nationality": "IT", - "birth_country": null, - "date_of_birth": "1995-05-22", - "profile_image_url": null, "role": "Analyst", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-b3da089b", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/db2518c067456e87.png" }, { "id": "staff-acb654d0", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-loud2025", "last_name": "Jara", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 70, + "judging_ability": 80, + "judging_potential": 83 }, "first_name": "Diego Alejandro de Alencar Jara", "nationality": "Brazil", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-11-19", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Sephis", - "team_id_2": null + "profile_image_url": "/staff-photos/a018eb604692e962.png", + "nickname": "Sephis" }, { "id": "staff-5e59c710", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-a72bf9ea", "last_name": "Hyeok", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 81, + "judging_ability": 80, + "judging_potential": 90 }, "first_name": "Sin Hyeok", "nationality": "South Korea", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "1988-06-19", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Xero", - "team_id_2": null + "profile_image_url": "/staff-photos/19466268.webp", + "nickname": "Xero" }, { "contract_end": "2026-11-16", "id": "e78db611-87b2-4e0a-ac36-4ee849242810", "first_name": "Andrés Castro", - "last_name": "", "nickname": "Guchi", - "nationality": "AR", - "birth_country": null, - "date_of_birth": "1998-03-14", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-20461098", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/5162a5bf5fdbcabb.png" }, { "id": "staff-946ce8da", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-fur2025", "last_name": "Higashi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 69, + "physiotherapy": 61, + "judging_ability": 72, + "judging_potential": 64 }, "first_name": "Lucas Yudi Higashi", "nationality": "Brazil", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "1995-06-20", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Luuukz", - "team_id_2": null + "profile_image_url": "/staff-photos/52c34e79dab49aaa.png", + "nickname": "Luuukz" }, { "contract_end": "2026-11-16", "id": "ef15e336-eb54-4e8b-9f36-491f22d6b884", "first_name": "Gabriel Mattos", - "last_name": "", "nickname": "bieLzera", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "1995-04-20", - "profile_image_url": null, "role": "Analyst", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-0e114265", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/e7fa85278091726f.png" }, { "id": "staff-be403d4f", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-fur2025", "last_name": "Susin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 66, + "judging_ability": 76, + "judging_potential": 71 }, "first_name": "Erick Susin", "nationality": "Brazil", @@ -746,31 +569,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "furyz", - "team_id_2": null + "profile_image_url": "/staff-photos/5e21363c.webp", + "nickname": "furyz" }, { "contract_end": "2100-01-01", "id": "fe2a95a3-77c4-45d8-823e-ceefa63e4c20", "first_name": "Bruno Goes", - "last_name": "", "nickname": "Nobru", - "nationality": "BR", - "birth_country": null, - "date_of_birth": "2001-01-20", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-20461098", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/c8951ebe9f84c15f.png" } ] } \ No newline at end of file diff --git a/data/staffs/free_agents.json b/data/staffs/free_agents.json index bb6505d9e..d8003dbf7 100644 --- a/data/staffs/free_agents.json +++ b/data/staffs/free_agents.json @@ -1,6 +1,6 @@ { - "name": "Free Agents Staff", - "description": "Free Agents - 2026 Season", + "name": "Free Agent Staff", + "description": "Free Agent - 2026 Season", "staff": [ { "id": "staff-13e6c700", @@ -9,10 +9,10 @@ "team_id": null, "last_name": "Thịnh", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 73, + "judging_ability": 75, + "judging_potential": 77 }, "first_name": "Trần Tiến Thịnh", "nationality": "Vietnam", @@ -20,31 +20,16 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Ciel", - "team_id_2": null + "profile_image_url": "/staff-photos/df0b6806cdf4a1e6.png", + "nickname": "Ciel" }, { "id": "59de1a42-0d82-433a-9bd6-38bfceae0493", "first_name": "Daniel Espinoza", - "last_name": "", "nickname": "Zetz", - "nationality": "CU", - "birth_country": null, - "date_of_birth": null, - "profile_image_url": null, "role": "Analyst", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": null, - "team_id_2": null, - "specialization": null, - "wage": 0, - "contract_end": "" + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/staffs/lck_staffs.json b/data/staffs/lck_staffs.json index acb473e57..83f518a67 100644 --- a/data/staffs/lck_staffs.json +++ b/data/staffs/lck_staffs.json @@ -5,652 +5,479 @@ { "id": "staff-28cda131", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-41bf07a6", "last_name": "Jeong-hyeon", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 97, + "physiotherapy": 90, + "judging_ability": 90, + "judging_potential": 95 }, "first_name": "Lee Jeong-hyeon", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1991-01-29", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "PoohManDu", - "team_id_2": null + "profile_image_url": "/staff-photos/04a65d55.webp", + "nickname": "PoohManDu" }, { "contract_end": "2100-11-16", "id": "0d054580-24d0-4812-8b01-2d65d645b65e", "first_name": "Shin Ki-hyeok", - "last_name": "", "nickname": "Shin Ki-hyeok", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/1779606068196_4zj49xzrhmh.jpeg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-932ee946", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/a0b8916c93b4d09f.jpeg" }, { "contract_end": "2026-11-16", "id": "0f9b2986-6a06-4cd1-a172-9a1725328e23", "first_name": "Yu Byeong-jun", - "last_name": "", "nickname": "Ggoong", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1993-06-26", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-2166882d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/4dbdd42e404d2405.png" }, { "id": "staff-0de961f1", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-861ba8cb", "last_name": "Sung-young", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 86, + "physiotherapy": 77, + "judging_ability": 88, + "judging_potential": 87 }, "first_name": "Yoon Sung-young", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1985-01-01", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Homme", - "team_id_2": null + "profile_image_url": "/staff-photos/1add3440.webp", + "nickname": "Homme" }, { "contract_end": "2100-01-01", "id": "144cdda8-b752-4f7e-b218-db834dbc473a", "first_name": "Yang Seon-il", - "last_name": "", "nickname": "Yang Seon-il", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/1779605993559_35codu7rbwj.jpeg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-bc4c40ec", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/d41eb3885d485f4d.jpeg" }, { "id": "staff-3b2af72a", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-932ee946", "last_name": "Moo-seong", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 71, + "judging_ability": 73, + "judging_potential": 78 }, "first_name": "Kim Moo-seong", "nationality": "South Korea", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "1997-10-09", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Museong", - "team_id_2": null + "profile_image_url": "/staff-photos/792bcc5b.webp", + "nickname": "Museong" }, { "contract_end": "2026-11-16", "id": "19be898a-24eb-453b-bc86-1a77145cc0ea", "first_name": "Yang Hyeon-min", - "last_name": "", "nickname": "Minit", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1998-02-03", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-2166882d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/f9667f4fd4e731ec.png" }, { "id": "staff-0c9b8a0b", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-932ee946", "last_name": "Dong-bin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 72, + "judging_ability": 85, + "judging_potential": 87 }, "first_name": "Go Dong-bin", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1992-07-08", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Score", - "team_id_2": null + "profile_image_url": "/staff-photos/47092f09.webp", + "nickname": "Score" }, { "id": "staff-e12ab094", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-861ba8cb", "last_name": "Jae-ha", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 77, + "judging_ability": 81, + "judging_potential": 82 }, "first_name": "Lee Jae-ha", "nationality": "South Korea", "contract_end": "2027-11-15", "birth_country": null, - "date_of_birth": "1998-04-14", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Mowgli", - "team_id_2": null + "profile_image_url": "/staff-photos/0d8d9830.webp", + "nickname": "Mowgli" }, { "id": "staff-b8302c58", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-2c4f82f9", "last_name": "Se-hyeong", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 86, + "physiotherapy": 74, + "judging_ability": 85, + "judging_potential": 84 }, "first_name": "Cho Se-hyeong", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-02-27", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Mata", - "team_id_2": null + "profile_image_url": "/staff-photos/0734ebfe.webp", + "nickname": "Mata" }, { "id": "staff-6f9391bd", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-dae32fa2", "last_name": "Chan-ho", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 72, + "judging_ability": 76, + "judging_potential": 87 }, "first_name": "Park Chan-ho", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-11-27", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Nova", - "team_id_2": null + "profile_image_url": "/staff-photos/065de518.webp", + "nickname": "Nova" }, { "id": "staff-6f4e1f38", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-dae32fa2", "last_name": "Sang-wook", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 82, + "judging_ability": 82, + "judging_potential": 78 }, "first_name": "Ryu Sang-wook", "nationality": "South Korea", "contract_end": "2028-11-20", "birth_country": null, - "date_of_birth": "1994-01-28", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Ryu", - "team_id_2": null + "profile_image_url": "/staff-photos/570dea2d.webp", + "nickname": "Ryu" }, { "contract_end": "2026-11-16", "id": "545490a3-2fa8-402a-ac1e-d05715afb3bd", "first_name": "Park Jun-seok", - "last_name": "", "nickname": "Edo", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1987-10-14", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-3f714e0d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/3b65fce1db5c8e8a.png" }, { "id": "staff-12c5a521", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-bd98ddef", "last_name": "Ho-seong", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 98, + "physiotherapy": 88, + "judging_ability": 89, + "judging_potential": 92 }, "first_name": "Lee Ho-seong", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-12-19", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Duke", - "team_id_2": null + "profile_image_url": "/staff-photos/3e105348.webp", + "nickname": "Duke" }, { "contract_end": "2100-01-01", "id": "5ec92c2e-b47b-47cf-b9fe-55db4f292a94", "first_name": "Choi Young-woo", - "last_name": "", "nickname": "Choi Young-woo", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1975-08-23", - "profile_image_url": "/staff-photos/1779559173480_vvi1dqwv2m.webp", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-2166882d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/5d23fa6ea7ed1efc.webp" }, { "id": "staff-cbc4df48", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-861ba8cb", "last_name": "Hyeong-mo", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 76, + "judging_ability": 79, + "judging_potential": 75 }, "first_name": "Yeon Hyeong-mo", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1991-12-12", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/268bba81.webp", - "nickname": "Sin", - "team_id_2": null + "nickname": "Sin" }, { "id": "staff-90b9dd8e", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-bc4c40ec", "last_name": "Jae-eup", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 87, + "physiotherapy": 77, + "judging_ability": 86, + "judging_potential": 81 }, "first_name": "Cho Jae-eup", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1991-12-11", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Joker", - "team_id_2": null + "profile_image_url": "/staff-photos/06f7e005.webp", + "nickname": "Joker" }, { "contract_end": "2026-11-16", "id": "6a896ed3-479c-4d80-87c6-4499e107cc6d", "first_name": "Nam Tae-yoo", - "last_name": "", "nickname": "Lira", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1995-01-15", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-3f714e0d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/61d47bd17d7fd757.png" }, { "contract_end": "2100-11-16", "id": "6cae705d-819c-44e7-bfcb-b1a3ea71d9ac", "first_name": "Yeo Seung-joo", - "last_name": "", "nickname": "Yeo Seung-joo", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/original.jpeg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-861ba8cb", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/dc09f53b11448411.jpeg" }, { "id": "staff-8cb087ff", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-61bd92d5", "last_name": "Seung-jin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 87, + "judging_ability": 89, + "judging_potential": 91 }, "first_name": "Park Seung-jin", "nationality": "South Korea", "contract_end": "2027-11-15", "birth_country": null, - "date_of_birth": "1996-11-01", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Chelly", - "team_id_2": null + "profile_image_url": "/staff-photos/7a366c06.webp", + "nickname": "Chelly" }, { "id": "staff-3417ee68", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-dae32fa2", "last_name": "Da-bin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 74, + "judging_ability": 76, + "judging_potential": 72 }, "first_name": "Kim Da-bin", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1996-08-25", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Lyn", - "team_id_2": null + "profile_image_url": "/staff-photos/58eff248.webp", + "nickname": "Lyn" }, { "id": "staff-327825da", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-61bd92d5", "last_name": "Jae-hee", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 90, + "physiotherapy": 91, + "judging_ability": 87, + "judging_potential": 91 }, "first_name": "Kim Jae-hee", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1996-09-20", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Crazy", - "team_id_2": null + "profile_image_url": "/staff-photos/4650d3be.webp", + "nickname": "Crazy" }, { "id": "staff-51c33486", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-bd98ddef", "last_name": "Sang-soo", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 76, + "judging_ability": 77, + "judging_potential": 79 }, "first_name": "Kim Sang-soo", "nationality": "South Korea", "contract_end": "2027-11-15", "birth_country": null, - "date_of_birth": "1989-10-15", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Ssong", - "team_id_2": null + "profile_image_url": "/staff-photos/3e43fd81.webp", + "nickname": "Ssong" }, { "id": "staff-4c81e27d", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-2c4f82f9", "last_name": "Ji-hoon", "attributes": { - "coaching": 50, + "coaching": 61, "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "judging_ability": 56, + "judging_potential": 60 }, "first_name": "Lee Ji-hoon", - "nationality": "KR", + "nationality": "Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1992-11-23", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Easyhoon", - "team_id_2": null + "profile_image_url": "/staff-photos/6fb7e38c.webp", + "nickname": "Easyhoon" }, { "contract_end": "2100-11-16", "id": "a22d6dd0-2af6-4bbd-8c57-56aa391568d5", "first_name": "Lim Woo-taek", - "last_name": "", "nickname": "Lim Woo-taek", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-bd98ddef", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/0f6cf5e4042a6c23.png" }, { "contract_end": "2100-11-16", "id": "a35d2c40-1c3f-4e40-89bc-b5e6fff50aaf", "first_name": "Oh Ji-hwan", - "last_name": "", "nickname": "Oh Ji-hwan", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/1779560820963_gftv0lbjjxh.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-61bd92d5", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/8aac35f75fa31a22.jpg" }, { "contract_end": "2100-11-16", "id": "ac2940da-e7d5-4cfd-8fd9-28e1a49ad5dc", "first_name": "Yoon Jun-ho", - "last_name": "", "nickname": "Yoon Jun-ho", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/1779558429238_yqzpeg318g.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-3f714e0d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/db5c4ed53bc5f8f5.jpg" }, { "contract_end": "2026-11-16", "id": "bc32309d-584b-4345-a9ec-11875c75f1bf", "first_name": "Shin Hyeong-seop", - "last_name": "", "nickname": "Rather", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1996-11-26", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-3f714e0d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/63d96d9974350821.png" }, { "id": "staff-0139a0f6", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-932ee946", "last_name": "Seung-ik", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 86, + "physiotherapy": 81, + "judging_ability": 77, + "judging_potential": 78 }, "first_name": "Son Seung-ik", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-08-31", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Sonstar", - "team_id_2": null + "profile_image_url": "/staff-photos/7e2c1a4a.webp", + "nickname": "Sonstar" }, { "id": "staff-8305a31d", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-41bf07a6", "last_name": "Seung-chan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 91, + "physiotherapy": 84, + "judging_ability": 84, + "judging_potential": 93 }, "first_name": "Ha Seung-chan", "nationality": "South Korea", @@ -658,207 +485,137 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Hachani", - "team_id_2": null + "profile_image_url": "/staff-photos/79b8efc1.webp", + "nickname": "Hachani" }, { "id": "staff-2db0505f", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-2c4f82f9", "last_name": "Jae-hyeon", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 74, + "judging_ability": 72, + "judging_potential": 79 }, "first_name": "Im Jae-hyeon", "nationality": "South Korea", "contract_end": "2026-11-26", "birth_country": null, - "date_of_birth": "1995-05-22", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Tom", - "team_id_2": null + "profile_image_url": "/staff-photos/21b34d5a.webp", + "nickname": "Tom" }, { "id": "staff-bd406d7f", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-61bd92d5", "last_name": "In-kyu", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 90, + "physiotherapy": 82, + "judging_ability": 94, + "judging_potential": 90 }, "first_name": "Choi In-kyu", "nationality": "South Korea", "contract_end": "2027-11-15", "birth_country": null, - "date_of_birth": "1994-01-03", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "DanDy", - "team_id_2": null + "profile_image_url": "/staff-photos/05b8e3b8.webp", + "nickname": "DanDy" }, { "id": "staff-6bb0be76", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-41bf07a6", "last_name": "Dae-ho", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 92, + "physiotherapy": 88, + "judging_ability": 95, + "judging_potential": 96 }, "first_name": "Kim Dae-ho", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1990-06-07", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "cvMax", - "team_id_2": null + "profile_image_url": "/staff-photos/3be70999.webp", + "nickname": "cvMax" }, { "contract_end": "2026-11-16", "id": "d58af100-f24e-4a01-93d3-6420255e7a0a", "first_name": "\tJu Yeong-dal", - "last_name": "", "nickname": "oDin", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1987-06-15", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-2166882d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/864dd8666fddffd4.png" }, { "contract_end": "2026-11-16", "id": "ddc42456-d806-454d-afe2-423c1f9f31a1", "first_name": "Yoo Nae-hyun", - "last_name": "", "nickname": "Naehyun", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1996-02-07", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-bc4c40ec", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/5356e42503138c05.png" }, { "contract_end": "2100-11-16", "id": "dfd171b1-1114-4fc8-8490-9d8d16b3312b", "first_name": "Lee Dong-hyeong", - "last_name": "", "nickname": "Lee Dong-hyeong", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/1779559743298_42qf63mx053.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-41bf07a6", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/07d4ddeb1ee543c7.jpg" }, { "contract_end": "2100-11-16", "id": "e686fc03-30af-4c76-bd59-dee4d96dc7f7", "first_name": "Kevin Chou", - "last_name": "", "nickname": "Kevin Chou", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-dae32fa2", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/16b1720304359a48.jpg" }, { "contract_end": "2026-11-16", "id": "e7f4658f-b2ea-4861-8708-7cb62f72da65", "first_name": "Kim Chang-seong", - "last_name": "", "nickname": "Cube", - "nationality": "KR", - "birth_country": null, - "date_of_birth": "1996-08-16", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-2166882d", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/02e4f170b9e230de.png" }, { "id": "staff-b39d47ca", "role": "Owner", - "wage": 0, + "wage": null, "team_id": "team-2c4f82f9", "last_name": "Marsh", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 47, + "physiotherapy": 49, + "judging_ability": 48, + "judging_potential": 53 }, "first_name": "Joe Marsh", "nationality": "United States", "contract_end": "2100-11-16", "birth_country": null, - "date_of_birth": "1990-01-29", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/0b5f3685.webp", - "nickname": "Joe Marsh", - "team_id_2": null + "nickname": "Joe Marsh" } ] } \ No newline at end of file diff --git a/data/staffs/lckcl_staffs.json b/data/staffs/lckcl_staffs.json new file mode 100644 index 000000000..9834dafbe --- /dev/null +++ b/data/staffs/lckcl_staffs.json @@ -0,0 +1,241 @@ +{ + "name": "LCKCL Staff", + "description": "LCKCL - 2026 Season", + "staff": [ + { + "contract_end": "2026-11-16", + "id": "104c7cf2-0b69-47d2-87c7-6b469a871ee5", + "first_name": "Kang Sung-jun", + "nickname": "Jerry", + "role": "HeadCoach", + "team_id": "lck-cl-gen-g-global-academy", + "profile_image_url": "/staff-photos/1fcb6fc892aa417f.jpeg" + }, + { + "id": "staff-080de059", + "role": "Assistant", + "wage": 30000, + "team_id": "lck-cl-kt-rolster-challengers", + "last_name": "Ho-jin", + "attributes": { + "coaching": 81, + "physiotherapy": 75, + "judging_ability": 78, + "judging_potential": 90 + }, + "first_name": "Jeon Ho-jin", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/0be3c1f3.webp", + "nickname": "Lilac" + }, + { + "id": "255f2fd4-da75-400f-8448-e40b29910040", + "first_name": "Ko Sung-min", + "nickname": "Sungmin", + "role": "Assistant", + "team_id": "lck-cl-dplus-kia-challengers", + "profile_image_url": "/staff-photos/e7dc4d517aac61ec.webp" + }, + { + "id": "staff-b7b5bc37", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-kiwoon-drx-challengers", + "last_name": "Tae-il", + "attributes": { + "coaching": 88, + "physiotherapy": 82, + "judging_ability": 87, + "judging_potential": 82 + }, + "first_name": "Kim Tae-il", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/6c57bae0.webp", + "nickname": "Frozen" + }, + { + "id": "staff-64e1ac96", + "role": "Assistant", + "wage": 30000, + "team_id": "lck-cl-kiwoon-drx-challengers", + "last_name": "Sang-ho", + "attributes": { + "coaching": 87, + "physiotherapy": 74, + "judging_ability": 77, + "judging_potential": 82 + }, + "first_name": "Yun Sang-ho", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/1ac13ca3.webp", + "nickname": "Catch" + }, + { + "id": "staff-e09796e3", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-kt-rolster-challengers", + "last_name": "Byung-ryul", + "attributes": { + "coaching": 80, + "physiotherapy": 67, + "judging_ability": 72, + "judging_potential": 72 + }, + "first_name": "Kang Byung-ryul", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/2147d90a.webp", + "nickname": "Spark" + }, + { + "id": "staff-4533fabd", + "role": "Assistant", + "wage": 30000, + "team_id": "lck-cl-t1-esports-academy", + "last_name": "Sang-moon", + "attributes": { + "coaching": 88, + "physiotherapy": 74, + "judging_ability": 85, + "judging_potential": 87 + }, + "first_name": "Kim Sang-moon", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/724643b4.webp", + "nickname": "Nagne" + }, + { + "id": "staff-c8f90d5f", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-dplus-kia-challengers", + "last_name": "Sun-woong", + "attributes": { + "coaching": 74, + "physiotherapy": 68, + "judging_ability": 79, + "judging_potential": 75 + }, + "first_name": "Kim Sun-woong", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/1aa0b84b.webp", + "nickname": "Woong" + }, + { + "id": "staff-0c536007", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-t1-esports-academy", + "last_name": "Du-seong", + "attributes": { + "coaching": 87, + "physiotherapy": 81, + "judging_ability": 82, + "judging_potential": 77 + }, + "first_name": "Choi Du-seong", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/11576b5d.webp", + "nickname": "DooTi" + }, + { + "id": "staff-b5db00ba", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-ns-esports-academy", + "last_name": "Gi-beom", + "attributes": { + "coaching": 76, + "physiotherapy": 71, + "judging_ability": 74, + "judging_potential": 77 + }, + "first_name": "Kim Gi-beom", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/061453f1.webp", + "nickname": "bon0" + }, + { + "id": "staff-c6f22d4f", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-hle-challengers", + "last_name": "Dong-hyeon", + "attributes": { + "coaching": 79, + "physiotherapy": 70, + "judging_ability": 79, + "judging_potential": 74 + }, + "first_name": "Kim Dong-hyeon", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/5efd2fc7.webp", + "nickname": "Sensation" + }, + { + "id": "staff-3ede8b65", + "role": "HeadCoach", + "wage": 30000, + "team_id": "lck-cl-dn-soopers-challengers", + "last_name": "Min-sung", + "attributes": { + "coaching": 93, + "physiotherapy": 89, + "judging_ability": 91, + "judging_potential": 93 + }, + "first_name": "Jung Min-sung", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/0c45ec53.webp", + "nickname": "RapidStar" + }, + { + "id": "f57b0e46-c6f8-43af-b420-d492b1cfd39a", + "first_name": "Kim Han-gi", + "nickname": "Key", + "role": "HeadCoach", + "team_id": "lck-cl-bnk-fearx-youth", + "profile_image_url": "/staff-photos/abe9345217391804.webp" + } + ] +} \ No newline at end of file diff --git a/data/staffs/lcp_staffs.json b/data/staffs/lcp_staffs.json index 6ae0ae014..b19aa9810 100644 --- a/data/staffs/lcp_staffs.json +++ b/data/staffs/lcp_staffs.json @@ -9,10 +9,10 @@ "team_id": "team-83d3342f", "last_name": "Lei", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 89, + "physiotherapy": 90, + "judging_ability": 88, + "judging_potential": 96 }, "first_name": "Wong Xing Lei", "nationality": "Singapore", @@ -20,9 +20,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Chawy", - "team_id_2": null + "profile_image_url": "/staff-photos/727b32b43c9dba45.png", + "nickname": "Chawy" }, { "id": "staff-6a8007dd", @@ -31,10 +30,10 @@ "team_id": "team-709031e2", "last_name": "Tài", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 77, + "judging_ability": 79, + "judging_potential": 79 }, "first_name": "Đặng Ngọc Tài", "nationality": "Vietnam", @@ -42,9 +41,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Bigkoro", - "team_id_2": null + "profile_image_url": "/staff-photos/cf193578c037b1cf.png", + "nickname": "Bigkoro" }, { "id": "staff-57528e27", @@ -53,10 +51,10 @@ "team_id": "team-dcg2025", "last_name": "Liang-Jung", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 67, + "physiotherapy": 69, + "judging_ability": 65, + "judging_potential": 74 }, "first_name": "Chiu Liang-Jung", "nationality": "Taiwan", @@ -64,9 +62,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Lxz", - "team_id_2": null + "profile_image_url": "/staff-photos/9ca646cecfb07779.png", + "nickname": "Lxz" }, { "id": "staff-8a39f2d1", @@ -75,10 +72,10 @@ "team_id": "team-d13da18a", "last_name": "Ju-Chih", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 76, + "judging_ability": 73, + "judging_potential": 74 }, "first_name": "Chen Ju-Chih", "nationality": "Taiwan", @@ -87,8 +84,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/374296cb.webp", - "nickname": "WarHorse", - "team_id_2": null + "nickname": "WarHorse" }, { "id": "staff-d1b8a592", @@ -97,10 +93,10 @@ "team_id": "team-cbc2ec83", "last_name": "Aoki", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 73, + "judging_ability": 73, + "judging_potential": 68 }, "first_name": "Haruhiko Aoki", "nationality": "", @@ -109,8 +105,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/75dc74d2.webp", - "nickname": "Gismo", - "team_id_2": null + "nickname": "Gismo" }, { "id": "staff-4a8f3e95", @@ -119,10 +114,10 @@ "team_id": "team-cbc2ec83", "last_name": "Sang-wook", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 79, + "judging_ability": 81, + "judging_potential": 83 }, "first_name": "Lee Sang-wook", "nationality": "South Korea", @@ -131,8 +126,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/0a60e480.webp", - "nickname": "Tana", - "team_id_2": null + "nickname": "Tana" }, { "id": "staff-71781ec7", @@ -141,10 +135,10 @@ "team_id": "team-83d3342f", "last_name": "Sheng-Wei", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 76, + "physiotherapy": 75, + "judging_ability": 75, + "judging_potential": 79 }, "first_name": "Liu Sheng-Wei", "nationality": "Taiwan", @@ -153,8 +147,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1bc04c9b.webp", - "nickname": "Wulala", - "team_id_2": null + "nickname": "Wulala" }, { "id": "staff-179c8711", @@ -163,10 +156,10 @@ "team_id": "team-dcg2025", "last_name": "Kuan-Ting", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 76, + "judging_ability": 77, + "judging_potential": 80 }, "first_name": "Chen Kuan-Ting", "nationality": "Taiwan", @@ -175,8 +168,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/3c1af869.webp", - "nickname": "REFRA1N", - "team_id_2": null + "nickname": "REFRA1N" }, { "id": "staff-924ab434", @@ -185,10 +177,10 @@ "team_id": "team-f4306bce", "last_name": "Pin-Lun", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 93, + "physiotherapy": 88, + "judging_ability": 84, + "judging_potential": 95 }, "first_name": "Cheng Pin-Lun", "nationality": "Taiwan", @@ -197,8 +189,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/4bafee16.webp", - "nickname": "CorGi", - "team_id_2": null + "nickname": "CorGi" }, { "id": "staff-ce47e65c", @@ -207,10 +198,10 @@ "team_id": "team-494fc51a", "last_name": "Luân", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 78, + "judging_ability": 82, + "judging_potential": 83 }, "first_name": "Võ Thành Luân", "nationality": "Vietnam", @@ -218,9 +209,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Naul", - "team_id_2": null + "profile_image_url": "/staff-photos/c9576f02fddd8f3e.png", + "nickname": "Naul" }, { "id": "staff-21c6bfa1", @@ -229,10 +219,10 @@ "team_id": "team-gzg2025", "last_name": "Yu-Fan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 67, + "judging_ability": 66, + "judging_potential": 76 }, "first_name": "Wong Yu-Fan", "nationality": "Taiwan", @@ -241,8 +231,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/5f473b84.webp", - "nickname": "Ratis", - "team_id_2": null + "nickname": "Ratis" }, { "id": "staff-9daa012f", @@ -251,10 +240,10 @@ "team_id": "team-cbc2ec83", "last_name": "Sasaki", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 80, + "judging_ability": 77, + "judging_potential": 81 }, "first_name": "Shirou Sasaki", "nationality": "Japan", @@ -263,8 +252,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/296c58fb.webp", - "nickname": "Paz", - "team_id_2": null + "nickname": "Paz" } ] } \ No newline at end of file diff --git a/data/staffs/lcs_staffs.json b/data/staffs/lcs_staffs.json index 69919dc03..5c1f6d169 100644 --- a/data/staffs/lcs_staffs.json +++ b/data/staffs/lcs_staffs.json @@ -5,124 +5,107 @@ { "id": "staff-5e3f8f1c", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-tl2025", "last_name": "Tiberi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 77, + "physiotherapy": 74, + "judging_ability": 77, + "judging_potential": 82 }, "first_name": "Jake Tiberi", "nationality": "Australia", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1988-11-29", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/5a0f85b7.webp", - "nickname": "Spawn", - "team_id_2": null + "nickname": "Spawn" }, { "id": "staff-a24d0155", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-cb9503c1", "last_name": "Yeu-jin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 82, + "judging_ability": 76, + "judging_potential": 84 }, "first_name": "Kim Yeu-jin", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1995-06-04", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Reignover", - "team_id_2": null + "profile_image_url": "/staff-photos/01811857.webp", + "nickname": "Reignover" }, { "contract_end": "2100-01-01", "id": "3455ad01-8815-4181-a333-e90235134a51", "first_name": "Vincent Viola", - "last_name": "", "nickname": "Vincent Viola", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1956-02-12", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-fly2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/2bbc2f75704acf42.png" }, { "id": "staff-ab4c0289", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-tl2025", "last_name": "Broadley", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 69, + "judging_ability": 75, + "judging_potential": 76 }, "first_name": "Samuel Broadley", "nationality": "Australia", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-01-19", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/34d1adb6.webp", - "nickname": "Sppokz", - "team_id_2": null + "nickname": "Sppokz" }, { "id": "staff-fe19fa0e", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-d740ef00", "last_name": "Sang-hyeon", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 77, + "judging_ability": 81, + "judging_potential": 77 }, "first_name": "Seong Sang-hyeon", "nationality": "South Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-12-15", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Reven", - "team_id_2": null + "profile_image_url": "/staff-photos/5a9aa153.webp", + "nickname": "Reven" }, { "id": "staff-d7161833", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-dig2025", "last_name": "Ursachi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 77, + "physiotherapy": 74, + "judging_ability": 78, + "judging_potential": 84 }, "first_name": "Emanuel Ursachi", "nationality": "Romania", @@ -130,141 +113,98 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Emi", - "team_id_2": null + "profile_image_url": "/staff-photos/07ce874c.webp", + "nickname": "Emi" }, { "contract_end": "2100-01-01", "id": "64bfe915-6f38-458e-ba32-0e21dbb4999f", "first_name": "Rob Moore", - "last_name": "", "nickname": "Rob Moore", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1963-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-sen2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/b4cfa279dc8a14e9.png" }, { "contract_end": "2100-01-01", "id": "6a8c2166-6843-4d6b-afdf-345671a631fa", "first_name": "Tobias Lütke", - "last_name": "", "nickname": "Tobias Lütke", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1981-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-d740ef00", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/bc33cb5debd32941.jpg" }, { "id": "staff-78cdf0cd", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-fly2025", "last_name": "Price", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 81, + "judging_ability": 75, + "judging_potential": 77 }, "first_name": "Apollo Price", "nationality": "United States", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1994-08-15", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Apollo", - "team_id_2": null + "profile_image_url": "/staff-photos/70e11dce.webp", + "nickname": "Apollo" }, { "id": "staff-dd153374", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-cb9503c1", "last_name": "Earl", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 76, + "judging_ability": 73, + "judging_potential": 80 }, "first_name": "Han Earl", - "nationality": "KR", + "nationality": "Korea", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1995-12-15", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Rigby", - "team_id_2": null + "profile_image_url": "/staff-photos/29ba4d67.webp", + "nickname": "Rigby" }, { "id": "staff-8a767ad6", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-sen2025", "last_name": "Lachica", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 64, + "judging_ability": 66, + "judging_potential": 68 }, "first_name": "Mervin-Angelo Lachica", "nationality": "Canada", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1990-01-09", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/09b42e4e.webp", - "nickname": "Dayos", - "team_id_2": null + "nickname": "Dayos" }, { - "contract_end": "", + "contract_end": null, "id": "85d8341c-1c90-4d54-9106-42618b52a5da", "first_name": "Nick De Cesare", - "last_name": "", "nickname": "LS", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1993-09-15", - "profile_image_url": null, "role": "Analyst", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-fly2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/a3c3579ecb5ffaa7.png" }, { "id": "staff-33f1b4ab", @@ -273,372 +213,281 @@ "team_id": "team-75904cb7", "last_name": "Wang", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 52, + "physiotherapy": 46, + "judging_ability": 49, + "judging_potential": 52 }, "first_name": "Jeremy Wang", "nationality": "Taiwan", "contract_end": "2100-01-01", "birth_country": null, - "date_of_birth": "1991-11-25", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1bf52607.webp", - "nickname": "Toast", - "team_id_2": null + "nickname": "Toast" }, { "id": "staff-a7bd1f4e", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-c92025", "last_name": "Rivera", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 90, + "physiotherapy": 84, + "judging_ability": 85, + "judging_potential": 87 }, "first_name": "Christian Rivera", "nationality": "United States", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1990-08-13", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "IWDominate", - "team_id_2": null + "profile_image_url": "/staff-photos/6325d0be.webp", + "nickname": "IWDominate" }, { "id": "a0f628e2-435e-4dfd-9f95-1620453de0ee", "first_name": "Carlos Gibran", - "last_name": "", "nickname": "Biblos", - "nationality": "MX", - "birth_country": null, - "date_of_birth": null, - "profile_image_url": "/staff-photos/1779602861517_a2tvp0uxlk.webp", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-cb9503c1", - "team_id_2": "lrn-lyon-academy", - "specialization": null, - "wage": 0, - "contract_end": "" + "profile_image_url": "/staff-photos/abb67a963dc261d7.webp" }, { "contract_end": "2100-01-01", "id": "bb20cfe9-96c6-4c3c-b97b-c6ac7ca2604e", "first_name": "Victor Goossens", - "last_name": "", "nickname": "Victor Goossens", - "nationality": "NL", - "birth_country": null, - "date_of_birth": "1983-05-03", - "profile_image_url": "/staff-photos/Victor-14.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-tl2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/d5746f8e065b6d19.jpg" }, { "id": "staff-f536fefa", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-75904cb7", "last_name": "McCormick", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 71, + "judging_ability": 74, + "judging_potential": 74 }, "first_name": "Ian McCormick", "nationality": "United States", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1998-09-29", + "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/728ccb2e.webp", - "nickname": "ido", - "team_id_2": null + "nickname": "ido" }, { "id": "staff-14e7d3a5", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-75904cb7", "last_name": "Chen", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 73, + "judging_ability": 76, + "judging_potential": 85 }, "first_name": "Brandon Chen", "nationality": "United States", "contract_end": "2026-12-20", "birth_country": null, - "date_of_birth": "1997-08-13", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Brandini", - "team_id_2": null + "profile_image_url": "/staff-photos/34f6ee1b.webp", + "nickname": "Brandini" }, { "contract_end": "2100-01-01", "id": "d0125dee-73c3-4946-b145-aafcc0523340", "first_name": "Joshua J. Harris", - "last_name": "", "nickname": "Joshua J. Harris", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1964-12-29", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-dig2025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/5eafa29328182c4b.jpg" }, { "id": "staff-0fb1a69e", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-d740ef00", "last_name": "Damonte", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 87, + "judging_ability": 85, + "judging_potential": 90 }, "first_name": "Tanner Damonte", "nationality": "United States", "contract_end": "2026-11-16", "birth_country": null, - "date_of_birth": "1997-12-02", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Damonte", - "team_id_2": null + "profile_image_url": "/staff-photos/78a8d8c9.webp", + "nickname": "Damonte" }, { "id": "staff-70568259", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-sen2025", "last_name": "Gilmer", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 75, + "judging_ability": 79, + "judging_potential": 83 }, "first_name": "Greyson Gregory Gilmer", "nationality": "United States", "contract_end": "2028-12-11", "birth_country": null, - "date_of_birth": "1996-11-23", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Goldenglue", - "team_id_2": null + "profile_image_url": "/staff-photos/f2bd77d8349ccf68.png", + "nickname": "Goldenglue" }, { "id": "staff-d60e82f3", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-c92025", "last_name": "Smith", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 78, + "judging_ability": 82, + "judging_potential": 82 }, "first_name": "Nicholas Smith", "nationality": "United States", "contract_end": "2026-12-20", "birth_country": null, - "date_of_birth": "1994-03-07", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Inero", - "team_id_2": null + "profile_image_url": "/staff-photos/6c834cac.webp", + "nickname": "Inero" }, { "id": "staff-6881647b", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-dig2025", "last_name": "Papamarkos", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 78, + "judging_ability": 76, + "judging_potential": 74 }, "first_name": "Simon Papamarkos", "nationality": "Australia", "contract_end": "2027-12-20", "birth_country": null, - "date_of_birth": "1994-03-31", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Swiffer", - "team_id_2": null + "profile_image_url": "/staff-photos/30036d20.webp", + "nickname": "Swiffer" }, { "id": "staff-8f23d3f7", "role": "HeadCoach", - "wage": 0, + "wage": null, "team_id": "team-fly2025", "last_name": "Slotkin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 79, + "judging_ability": 79, + "judging_potential": 77 }, "first_name": "Thomas Slotkin", "nationality": "United States", "contract_end": "2027-11-16", "birth_country": null, - "date_of_birth": "1992-10-08", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Thinkcard", - "team_id_2": null + "profile_image_url": "/staff-photos/1bbf1b4a.webp", + "nickname": "Thinkcard" }, { "contract_end": "2100-01-01", "id": "e7e7fe10-8319-4104-8e92-aaa513f95c98", "first_name": "Carlos Gibran", - "last_name": "", "nickname": "Carlos Gibran", - "nationality": "MX", - "birth_country": null, - "date_of_birth": "1975-01-10", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-cb9503c1", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": null }, { "id": "staff-e4328fd7", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "team-c92025", "last_name": "Aune", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 76, + "physiotherapy": 74, + "judging_ability": 78, + "judging_potential": 78 }, "first_name": "Marius Aune", - "nationality": "NO", + "nationality": "norway", "contract_end": "2026-11-16", "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Veigar v2", - "team_id_2": null + "profile_image_url": "/staff-photos/5d0fe16d.webp", + "nickname": "Veigar v2" }, { "id": "ee0ac724-9e79-4ddc-a74d-ab36c0ece141", "first_name": "Ricardo Larrea", - "last_name": "", "nickname": "Ricardo Larrea", - "nationality": "MX", - "birth_country": null, - "date_of_birth": null, - "profile_image_url": "/staff-photos/1779602858443_yrg3qye2cd.jpeg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-cb9503c1", - "team_id_2": "lrn-lyon-academy", - "specialization": null, - "wage": 0, - "contract_end": "" + "profile_image_url": "/staff-photos/bd037cd8467efd57.jpeg" }, { "id": "staff-f014242e", "role": "Owner", - "wage": 0, + "wage": null, "team_id": "team-c92025", "last_name": "Etienne", "attributes": { "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "physiotherapy": 49, + "judging_ability": 54, + "judging_potential": 49 }, "first_name": "Jack Etienne", "nationality": "United States", "contract_end": "2100-01-01", "birth_country": null, - "date_of_birth": "1972-12-26", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Jack Etienne", - "team_id_2": null + "profile_image_url": "/staff-photos/7783b5a9.webp", + "nickname": "Jack Etienne" }, { "contract_end": "2026-11-16", "id": "ff3b2706-8ae1-4181-95a9-a5ef12f974fd", "first_name": "Gary Hoyt", - "last_name": "", "nickname": "Gary Hoyt", - "nationality": "US", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Performance Coach", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "team-c92025", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": null } ] } \ No newline at end of file diff --git a/data/staffs/lec_staffs.json b/data/staffs/lec_staffs.json index 51aca6dc2..98d36f3c4 100644 --- a/data/staffs/lec_staffs.json +++ b/data/staffs/lec_staffs.json @@ -9,10 +9,10 @@ "team_id": "lec-team-heretics-lec", "last_name": "Akpınarlı", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 63, + "judging_ability": 70, + "judging_potential": 73 }, "first_name": "Emre Akpınarlı", "nationality": "Turkey", @@ -21,8 +21,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1e2812ca.webp", - "nickname": "Arkhe", - "team_id_2": null + "nickname": "Arkhe" }, { "id": "staff-13946d43", @@ -31,10 +30,10 @@ "team_id": "lec-g2-esports", "last_name": "Oliveira", "attributes": { - "coaching": 50, + "coaching": 51, "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "judging_ability": 57, + "judging_potential": 56 }, "first_name": "Rodrigo Domingues ", "nationality": "Portugal", @@ -42,9 +41,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759797022_t8easn8hlj.webp", - "nickname": "Rodrigo", - "team_id_2": null + "profile_image_url": "/staff-photos/82d832cf4fa5538c.webp", + "nickname": "Rodrigo" }, { "id": "staff-a8bf2746", @@ -53,10 +51,10 @@ "team_id": "lec-natus-vincere", "last_name": "Mikołajczak", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 77, + "judging_ability": 78, + "judging_potential": 79 }, "first_name": "Zuzanna Mikołajczak", "nationality": "Poland", @@ -64,9 +62,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1779561029816_pn5ytju2s3t.jpeg", - "nickname": null, - "team_id_2": null + "profile_image_url": "/staff-photos/574c73810b5a59d8.jpeg", + "nickname": null }, { "id": "staff-f3dd3299", @@ -75,9 +72,9 @@ "team_id": "lec-team-heretics-lec", "last_name": "Carranza", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, + "coaching": 47, + "physiotherapy": 49, + "judging_ability": 56, "judging_potential": 50 }, "first_name": "Deam Saavedra Carranza", @@ -86,9 +83,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Deam147", - "team_id_2": null + "profile_image_url": "/staff-photos/8e4241efee9a20dd.png", + "nickname": "Deam147" }, { "id": "staff-9c86788c", @@ -97,10 +93,10 @@ "team_id": "lec-natus-vincere", "last_name": "Voltis", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 77, + "physiotherapy": 76, + "judging_ability": 75, + "judging_potential": 72 }, "first_name": "Vasilis Voltis", "nationality": "Greece", @@ -108,9 +104,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778758944675_5h5z7h6rv2c.webp", - "nickname": "TheRock", - "team_id_2": null + "profile_image_url": "/staff-photos/4f8a64b1.webp", + "nickname": "TheRock" }, { "id": "staff-66387e7d", @@ -119,10 +114,10 @@ "team_id": "lec-movistar-koi", "last_name": "Recio", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 65, + "judging_ability": 66, + "judging_potential": 70 }, "first_name": "Luis Cardona Recio", "nationality": "Spain", @@ -130,9 +125,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778833096899_i1paxm9dmyh.png", - "nickname": "Cardonetti", - "team_id_2": null + "profile_image_url": "/staff-photos/988552eba86a48b7.png", + "nickname": "Cardonetti" }, { "id": "staff-e0e79a66", @@ -141,10 +135,10 @@ "team_id": "lec-movistar-koi", "last_name": "Fernández", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 74, + "judging_ability": 74, + "judging_potential": 71 }, "first_name": "Tomás Campelos", "nationality": "Spain", @@ -152,9 +146,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778757359989_2oqga4hz4o9.webp", - "nickname": "Melzhet", - "team_id_2": null + "profile_image_url": "/staff-photos/ef96759c7dc3486f.webp", + "nickname": "Melzhet" }, { "id": "staff-217d297a", @@ -163,10 +156,10 @@ "team_id": "lec-team-heretics-lec", "last_name": "Holm", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 82, + "judging_ability": 84, + "judging_potential": 84 }, "first_name": "Erlend Våtevik ", "nationality": "Norway", @@ -174,31 +167,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759378802_il5u2g9p3kp.webp", - "nickname": "Nukeduck", - "team_id_2": null + "profile_image_url": "/staff-photos/2b0caba3b82668f0.webp", + "nickname": "Nukeduck" }, { "contract_end": "2100-01-01", "id": "25f3388a-7909-43bc-ab9a-bb969baaec6b", "first_name": "José Ramón Díaz", - "last_name": "", "nickname": "José Ramón Díaz", - "nationality": "ES", - "birth_country": null, - "date_of_birth": "1980-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-giantx-lec", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/a09e28816dc1d89b.png" }, { "id": "staff-66108b54", @@ -207,10 +186,10 @@ "team_id": "lec-movistar-koi", "last_name": "Bogurina", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 73, + "physiotherapy": 68, + "judging_ability": 71, + "judging_potential": 64 }, "first_name": "Eric Ruiz ", "nationality": "Spain", @@ -218,9 +197,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759980648_axfvon3zie.webp", - "nickname": "Independent", - "team_id_2": null + "profile_image_url": "/staff-photos/6971ddcda00edcaa.webp", + "nickname": "Independent" }, { "id": "staff-ad1b63a7", @@ -229,10 +207,10 @@ "team_id": "lec-natus-vincere", "last_name": "Picard", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 68, + "judging_ability": 73, + "judging_potential": 75 }, "first_name": "Adrien Picard", "nationality": "France", @@ -240,9 +218,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778760041842_oqrh7fkygn.webp", - "nickname": "GotoOne", - "team_id_2": null + "profile_image_url": "/staff-photos/78857d0a.webp", + "nickname": "GotoOne" }, { "id": "staff-c34982d7", @@ -251,10 +228,10 @@ "team_id": "lec-sk-gaming", "last_name": "Torre", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 73, + "physiotherapy": 73, + "judging_ability": 69, + "judging_potential": 71 }, "first_name": "David Rodríguez ", "nationality": "Spain", @@ -262,31 +239,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759293600_pnom323jslj.webp", - "nickname": "OWN3R", - "team_id_2": null + "profile_image_url": "/staff-photos/c5f9e287ab75677b.webp", + "nickname": "OWN3R" }, { "contract_end": "2100-11-16", "id": "3722a829-c21b-43f6-9287-12cc5ff02cfe", "first_name": "Samuel Mathews", - "last_name": "", "nickname": "Sam Mathews", - "nationality": "GB", - "birth_country": null, - "date_of_birth": "1980-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-fnatic", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/7d0d872c74fa1776.jpg" }, { "id": "staff-6211ad31", @@ -295,10 +258,10 @@ "team_id": "lec-giantx-lec", "last_name": "Neves", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 78, + "judging_ability": 75, + "judging_potential": 77 }, "first_name": "Rúben Alexandre ", "nationality": "Portugal", @@ -306,9 +269,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759867040_u3i0rlclwbb.webp", - "nickname": "Rhuckz", - "team_id_2": null + "profile_image_url": "/staff-photos/ce56efbfc78e95c4.webp", + "nickname": "Rhuckz" }, { "id": "staff-c8127116", @@ -317,10 +279,10 @@ "team_id": "lec-sk-gaming", "last_name": "Duff", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 70, + "physiotherapy": 72, + "judging_ability": 69, + "judging_potential": 68 }, "first_name": "Christopher Duff", "nationality": "United Kingdom", @@ -329,8 +291,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/24267906.webp", - "nickname": "Duffman", - "team_id_2": null + "nickname": "Duffman" }, { "id": "staff-314cb40c", @@ -339,10 +300,10 @@ "team_id": "lec-team-vitality", "last_name": "Morisot", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 49, + "physiotherapy": 52, + "judging_ability": 51, + "judging_potential": 49 }, "first_name": "Jonas Morisot", "nationality": "France", @@ -350,75 +311,47 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": null, - "team_id_2": null + "profile_image_url": "/staff-photos/1ff09787.webp", + "nickname": null }, { "contract_end": "2026-11-16", "id": "47a8f6eb-7f36-45f5-924f-0fae5ddde607", "first_name": "Richard Wolter", - "last_name": "", "nickname": "Immanuelity", - "nationality": "DE", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Performance Coach", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-fnatic", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/bff2215c3934d8f8.png" }, { "id": "staff-891b413e", "role": "Assistant", - "wage": 0, + "wage": null, "team_id": "lec-fnatic", "last_name": "Pascu", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 75, + "judging_ability": 82, + "judging_potential": 81 }, "first_name": "Andrei Pascu", "nationality": "Romania", "contract_end": "2026-12-20", "birth_country": null, - "date_of_birth": "1995-01-18", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Odoamne", - "team_id_2": null + "profile_image_url": "/staff-photos/7b34ed90.webp", + "nickname": "Odoamne" }, { "contract_end": "2100-01-01", "id": "545d8b6e-86f0-4dc9-8016-788d1a72a190", "first_name": "Yevhen Zolotarov", - "last_name": "", "nickname": "Yevhen Zolotarov", - "nationality": "UA", - "birth_country": null, - "date_of_birth": "1980-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-natus-vincere", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/afcdeb0693772ccd.png" }, { "id": "staff-67ee37ad", @@ -427,10 +360,10 @@ "team_id": "lec-giantx-lec", "last_name": "Samulewski", "attributes": { - "coaching": 50, - "physiotherapy": 50, + "coaching": 53, + "physiotherapy": 45, "judging_ability": 50, - "judging_potential": 50 + "judging_potential": 51 }, "first_name": "Kamil Samulewski", "nationality": "Poland", @@ -439,8 +372,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/60a47a03.webp", - "nickname": null, - "team_id_2": null + "nickname": null }, { "id": "staff-8c320e54", @@ -449,10 +381,10 @@ "team_id": "lec-team-vitality", "last_name": "Fischer", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 74, + "physiotherapy": 68, + "judging_ability": 74, + "judging_potential": 73 }, "first_name": "Danusch Fischer", "nationality": "Germany", @@ -460,9 +392,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778761605796_4v7k1d9p2ty.webp", - "nickname": "Arvindir", - "team_id_2": null + "profile_image_url": "/staff-photos/0281d932.webp", + "nickname": "Arvindir" }, { "id": "staff-c4d70048", @@ -471,10 +402,10 @@ "team_id": "lec-team-vitality", "last_name": "Vidal", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 74, + "physiotherapy": 68, + "judging_ability": 78, + "judging_potential": 80 }, "first_name": "Mauro Garih Vidal", "nationality": "Spain", @@ -482,9 +413,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Garih", - "team_id_2": null + "profile_image_url": "/staff-photos/694b663248a87372.png", + "nickname": "Garih" }, { "id": "staff-71dd6827", @@ -493,10 +423,10 @@ "team_id": "lec-karmine-corp", "last_name": "Viguié", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 70, + "judging_ability": 76, + "judging_potential": 77 }, "first_name": "Quentin Viguié", "nationality": "France", @@ -504,31 +434,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759921944_ql812pegnqd.webp", - "nickname": "Zeph", - "team_id_2": null + "profile_image_url": "/staff-photos/617d7d47.webp", + "nickname": "Zeph" }, { "contract_end": "2100-01-01", "id": "657df7ce-7cc6-437d-a4e0-eaf40f44d811", "first_name": "Jorge Orejudo", - "last_name": "", "nickname": "Goorgo", - "nationality": "ES", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-team-heretics-lec", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/eccc5ef1adb01319.png" }, { "id": "staff-34f82415", @@ -537,10 +453,10 @@ "team_id": "lec-team-vitality", "last_name": "Trumbić", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 86, + "physiotherapy": 80, + "judging_ability": 87, + "judging_potential": 85 }, "first_name": "Luka Trumbić", "nationality": "Croatia", @@ -549,8 +465,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/65b19afc.webp", - "nickname": null, - "team_id_2": null + "nickname": null }, { "id": "staff-dbb3517d", @@ -559,10 +474,10 @@ "team_id": "lec-shifters", "last_name": "Dziemian", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 73, + "judging_ability": 73, + "judging_potential": 81 }, "first_name": "Marek Dziemian", "nationality": "Poland", @@ -570,9 +485,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778760115980_wjk816qmqnc.webp", - "nickname": "MenQ", - "team_id_2": null + "profile_image_url": "/staff-photos/6e4972ca.webp", + "nickname": "MenQ" }, { "id": "staff-cb78bfa2", @@ -581,10 +495,10 @@ "team_id": "lec-team-vitality", "last_name": "MacCormack", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 99, + "physiotherapy": 84, + "judging_ability": 96, + "judging_potential": 90 }, "first_name": "James MacCormack", "nationality": "United Kingdom", @@ -592,21 +506,20 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759033256_omxzvi0saio.webp", - "nickname": "Mac", - "team_id_2": null + "profile_image_url": "/staff-photos/7e87d3f9.webp", + "nickname": "Mac" }, { "id": "staff-32a0172d", "role": "Owner", - "wage": 0, + "wage": null, "team_id": "lec-karmine-corp", "last_name": "Kebir", "attributes": { - "coaching": 50, + "coaching": 45, "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "judging_ability": 53, + "judging_potential": 48 }, "first_name": "Kamel Kebir", "nationality": "France", @@ -614,31 +527,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1444x920_kameto-rejoint-webedia", - "nickname": "Kameto", - "team_id_2": null + "profile_image_url": "/staff-photos/4989d4f2.webp", + "nickname": "Kameto" }, { "contract_end": "2100-01-01", "id": "9909e826-5333-4a5c-a767-f182220b76ff", "first_name": "Fabien Devide", - "last_name": "", "nickname": "Neo", - "nationality": "FR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/3a6d2.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-team-vitality", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/fa264b6fd9d0a70a.jpg" }, { "id": "staff-60a23f04", @@ -647,10 +546,10 @@ "team_id": "lec-shifters", "last_name": "Osuch", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 52, + "physiotherapy": 51, + "judging_ability": 49, + "judging_potential": 58 }, "first_name": "Damian Osuch", "nationality": "Poland", @@ -659,8 +558,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/210b1d42.webp", - "nickname": "Arces", - "team_id_2": null + "nickname": "Arces" }, { "id": "staff-16f5a033", @@ -669,10 +567,10 @@ "team_id": "lec-shifters", "last_name": "Kella", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 73, + "judging_ability": 70, + "judging_potential": 69 }, "first_name": "Yanis Kella", "nationality": "France", @@ -680,53 +578,26 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759185572_eqc2q2lzigu.webp", - "nickname": "Striker", - "team_id_2": null + "profile_image_url": "/staff-photos/09e6a5c4.webp", + "nickname": "Striker" }, { "contract_end": "2100-01-01", "id": "a2840eec-dc24-4408-928d-11016e9b341a", "first_name": "Alexander T. Müller", - "last_name": "", "nickname": "Alexander T. Müller", - "nationality": "DE", - "birth_country": null, - "date_of_birth": "1975-01-01", - "profile_image_url": "/staff-photos/Alexander-Mu%CC%88ller-600x600-1.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-sk-gaming", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/f8def92c1b46a662.jpg" }, { "contract_end": "2100-01-01", "id": "a522360a-1ece-428f-b0d5-349391afd7fd", "first_name": "Jens Hilgers", - "last_name": "", "nickname": "Jens Hilgers", - "nationality": "DE", - "birth_country": null, - "date_of_birth": "1975-01-01", - "profile_image_url": "/staff-photos/Jens-Hilgers-Dojo-Madness.jpg", "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-g2-esports", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/8da094c8ad3e90ce.jpg" }, { "id": "staff-bd861166", @@ -735,10 +606,10 @@ "team_id": "lec-fnatic", "last_name": "Pérez", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 71, + "judging_ability": 74, + "judging_potential": 81 }, "first_name": "Pablo Vegas ", "nationality": "Spain", @@ -746,9 +617,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759718088_t0getlblt2.webp", - "nickname": "Gaax", - "team_id_2": null + "profile_image_url": "/staff-photos/c5fb46f73037f877.webp", + "nickname": "Gaax" }, { "id": "staff-bdce400c", @@ -757,10 +627,10 @@ "team_id": "lec-karmine-corp", "last_name": "Han-gyu", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 92, + "physiotherapy": 86, + "judging_ability": 95, + "judging_potential": 93 }, "first_name": "Bok Han-gyu ", "nationality": "South Korea", @@ -768,75 +638,47 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778758813002_4eye24yb1x3.webp", - "nickname": "Reapered", - "team_id_2": null + "profile_image_url": "/staff-photos/48593bcf.webp", + "nickname": "Reapered" }, { "id": "staff-ae5403d7", "role": "Owner", - "wage": 0, + "wage": null, "team_id": "lec-movistar-koi", "last_name": "Garatea", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, + "coaching": 55, + "physiotherapy": 44, + "judging_ability": 47, "judging_potential": 50 }, "first_name": "Ibai Llanos Garatea", "nationality": "Spain", "contract_end": "2100-01-01", "birth_country": null, - "date_of_birth": "1995-03-26", + "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/250px-As%C3%AD_fue_la_Presentaci%C3%B3n_de_la_Velada_del_A%C3%B1o_5_24.jpg", - "nickname": "Ibai", - "team_id_2": null + "profile_image_url": "/staff-photos/e8f3060aaebfba15.jpg", + "nickname": "Ibai" }, { "contract_end": "2100-01-01", "id": "bcc5cfd7-8dcc-4592-9d0e-d43a9a1e2b9c", "first_name": "Alexandre Lopez", - "last_name": "", "nickname": "Alexandre Lopez", - "nationality": "CH", - "birth_country": null, - "date_of_birth": "1985-01-01", - "profile_image_url": null, "role": "Owner", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-shifters", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/d24d1bb85ad299ef.png" }, { "contract_end": "2026-11-16", "id": "bdff9076-d05e-4bbb-988c-c5ae7960683f", "first_name": "Barney Morris", - "last_name": "", "nickname": "Alphari", - "nationality": "GB", - "birth_country": null, - "date_of_birth": "1999-10-20", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-movistar-koi", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/55e5689b80cd90d4.png" }, { "id": "staff-e6ed0b15", @@ -845,10 +687,10 @@ "team_id": "lec-fnatic", "last_name": "Lohmann", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 90, + "physiotherapy": 93, + "judging_ability": 96, + "judging_potential": 96 }, "first_name": "Fabian Lohmann", "nationality": "Germany", @@ -856,9 +698,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778759516505_r3keinvk0uj.webp", - "nickname": "GrabbZ", - "team_id_2": null + "profile_image_url": "/staff-photos/19512861.webp", + "nickname": "GrabbZ" }, { "id": "staff-d05dc093", @@ -867,20 +708,19 @@ "team_id": "lec-giantx-lec", "last_name": "Guilhoto", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 76, + "judging_ability": 72, + "judging_potential": 76 }, "first_name": "André Pereira", - "nationality": "PT", + "nationality": "Portugal", "contract_end": "2026-12-20", "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778758565478_i8uk016jqki.webp", - "nickname": "Guilhoto", - "team_id_2": null + "profile_image_url": "/staff-photos/3e7c75d6b2a9f55d.webp", + "nickname": "Guilhoto" }, { "id": "staff-915e8a83", @@ -889,10 +729,10 @@ "team_id": "lec-g2-esports", "last_name": "Falco", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 97, + "physiotherapy": 89, + "judging_ability": 86, + "judging_potential": 91 }, "first_name": "Dylan Falco", "nationality": "Canada", @@ -901,30 +741,16 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/16c436b3.webp", - "nickname": "Dylan Falco", - "team_id_2": null + "nickname": "Dylan Falco" }, { "contract_end": "2026-11-16", "id": "cba554a5-3706-4b90-a547-ad7d277c3d0a", "first_name": "Lucas Simon-Meslet", - "last_name": "", "nickname": "Cabochard", - "nationality": "FR", - "birth_country": null, - "date_of_birth": "1997-04-15", - "profile_image_url": null, "role": "Assistant", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-shifters", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/496121a346ff64f4.png" }, { "id": "staff-bf0670c7", @@ -933,10 +759,10 @@ "team_id": "lec-g2-esports", "last_name": "Pedraza", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 69, + "judging_ability": 72, + "judging_potential": 66 }, "first_name": "Ismael Pedraza", "nationality": "Colombia", @@ -944,31 +770,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Isma", - "team_id_2": null + "profile_image_url": "/staff-photos/c7dd33d64723e84e.png", + "nickname": "Isma" }, { "contract_end": "2026-11-16", "id": "d8a05c96-f94f-4b06-b00e-ceb43ee0f998", "first_name": "Nuša Klepec", - "last_name": "", "nickname": "PlagueRat", - "nationality": "SI", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": "/staff-photos/K1gP0p4o_400x400.jpg", "role": "Performance Coach", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-movistar-koi", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/24af0e394aafb456.jpg" }, { "id": "staff-9b849fcf", @@ -977,10 +789,10 @@ "team_id": "lec-team-heretics-lec", "last_name": "Diepstraten", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 88, + "physiotherapy": 86, + "judging_ability": 91, + "judging_potential": 83 }, "first_name": "Fabian Diepstraten", "nationality": "Netherlands", @@ -988,31 +800,17 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1778761516705_hqkdjuvye18.webp", - "nickname": "Febiven", - "team_id_2": null + "profile_image_url": "/staff-photos/649dd0c6.webp", + "nickname": "Febiven" }, { "contract_end": "2026-11-16", "id": "dffd9869-d558-41d1-ab7a-a50833898668", "first_name": "Clément Thillier", - "last_name": "", "nickname": "Clément", - "nationality": "FR", - "birth_country": null, - "date_of_birth": "1990-01-01", - "profile_image_url": null, "role": "Performance Coach", - "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 - }, "team_id": "lec-karmine-corp", - "team_id_2": null, - "specialization": null, - "wage": 0 + "profile_image_url": "/staff-photos/4139015214e629de.png" }, { "id": "staff-b5333fab", @@ -1021,10 +819,10 @@ "team_id": "lec-natus-vincere", "last_name": "Bieńkowski", "attributes": { - "coaching": 50, - "physiotherapy": 50, + "coaching": 46, + "physiotherapy": 53, "judging_ability": 50, - "judging_potential": 50 + "judging_potential": 57 }, "first_name": "Maciej Bieńkowski", "nationality": "Poland", @@ -1032,9 +830,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": "/staff-photos/1779561024885_fvr3crphy5.jpg", - "nickname": "Sanchi", - "team_id_2": null + "profile_image_url": "/staff-photos/3eed8e41.webp", + "nickname": "Sanchi" } ] } \ No newline at end of file diff --git a/data/staffs/les_staffs.json b/data/staffs/les_staffs.json new file mode 100644 index 000000000..1dc46a997 --- /dev/null +++ b/data/staffs/les_staffs.json @@ -0,0 +1,325 @@ +{ + "name": "LES Staff", + "description": "LES - 2026 Season", + "staff": [ + { + "id": "195c2504-21b9-49fe-8ff3-f5feab924384", + "first_name": "Javier Fernández Calavia", + "nickname": "Monu", + "role": "Analyst", + "team_id": "team-5d7b3ec4", + "profile_image_url": "/staff-photos/372fbe25fc057613.jpg" + }, + { + "id": "207163ac-7f00-49af-aeb2-c1bc8f03862a", + "first_name": "Ricardo Gaio Sousa Ferreira", + "nickname": "Gaio", + "role": "Assistant", + "team_id": "team-129835c5", + "profile_image_url": "/staff-photos/8d3af58a5cb88096.webp" + }, + { + "id": "staff-6b1e34e3", + "role": "Assistant", + "wage": 30000, + "team_id": "team-854f6893", + "last_name": "Sarafian", + "attributes": { + "coaching": 88, + "physiotherapy": 82, + "judging_ability": 85, + "judging_potential": 82 + }, + "first_name": "Nubar Sarafian", + "nationality": "United Kingdom", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/44d173ea.webp", + "nickname": "Maxlore" + }, + { + "id": "staff-8162f010", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-06974122", + "last_name": "Pedrosa", + "attributes": { + "coaching": 80, + "physiotherapy": 76, + "judging_ability": 76, + "judging_potential": 78 + }, + "first_name": "Alejandro Fernández-Valdés Pedrosa", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/27977e5c30a80481.webp", + "nickname": "Jandro" + }, + { + "id": "320d13e4-2515-4d9e-b702-0e5f188bdefb", + "first_name": "Adrián Ballesteros", + "nickname": "Carti", + "role": "Assistant", + "team_id": "team-5d7b3ec4", + "profile_image_url": null + }, + { + "id": "4df397fa-6c6d-4b33-a362-ff618c042d8d", + "first_name": "Sergio Paredes del Pino", + "nickname": "Paredes", + "role": "Performance Coach", + "team_id": "team-129835c5", + "profile_image_url": "/staff-photos/8215807f161589dd.jpg" + }, + { + "id": "staff-4f08fb53", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-5d7b3ec4", + "last_name": "Crespo", + "attributes": { + "coaching": 74, + "physiotherapy": 69, + "judging_ability": 68, + "judging_potential": 68 + }, + "first_name": "Gregorio Santos Crespo", + "nationality": "Spanish", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/247d38d017782de8.webp", + "nickname": "Shere" + }, + { + "id": "staff-ca9464b0", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-129835c5", + "last_name": "Brandão", + "attributes": { + "coaching": 72, + "physiotherapy": 74, + "judging_ability": 75, + "judging_potential": 76 + }, + "first_name": "Gonçalo Pinto Brandão", + "nationality": "Portugal", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/86392a92f9360909.webp", + "nickname": "Crusher" + }, + { + "id": "66aae1f3-885a-4ad6-8ec7-b50fd4d9dfd3", + "first_name": "Martin Toribio", + "nickname": "Toribio", + "role": "Performance Coach", + "team_id": "team-06974122", + "profile_image_url": "/staff-photos/39b4421d3e5d4e86.png" + }, + { + "id": "7353a371-ce17-44db-9f9d-00ebc738a338", + "first_name": "Joan Laporta", + "nickname": "Laporta", + "role": "Owner", + "team_id": "team-06974122", + "profile_image_url": "/staff-photos/2c2a45cf61b40066.webp" + }, + { + "id": "748c093b-9005-4e8b-aa5f-815656003c91", + "first_name": "Xavier Fluxà i Millan", + "nickname": "Xixauxas", + "role": "HeadCoach", + "team_id": "team-ac846213", + "profile_image_url": "/staff-photos/b598ea89dd2e666c.webp" + }, + { + "id": "842bf6d9-2996-4cef-b077-987fbc7ca201", + "first_name": "Óscar Compadre Alonso ", + "nickname": "Fosky", + "role": "Analyst", + "team_id": "team-d0d82673", + "profile_image_url": "/staff-photos/d81248e9ffbfc884.webp" + }, + { + "id": "af709659-8000-4ffa-8870-47c202dd5f01", + "first_name": "Carlos Gutiérrez", + "nickname": " Gutiérrez", + "role": "Owner", + "team_id": "team-5d7b3ec4", + "profile_image_url": "/staff-photos/024752520a16a7c8.jpg" + }, + { + "id": "b8de1e8c-eab6-45b2-974a-66087f43d5b9", + "first_name": "Carlos Vioque", + "nickname": "Kaito", + "role": "Analyst", + "team_id": "team-06974122", + "profile_image_url": "/staff-photos/45a862a92dfcb040.webp" + }, + { + "contract_end": "3000-12-31", + "id": "c0ae42c7-f979-430e-aceb-d97c447f9e4f", + "first_name": "Universidad de Barcelona", + "nickname": "UB", + "role": "Owner", + "team_id": "team-ac846213", + "profile_image_url": "/staff-photos/198b8923a98134c8.png" + }, + { + "id": "staff-3a38b9f3", + "role": "Assistant", + "wage": 30000, + "team_id": "team-d0d82673", + "last_name": "Martínez", + "attributes": { + "coaching": 57, + "physiotherapy": 53, + "judging_ability": 54, + "judging_potential": 57 + }, + "first_name": "Serafín Rodríguez Martínez", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/a279db3988c407ff.webp", + "nickname": "Ritsu" + }, + { + "id": "staff-dfbd62fd", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-d0d82673", + "last_name": "Villar", + "attributes": { + "coaching": 71, + "physiotherapy": 65, + "judging_ability": 65, + "judging_potential": 67 + }, + "first_name": "Fernando Villar", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/4c9cc264.webp", + "nickname": "SLiezzan" + }, + { + "id": "staff-478e8530", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-8baee3fd", + "last_name": "Used", + "attributes": { + "coaching": 74, + "physiotherapy": 69, + "judging_ability": 65, + "judging_potential": 74 + }, + "first_name": "Jorge López Used", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/c2c5c6a7c6e4411e.webp", + "nickname": "Disgrace" + }, + { + "id": "dab9fa63-ce82-4bc1-b513-e5080b5ca487", + "first_name": "Rafael Bermúdez", + "nickname": "Bermúdez", + "role": "Owner", + "team_id": "team-5d7b3ec4", + "profile_image_url": "/staff-photos/1e94451c5437f727.jpg" + }, + { + "id": "e86b73cf-d8a5-4a54-9459-cc7425db6ad3", + "first_name": "Diego Ferreria", + "nickname": "Diogoambf", + "role": "Analyst", + "team_id": "team-129835c5", + "profile_image_url": "/staff-photos/44d94c8ee27b61b7.jpg" + }, + { + "id": "staff-55414a84", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-854f6893", + "last_name": "Salar", + "attributes": { + "coaching": 68, + "physiotherapy": 63, + "judging_ability": 65, + "judging_potential": 64 + }, + "first_name": "Jose Maria Iznardo Salar", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/a52c9294bdf5e08c.webp", + "nickname": "F1RE" + }, + { + "id": "ee2dfbe3-f379-4717-ad94-4e5cc8ba9d75", + "first_name": "Santiago Táboas Lobato", + "nickname": "Taboas", + "role": "Owner", + "team_id": "team-d0d82673", + "profile_image_url": "/staff-photos/8793444c6c39b51f.jpg" + }, + { + "id": "staff-d1215257", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-f10b156f", + "last_name": "Rodríguez", + "attributes": { + "coaching": 74, + "physiotherapy": 72, + "judging_ability": 73, + "judging_potential": 75 + }, + "first_name": "Óscar Pedrosa Gonzàlez", + "nationality": "Colombia", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/06f271df.webp", + "nickname": "Kamkikaze" + }, + { + "id": "f0fffb97-67ab-4e62-9fae-d81337f4cc50", + "first_name": "Daniel Hockley", + "nickname": "Dan", + "role": "Assistant", + "team_id": "team-f10b156f", + "profile_image_url": "/staff-photos/9a3a74749a4daf3f.webp" + }, + { + "contract_end": "3000-12-31", + "id": "f6695dcf-a421-45d4-a2a8-d0510ac71afb", + "first_name": "Universidad Católica San Antonio Murcia", + "nickname": "UCAM", + "role": "Owner", + "team_id": "team-129835c5", + "profile_image_url": "/staff-photos/48758de9d58e5cf4.png" + } + ] +} \ No newline at end of file diff --git a/data/staffs/lfl-l_staffs.json b/data/staffs/lfl-l_staffs.json new file mode 100644 index 000000000..5e0e2f38b --- /dev/null +++ b/data/staffs/lfl-l_staffs.json @@ -0,0 +1,64 @@ +{ + "name": "LFL-L Staff", + "description": "LFL-L - 2026 Season", + "staff": [ + { + "id": "70995878-3e62-42ab-b68c-446c8f6e7139", + "first_name": "Jean Medzadourian ", + "nickname": "Trayton", + "role": "Owner", + "team_id": "team-d78a4aff", + "profile_image_url": "/staff-photos/c21cddd53424802a.webp" + }, + { + "id": "staff-66afe1f7", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-d78a4aff", + "last_name": "Ramanana", + "attributes": { + "coaching": 66, + "physiotherapy": 57, + "judging_ability": 63, + "judging_potential": 65 + }, + "first_name": "Rehareha Ramanana", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/7c3b6ebc.webp", + "nickname": "Reha" + }, + { + "id": "staff-c3e1b8e5", + "role": "Assistant", + "wage": 30000, + "team_id": "team-d78a4aff", + "last_name": "Trochel", + "attributes": { + "coaching": 62, + "physiotherapy": 60, + "judging_ability": 62, + "judging_potential": 70 + }, + "first_name": "Alan Trochel", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/191ce26f.webp", + "nickname": "Karot" + }, + { + "id": "dcb45c7e-c950-4709-9d39-98782d117bbd", + "first_name": "Thomas Jego", + "nickname": "Mascode", + "role": "Analyst", + "team_id": "team-d78a4aff", + "profile_image_url": "/staff-photos/3a3f5a927ab4409e.jpg" + } + ] +} \ No newline at end of file diff --git a/data/staffs/lfl_staffs.json b/data/staffs/lfl_staffs.json new file mode 100644 index 000000000..6b533c8f5 --- /dev/null +++ b/data/staffs/lfl_staffs.json @@ -0,0 +1,359 @@ +{ + "name": "LFL Staff", + "description": "LFL - 2026 Season", + "staff": [ + { + "id": "staff-0614faac", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-da97809e", + "last_name": "Zrinjski", + "attributes": { + "coaching": 78, + "physiotherapy": 77, + "judging_ability": 76, + "judging_potential": 78 + }, + "first_name": "Nikola Zrinjski", + "nationality": "Croatia", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/1ef8884a.webp", + "nickname": "Xani" + }, + { + "id": "12a28b03-c54f-43ec-b223-834df0de197e", + "first_name": "Leo Pironti", + "nickname": "ProbablyME", + "role": "Analyst", + "team_id": "team-012b64d1", + "profile_image_url": null + }, + { + "id": "staff-8fae16d6", + "role": "Owner", + "wage": 30000, + "team_id": "team-ab04f649", + "last_name": "Deseuste", + "attributes": { + "coaching": 62, + "physiotherapy": 56, + "judging_ability": 61, + "judging_potential": 64 + }, + "first_name": "Leo Deseuste", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/6d44f1b9.webp", + "nickname": "Ashanome" + }, + { + "id": "2eee9cfc-fb61-4fff-8f4c-057831a6afae", + "first_name": "Bailey Parnell", + "nickname": "Dr. Bailey", + "role": "Owner", + "team_id": "team-92b46fef", + "profile_image_url": "/staff-photos/1383fb59a51e6ff2.webp" + }, + { + "id": "staff-912798f9", + "role": "Assistant", + "wage": 30000, + "team_id": "team-af25d742", + "last_name": "Stoffel", + "attributes": { + "coaching": 74, + "physiotherapy": 66, + "judging_ability": 70, + "judging_potential": 73 + }, + "first_name": "Benjamin Stoffel", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/44fd15c8.webp", + "nickname": "Fara" + }, + { + "id": "staff-b75c2690", + "role": "Assistant", + "wage": 30000, + "team_id": "team-92b46fef", + "last_name": "Claudé", + "attributes": { + "coaching": 72, + "physiotherapy": 69, + "judging_ability": 73, + "judging_potential": 71 + }, + "first_name": "Raphaël Claudé", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/6beb1eb4.webp", + "nickname": "Lingwi" + }, + { + "id": "47a0f76c-9b17-445a-8a13-99e84dac386b", + "first_name": "Frédéric \"Glopo\" Sialelli", + "nickname": "Glopo", + "role": "Assistant", + "team_id": "team-0f9010b5", + "profile_image_url": "/staff-photos/292c1c8e1dc6fcfd.webp" + }, + { + "id": "staff-cff56735", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-c12fef91", + "last_name": "Fructuoso", + "attributes": { + "coaching": 88, + "physiotherapy": 73, + "judging_ability": 82, + "judging_potential": 86 + }, + "first_name": "Ramón Meseguer Fructuoso", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/420cf52ca9a2cb71.webp", + "nickname": "Naruterador" + }, + { + "id": "staff-179d32e4", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-92b46fef", + "last_name": "Lompre", + "attributes": { + "coaching": 75, + "physiotherapy": 66, + "judging_ability": 70, + "judging_potential": 70 + }, + "first_name": "Adrien Lompre", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/775442a2.webp", + "nickname": "Hellombre" + }, + { + "id": "staff-d9420d0c", + "role": "Assistant", + "wage": 30000, + "team_id": "team-012b64d1", + "last_name": "Ginestroni", + "attributes": { + "coaching": 72, + "physiotherapy": 69, + "judging_ability": 74, + "judging_potential": 77 + }, + "first_name": "Fabrizio Ginestroni", + "nationality": "Italy", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/72462bd9.webp", + "nickname": "Gine" + }, + { + "id": "6beaa662-4c5c-499f-b4e9-565f4d71092b", + "first_name": "Gabriël Rau", + "nickname": "Bwipo", + "role": "HeadCoach", + "team_id": "team-f8f7f78d", + "profile_image_url": "/staff-photos/0d123f4f7939e671.webp" + }, + { + "id": "staff-35db42bd", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-af25d742", + "last_name": "Paul", + "attributes": { + "coaching": 67, + "physiotherapy": 60, + "judging_ability": 64, + "judging_potential": 60 + }, + "first_name": "Ianis Paul", + "nationality": "France", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/3640fa68.webp", + "nickname": "Blidzy" + }, + { + "id": "staff-e6b14915", + "role": "Assistant", + "wage": 30000, + "team_id": "team-ab04f649", + "last_name": "Bernardino", + "attributes": { + "coaching": 67, + "physiotherapy": 68, + "judging_ability": 71, + "judging_potential": 73 + }, + "first_name": "Rafael Bernardino", + "nationality": "Portugal", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/32994785.webp", + "nickname": "Yong" + }, + { + "id": "staff-dec05177", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-8f3d532a", + "last_name": "Borkowski", + "attributes": { + "coaching": 76, + "physiotherapy": 75, + "judging_ability": 70, + "judging_potential": 71 + }, + "first_name": "Mateusz Borkowski", + "nationality": "Poland", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/1daab759.webp", + "nickname": "Tasz" + }, + { + "id": "9778133b-2cb5-4fdf-ad2a-6460d95e7d8a", + "first_name": "Benoît Theveny", + "nickname": "Tev", + "role": "Owner", + "team_id": "team-c12fef91", + "profile_image_url": "/staff-photos/2524ed189873ba2d.jpg" + }, + { + "id": "staff-f03c0e5a", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-012b64d1", + "last_name": "Comte", + "attributes": { + "coaching": 89, + "physiotherapy": 81, + "judging_ability": 85, + "judging_potential": 85 + }, + "first_name": "Danny Le Comte", + "nationality": "Spain", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/e6e58949c084a4cb.webp", + "nickname": "Dan Dan" + }, + { + "id": "a08906cc-12ba-4512-b34d-904eba9ea379", + "first_name": "Maxime Tchoroukian", + "nickname": "Sixen", + "role": "Owner", + "team_id": "team-da97809e", + "profile_image_url": "/staff-photos/d0c24459ece74416.jpg" + }, + { + "id": "a4bd1808-9fa1-42ea-a6bf-44a72b211ee0", + "first_name": "Sakor Ros", + "nickname": "Le Roi Bisou", + "role": "Owner", + "team_id": "team-012b64d1", + "profile_image_url": "/staff-photos/add404fe6ede7f96.jpg" + }, + { + "id": "staff-700e0fa9", + "role": "Analyst", + "wage": 30000, + "team_id": "team-ab04f649", + "last_name": "Young-min", + "attributes": { + "coaching": 76, + "physiotherapy": 67, + "judging_ability": 66, + "judging_potential": 71 + }, + "first_name": "Kim Young-min", + "nationality": "South Korea", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/5d2e5fce.webp", + "nickname": "Merit" + }, + { + "id": "c1c3223e-6293-47ed-82e4-65d0dc6a92e6", + "first_name": "Charly Guillar", + "nickname": " Djoko", + "role": "HeadCoach", + "team_id": "team-0f9010b5", + "profile_image_url": "/staff-photos/e2ea0ca51357752d.webp" + }, + { + "id": "staff-2ca264f5", + "role": "Assistant", + "wage": 30000, + "team_id": "team-c12fef91", + "last_name": "Bruk", + "attributes": { + "coaching": 75, + "physiotherapy": 72, + "judging_ability": 71, + "judging_potential": 68 + }, + "first_name": "David Bruk", + "nationality": "Czech Republic", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/5940ab59.webp", + "nickname": "Kraker" + }, + { + "id": "ea537e89-e106-4b7c-8232-362a2134b178", + "first_name": "Burak Kaan Badan ", + "nickname": "Viser1on", + "role": "HeadCoach", + "team_id": "team-ab04f649", + "profile_image_url": "/staff-photos/4d007e80bae32682.webp" + }, + { + "id": "fabc7ad8-ffca-4351-9ed4-b163c6cf3eb5", + "first_name": "Philippe Mino", + "nickname": "Mino", + "role": "Owner", + "team_id": "team-0f9010b5", + "profile_image_url": "/staff-photos/4cfde72648907bda.webp" + } + ] +} \ No newline at end of file diff --git a/data/staffs/lpl_staffs.json b/data/staffs/lpl_staffs.json index fd651d99c..151f4011e 100644 --- a/data/staffs/lpl_staffs.json +++ b/data/staffs/lpl_staffs.json @@ -9,10 +9,10 @@ "team_id": "team-38a818e5", "last_name": "Qi-Lin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 79, + "physiotherapy": 77, + "judging_ability": 75, + "judging_potential": 78 }, "first_name": "Zhou Qi-Lin", "nationality": "China", @@ -21,8 +21,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/2b9ac96f.webp", - "nickname": "NONAME", - "team_id_2": null + "nickname": "NONAME" }, { "id": "staff-607aa975", @@ -31,10 +30,10 @@ "team_id": "team-dd4bc6a5", "last_name": "Chieh", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 86, + "physiotherapy": 80, + "judging_ability": 81, + "judging_potential": 89 }, "first_name": "Li Chieh", "nationality": "Taiwan", @@ -43,8 +42,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/2bcd73b3.webp", - "nickname": "Chieh", - "team_id_2": null + "nickname": "Chieh" }, { "id": "staff-5fc74665", @@ -53,10 +51,10 @@ "team_id": "team-b777d366", "last_name": "Po-Hao", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 88, + "judging_ability": 85, + "judging_potential": 91 }, "first_name": "Chang Po-Hao", "nationality": "Taiwan", @@ -65,8 +63,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/71052dc0.webp", - "nickname": "Poppy", - "team_id_2": null + "nickname": "Poppy" }, { "id": "staff-8aded48b", @@ -75,10 +72,10 @@ "team_id": "team-38a818e5", "last_name": "Hsiu-Chi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 72, + "judging_ability": 79, + "judging_potential": 85 }, "first_name": "Lien Hsiu-Chi", "nationality": "Taiwan", @@ -87,8 +84,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/4cdbc195.webp", - "nickname": "Benny", - "team_id_2": null + "nickname": "Benny" }, { "id": "staff-7dd70ea6", @@ -97,10 +93,10 @@ "team_id": "team-dd4bc6a5", "last_name": "Dong-hyun", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 81, + "physiotherapy": 73, + "judging_ability": 80, + "judging_potential": 79 }, "first_name": "Nam Dong-hyun", "nationality": "South Korea", @@ -109,8 +105,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/34fae1b0.webp", - "nickname": "Ben", - "team_id_2": null + "nickname": "Ben" }, { "id": "staff-fb61079f", @@ -119,9 +114,9 @@ "team_id": "team-dd4bc6a5", "last_name": "Yi-Bin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, + "coaching": 53, + "physiotherapy": 44, + "judging_ability": 57, "judging_potential": 50 }, "first_name": "Zhuang Yi-Bin", @@ -131,8 +126,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/3cfdf428.webp", - "nickname": "zyb", - "team_id_2": null + "nickname": "zyb" }, { "id": "staff-9f9132e1", @@ -141,10 +135,10 @@ "team_id": "team-5facf88e", "last_name": "Xin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 71, + "judging_ability": 82, + "judging_potential": 81 }, "first_name": "He Xin", "nationality": "China", @@ -153,8 +147,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/7f0659a4.webp", - "nickname": "694", - "team_id_2": null + "nickname": "694" }, { "id": "staff-835edf1a", @@ -163,10 +156,10 @@ "team_id": "team-a324dc9d", "last_name": "Jun-Da", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 55, + "physiotherapy": 60, + "judging_ability": 60, + "judging_potential": 64 }, "first_name": "Feng Jun-Da", "nationality": "China", @@ -175,8 +168,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/16432004.webp", - "nickname": "Medusa", - "team_id_2": null + "nickname": "Medusa" }, { "id": "staff-91937240", @@ -185,10 +177,10 @@ "team_id": "team-ec9ab429", "last_name": "Woo-beom", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 76, + "judging_ability": 81, + "judging_potential": 81 }, "first_name": "Choi Woo-beom", "nationality": "South Korea", @@ -197,8 +189,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/64a39a1a.webp", - "nickname": "Edgar", - "team_id_2": null + "nickname": "Edgar" }, { "id": "staff-ff5433a5", @@ -207,10 +198,10 @@ "team_id": "team-b777d366", "last_name": "Wen-Bo", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 75, + "judging_ability": 76, + "judging_potential": 79 }, "first_name": "He Wen-Bo", "nationality": "China", @@ -219,8 +210,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/5eeac6e1.webp", - "nickname": "BoBo", - "team_id_2": null + "nickname": "BoBo" }, { "id": "staff-a544c007", @@ -229,10 +219,10 @@ "team_id": "team-6481a859", "last_name": "Xing-Ran", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 76, + "physiotherapy": 73, + "judging_ability": 78, + "judging_potential": 83 }, "first_name": "Zhang Xing-Ran", "nationality": "China", @@ -241,8 +231,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1148d3fa.webp", - "nickname": "Zoom", - "team_id_2": null + "nickname": "Zoom" }, { "id": "staff-de3e267b", @@ -251,10 +240,10 @@ "team_id": "team-a324dc9d", "last_name": "Ze-Lin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 77, + "physiotherapy": 74, + "judging_ability": 73, + "judging_potential": 72 }, "first_name": "Zhao Ze-Lin", "nationality": "China", @@ -263,8 +252,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1cd8ccb0.webp", - "nickname": "Tselin", - "team_id_2": null + "nickname": "Tselin" }, { "id": "staff-e43e0d39", @@ -273,10 +261,10 @@ "team_id": "team-b777d366", "last_name": "Yu-Ming", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 72, + "physiotherapy": 62, + "judging_ability": 67, + "judging_potential": 67 }, "first_name": "Li Yu-Ming", "nationality": "China", @@ -284,9 +272,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Leo", - "team_id_2": null + "profile_image_url": "/staff-photos/d72a08760bd2133f.png", + "nickname": "Leo" }, { "id": "staff-c545ae4a", @@ -295,10 +282,10 @@ "team_id": "team-6481a859", "last_name": "Kan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 78, + "physiotherapy": 74, + "judging_ability": 76, + "judging_potential": 82 }, "first_name": "Wong Pak Kan", "nationality": "Hong Kong", @@ -306,9 +293,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "Tabe", - "team_id_2": null + "profile_image_url": "/staff-photos/c4d133741da258a4.png", + "nickname": "Tabe" }, { "id": "staff-df41b938", @@ -317,10 +303,10 @@ "team_id": "team-0a33a07d", "last_name": "Xin-Yi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 82, + "judging_ability": 80, + "judging_potential": 78 }, "first_name": "Zeng Xin-Yi", "nationality": "China", @@ -329,8 +315,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/76f15164.webp", - "nickname": "Maizijian", - "team_id_2": null + "nickname": "Maizijian" }, { "id": "staff-75a8224a", @@ -339,10 +324,10 @@ "team_id": "team-ca28739d", "last_name": "Zheng-Yang", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 67, + "physiotherapy": 61, + "judging_ability": 69, + "judging_potential": 69 }, "first_name": "Liu Zheng-Yang", "nationality": "China", @@ -351,8 +336,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/58ac522f.webp", - "nickname": "Liet", - "team_id_2": null + "nickname": "Liet" }, { "id": "staff-5eb4fe61", @@ -361,10 +345,10 @@ "team_id": "team-0a33a07d", "last_name": "Ren-Zhe", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 65, + "physiotherapy": 67, + "judging_ability": 63, + "judging_potential": 71 }, "first_name": "Li Ren-Zhe", "nationality": "China", @@ -373,8 +357,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/74a0da9f.webp", - "nickname": "Renzhe", - "team_id_2": null + "nickname": "Renzhe" }, { "id": "staff-93bac53e", @@ -383,10 +366,10 @@ "team_id": "team-3bd486ec", "last_name": "Chien-Wei", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 84, + "physiotherapy": 71, + "judging_ability": 75, + "judging_potential": 77 }, "first_name": "Fu Chien-Wei", "nationality": "Taiwan", @@ -395,8 +378,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/12ca8268.webp", - "nickname": "BigWei", - "team_id_2": null + "nickname": "BigWei" }, { "id": "staff-0ba60755", @@ -405,10 +387,10 @@ "team_id": "team-a84cce06", "last_name": "Chen-Hui", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 71, + "physiotherapy": 66, + "judging_ability": 64, + "judging_potential": 72 }, "first_name": "Fan Chen-Hui", "nationality": "China", @@ -417,8 +399,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/2fceb775.webp", - "nickname": "Yuzhang", - "team_id_2": null + "nickname": "Yuzhang" }, { "id": "staff-c2a7c8b1", @@ -427,10 +408,10 @@ "team_id": "team-ec9ab429", "last_name": "Fan", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 83, + "physiotherapy": 80, + "judging_ability": 81, + "judging_potential": 84 }, "first_name": "Lu Fan", "nationality": "China", @@ -439,8 +420,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/4ebd9c2d.webp", - "nickname": "Viod", - "team_id_2": null + "nickname": "Viod" }, { "id": "staff-47ba6d64", @@ -449,10 +429,10 @@ "team_id": "team-ca28739d", "last_name": "Kai", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 89, + "physiotherapy": 91, + "judging_ability": 92, + "judging_potential": 96 }, "first_name": "Ming Kai", "nationality": "China", @@ -461,8 +441,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/1389bf14.webp", - "nickname": "Clearlove", - "team_id_2": null + "nickname": "Clearlove" }, { "id": "staff-4ed24513", @@ -471,10 +450,10 @@ "team_id": "team-5facf88e", "last_name": "Guang-Hua", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 61, + "judging_ability": 62, + "judging_potential": 68 }, "first_name": "Jin Guang-Hua", "nationality": "China", @@ -483,8 +462,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": null, - "nickname": "JinJin", - "team_id_2": null + "nickname": "JinJin" }, { "id": "staff-d1391251", @@ -493,10 +471,10 @@ "team_id": "team-ca28739d", "last_name": "Fang", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 78, + "judging_ability": 72, + "judging_potential": 84 }, "first_name": "Peng Fang", "nationality": "China", @@ -505,8 +483,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/45eb9d10.webp", - "nickname": "Mni", - "team_id_2": null + "nickname": "Mni" }, { "id": "staff-9117cce7", @@ -515,10 +492,10 @@ "team_id": "team-3bd486ec", "last_name": "Li-Peng", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 77, + "judging_ability": 80, + "judging_potential": 74 }, "first_name": "Zhou Li-Peng", "nationality": "China", @@ -527,8 +504,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/371c54c9.webp", - "nickname": "Dispa1r", - "team_id_2": null + "nickname": "Dispa1r" }, { "id": "staff-5a077162", @@ -537,10 +513,10 @@ "team_id": "team-d6ad5a14", "last_name": "Jin-yong", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 88, + "physiotherapy": 75, + "judging_ability": 83, + "judging_potential": 84 }, "first_name": "Lee Jin-yong", "nationality": "South Korea", @@ -549,8 +525,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/494af767.webp", - "nickname": "Fury", - "team_id_2": null + "nickname": "Fury" }, { "id": "staff-85fb475a", @@ -559,10 +534,10 @@ "team_id": "team-75263716", "last_name": "Sheng-Liao", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 70, + "physiotherapy": 62, + "judging_ability": 66, + "judging_potential": 69 }, "first_name": "Ye Sheng-Liao", "nationality": "China", @@ -570,9 +545,8 @@ "birth_country": null, "date_of_birth": "1990-01-01", "specialization": null, - "profile_image_url": null, - "nickname": "chengz", - "team_id_2": null + "profile_image_url": "/staff-photos/b074ff923dbf4365.png", + "nickname": "chengz" }, { "id": "staff-cc5cf59d", @@ -581,10 +555,10 @@ "team_id": "team-dd4bc6a5", "last_name": "Dae-in", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 74, + "physiotherapy": 69, + "judging_ability": 73, + "judging_potential": 77 }, "first_name": "Yang Dae-in", "nationality": "South Korea", @@ -593,8 +567,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/66e6395b.webp", - "nickname": "Daeny", - "team_id_2": null + "nickname": "Daeny" }, { "id": "staff-0e17c2b9", @@ -603,10 +576,10 @@ "team_id": "team-3bd486ec", "last_name": "Chen", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 85, + "physiotherapy": 76, + "judging_ability": 75, + "judging_potential": 83 }, "first_name": "Jiang Chen", "nationality": "China", @@ -615,8 +588,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/7e768c29.webp", - "nickname": "Teacherma", - "team_id_2": null + "nickname": "Teacherma" }, { "id": "staff-c4501876", @@ -625,10 +597,10 @@ "team_id": "team-dc1429f2", "last_name": "Li-Xin", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 75, + "physiotherapy": 69, + "judging_ability": 78, + "judging_potential": 84 }, "first_name": "Chen Li-Xin", "nationality": "China", @@ -637,8 +609,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/24dffd09.webp", - "nickname": "1874", - "team_id_2": null + "nickname": "1874" }, { "id": "staff-30414a23", @@ -647,10 +618,10 @@ "team_id": "team-75263716", "last_name": "Peng", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 68, + "physiotherapy": 59, + "judging_ability": 72, + "judging_potential": 74 }, "first_name": "Luo Peng", "nationality": "China", @@ -659,8 +630,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/39d0a40f.webp", - "nickname": "Yondaime", - "team_id_2": null + "nickname": "Yondaime" }, { "id": "staff-0273d84a", @@ -669,10 +639,10 @@ "team_id": "team-a324dc9d", "last_name": "Dong-wook", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 73, + "physiotherapy": 70, + "judging_ability": 75, + "judging_potential": 78 }, "first_name": "Shin Dong-wook", "nationality": "Korea", @@ -681,8 +651,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/26da2168.webp", - "nickname": "Shine", - "team_id_2": null + "nickname": "Shine" }, { "id": "staff-db5f4c71", @@ -691,10 +660,10 @@ "team_id": "team-dc1429f2", "last_name": "Han-Xi", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 72, + "judging_ability": 75, + "judging_potential": 78 }, "first_name": "Xia Han-Xi", "nationality": "China", @@ -703,8 +672,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/40fa54ea.webp", - "nickname": "Chelizi", - "team_id_2": null + "nickname": "Chelizi" }, { "id": "staff-8d1862fa", @@ -713,10 +681,10 @@ "team_id": "team-ca28739d", "last_name": "Ji-Song", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 80, + "physiotherapy": 76, + "judging_ability": 75, + "judging_potential": 72 }, "first_name": "Yang Ji-Song", "nationality": "China", @@ -725,8 +693,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/243f577d.webp", - "nickname": "Maokai", - "team_id_2": null + "nickname": "Maokai" }, { "id": "staff-bf912de2", @@ -735,10 +702,10 @@ "team_id": "team-d6ad5a14", "last_name": "Yeong-jae", "attributes": { - "coaching": 50, - "physiotherapy": 50, - "judging_ability": 50, - "judging_potential": 50 + "coaching": 82, + "physiotherapy": 79, + "judging_ability": 84, + "judging_potential": 86 }, "first_name": "Kwon Yeong-jae", "nationality": "South Korea", @@ -747,8 +714,7 @@ "date_of_birth": "1990-01-01", "specialization": null, "profile_image_url": "/staff-photos/4ca54ece.webp", - "nickname": "Helper", - "team_id_2": null + "nickname": "Helper" } ] } \ No newline at end of file diff --git a/data/staffs/lrn_staffs.json b/data/staffs/lrn_staffs.json new file mode 100644 index 000000000..1a118fe2a --- /dev/null +++ b/data/staffs/lrn_staffs.json @@ -0,0 +1,230 @@ +{ + "name": "LRN Staff", + "description": "LRN - 2026 Season", + "staff": [ + { + "id": "079bee29-34ad-455b-b5a2-ce16198119d9", + "first_name": "Angel Edsel Carrill", + "nickname": "Edsel", + "role": "Owner", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": null + }, + { + "id": "0ee7667e-14f3-44b6-bae7-97774e2d43d7", + "first_name": "Diego Betancourt", + "nickname": "BetaTwins", + "role": "Analyst", + "team_id": "lrn-sdm-tigres", + "profile_image_url": "/staff-photos/56b4f3c99b84aca7.webp" + }, + { + "id": "117b1c17-812b-45c7-8a8e-9c99a5486b5f", + "first_name": "Miguel Villanueva", + "nickname": "Bichofan", + "role": "Analyst", + "team_id": "lrn-sdm-tigres", + "profile_image_url": null + }, + { + "id": "1a7b3764-c9e5-415e-93f2-419cbdd5f55f", + "first_name": "Markus Leuemberger", + "nickname": "Ukkyr", + "role": "HeadCoach", + "team_id": "lrn-zeu5-esport", + "profile_image_url": "/staff-photos/fabbd5eff1076f2b.webp" + }, + { + "id": "1c153ba3-1a67-4ecc-b568-6e9ddf1474e2", + "first_name": "Ronald Fernando Velez Patiño", + "nickname": "Retzu", + "role": "HeadCoach", + "team_id": "lrn-g3v-e-sports", + "profile_image_url": "/staff-photos/9aa46615bfa305a7.webp" + }, + { + "id": "23972adc-50e7-4875-964f-c7c456673afa", + "first_name": "Alejandro Herrera", + "nickname": "Cuadra", + "role": "Owner", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": null + }, + { + "id": "3e437684-6099-4021-93a7-3cf6c168d152", + "first_name": "Jeff Macolonie", + "nickname": "Rapid", + "role": "Owner", + "team_id": "lrn-fuego", + "profile_image_url": "/staff-photos/0bd39239aa3a1ddc.webp" + }, + { + "id": "40f19675-0600-4e1c-abfd-c73715157ed6", + "first_name": "Gerameel Avilez Hervella", + "nickname": "Tigrazo", + "role": "Owner", + "team_id": "lrn-icon-esports", + "profile_image_url": null + }, + { + "id": "4f0b44e0-e20d-497b-a7a4-fb496b18d41f", + "first_name": "Ariel Pintos", + "nickname": "Ari", + "role": "Analyst", + "team_id": "lrn-zeu5-esport", + "profile_image_url": null + }, + { + "id": "5d3b9bde-e285-41ff-bcde-9e83d3e57906", + "first_name": "Manuel Alejandro Cola Rodriguez", + "nickname": "Manuelcap", + "role": "Assistant", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": "/staff-photos/ade666beebf8e924.webp" + }, + { + "id": "6095fb07-4a2f-4856-85e5-f21a5ef93514", + "first_name": "David Claros", + "nickname": "Guayaba", + "role": "Owner", + "team_id": "lrn-g3v-e-sports", + "profile_image_url": null + }, + { + "id": "7e312400-7466-41c6-b120-138ee6de1bec", + "first_name": "José Piceno", + "nickname": "Liszt", + "role": "Owner", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": null + }, + { + "id": "7eead65a-0a78-483a-87db-7a1cb2b271f7", + "first_name": "Gerson Castaño", + "nickname": "Dye", + "role": "HeadCoach", + "team_id": "lrn-sdm-tigres", + "profile_image_url": "/staff-photos/4fb5afed619032a9.webp" + }, + { + "id": "87ca5878-71f8-48bc-ba70-97bd603e5ce5", + "first_name": "Jeremy Cuadras", + "nickname": "JCuadras", + "role": "Owner", + "team_id": "lrn-ncg-esports", + "profile_image_url": null + }, + { + "id": "94185bae-7ee7-4814-b20e-32198ed2a174", + "first_name": "Francisco Alejandro Fernández Cortés", + "nickname": "sSephix", + "role": "Assistant", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": "/staff-photos/e9c52858b6664370.webp" + }, + { + "id": "9946b790-9fec-46f3-99d7-114e3d93ceb7", + "first_name": "Rafael de Jesús", + "nickname": "Fallo", + "role": "HeadCoach", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": "/staff-photos/54d56763b9113f7f.webp" + }, + { + "id": "a864d10c-2847-4b78-aaaf-f9227732f885", + "first_name": "Marino Saúl Castro", + "nickname": "Jefe de jefes", + "role": "Owner", + "team_id": "lrn-sdm-tigres", + "profile_image_url": null + }, + { + "id": "b45d0a80-2d2b-46cb-99bb-7fde18d102de", + "first_name": "Esteban Zuleta", + "nickname": "Hadouken", + "role": "Owner", + "team_id": "lrn-zeu5-esport", + "profile_image_url": null + }, + { + "id": "b4690221-3e61-48e9-8f4a-e925408330d6", + "first_name": "Eduardo Bolaños", + "nickname": "Chronos", + "role": "Owner", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": null + }, + { + "id": "b8c30ef9-b33f-47d8-86fb-ae6b34f30216", + "first_name": "Iván Eliseo Maldonado Tanori", + "nickname": "Demy", + "role": "Assistant", + "team_id": "lrn-ncg-esports", + "profile_image_url": "/staff-photos/be29a22d8eaa2831.webp" + }, + { + "id": "c2e18236-11aa-4310-9ea0-4a2d2f346507", + "first_name": "Eduardo Gómez Vázquez", + "nickname": "Odraud", + "role": "HeadCoach", + "team_id": "lrn-ncg-esports", + "profile_image_url": null + }, + { + "id": "c8849ac1-85b5-4a97-b84d-64521bb4f5af", + "first_name": "Tobias Riscica", + "nickname": "Pointless", + "role": "Assistant", + "team_id": "lrn-fuego", + "profile_image_url": "/staff-photos/d8ffb06f478e697b.webp" + }, + { + "id": "cac0616f-72ef-45e9-8d1c-5063a044a94b", + "first_name": "Daniel Zambrano", + "nickname": "Blessing", + "role": "Owner", + "team_id": "lrn-polar-squad-esport", + "profile_image_url": null + }, + { + "id": "d3c6194f-57a0-437b-bf32-bb4823781f97", + "first_name": "Hector Alejandro Godínez Rovelo", + "nickname": "Tyr", + "role": "HeadCoach", + "team_id": "lrn-icon-esports", + "profile_image_url": "/staff-photos/05456537a89a28b9.webp" + }, + { + "id": "e36d60ff-e977-477c-9978-10345f9b002b", + "first_name": "Kevinn León", + "nickname": "LEON", + "role": "HeadCoach", + "team_id": "lrn-fuego", + "profile_image_url": "/staff-photos/54a0a800a9a575f0.webp" + }, + { + "id": "e9407bce-511a-44e5-8443-885af4e522e2", + "first_name": "Anthony Mota", + "nickname": "Razel", + "role": "HeadCoach", + "team_id": "lrn-lyon-academy", + "profile_image_url": null + }, + { + "id": "ef19851e-8553-47c4-b3de-f577f73ee4d4", + "first_name": "Sebastian Pardo Machuc", + "nickname": "Xenovia", + "role": "Owner", + "team_id": "lrn-g3v-e-sports", + "profile_image_url": "/staff-photos/e34fbdad0b0dfb78.webp" + }, + { + "id": "f09dbd77-6122-42dd-9072-24465c3c61fd", + "first_name": "Juan Camilo Franco", + "nickname": "Falconz", + "role": "Assistant", + "team_id": "lrn-zeu5-esport", + "profile_image_url": "/staff-photos/814318c861c0a4a4.webp" + } + ] +} \ No newline at end of file diff --git a/data/staffs/lrs_staffs.json b/data/staffs/lrs_staffs.json new file mode 100644 index 000000000..a38d08069 --- /dev/null +++ b/data/staffs/lrs_staffs.json @@ -0,0 +1,206 @@ +{ + "name": "LRS Staff", + "description": "LRS - 2026 Season", + "staff": [ + { + "id": "09e8ef91-1bca-4de1-a356-859c54766266", + "first_name": "Agustin Tomas Di Lalla", + "nickname": "Adniel", + "role": "HeadCoach", + "team_id": "lrs-malvinas-gaming", + "profile_image_url": "/staff-photos/82b5d159aabc524d.webp" + }, + { + "id": "0bb73aa3-ba01-4c94-8e99-447031891056", + "first_name": "Enzo Tomás Ferreira", + "nickname": "TomnaM", + "role": "HeadCoach", + "team_id": "lrs-9z-globant", + "profile_image_url": "/staff-photos/aedb87b3150e8807.webp" + }, + { + "id": "0db3f348-029b-4ecb-bb67-1fdd78405863", + "first_name": "Gonzalo Calvo", + "nickname": "Belladona", + "role": "HeadCoach", + "team_id": "lrs-seven-dark", + "profile_image_url": "/staff-photos/b39df865449b2496.webp" + }, + { + "id": "149eb8ec-7551-46f3-bba3-aceda666caf0", + "first_name": "David Ezequiel Molina", + "nickname": "Heartless", + "role": "Assistant", + "team_id": "lrs-golden-lions", + "profile_image_url": "/staff-photos/b9ce817842cedab0.webp" + }, + { + "id": "265113bb-dd1f-4712-aeff-7f0f6b1be871", + "first_name": "Joaquín Leighton", + "nickname": "Bazilha", + "role": "Owner", + "team_id": "lrs-seven-dark", + "profile_image_url": null + }, + { + "id": "2a9d586b-5167-4186-9f73-1d3f41adef3b", + "first_name": "Matías Nicolai Rammsy", + "nickname": "Aramir", + "role": "HeadCoach", + "team_id": "lrs-maze-gaming", + "profile_image_url": null + }, + { + "id": "348a148a-3238-4194-99f5-7d2a9c8e3af0", + "first_name": "Felipe Andrés Canto Polanco", + "nickname": "ReigN", + "role": "HeadCoach", + "team_id": "lrs-golden-lions", + "profile_image_url": "/staff-photos/c60181ca44639994.webp" + }, + { + "id": "34c83d39-5848-4c65-a74c-b22f5e8f0325", + "first_name": "Karly Jane", + "nickname": null, + "role": "Owner", + "team_id": "lrs-volticons", + "profile_image_url": null + }, + { + "id": "40e76053-f8eb-4c5f-819f-f49ec50ca7fd", + "first_name": "Gonzalo Sintas", + "nickname": "Gonzs", + "role": "Analyst", + "team_id": "lrs-volticons", + "profile_image_url": null + }, + { + "id": "45a3e824-9145-4656-8081-210afcc5fc12", + "first_name": "Ulises Xavier Casimiro Costantino", + "nickname": "Smythz", + "role": "HeadCoach", + "team_id": "lrs-the-new-kings", + "profile_image_url": null + }, + { + "id": "46b24e82-5647-4f10-8b72-3241d066d8f3", + "first_name": "Gabriel Mansilla Lucero", + "nickname": "Darumeitor", + "role": "Owner", + "team_id": "lrs-maze-gaming", + "profile_image_url": null + }, + { + "id": "4930590b-3280-4c5b-9829-e4b050f7b706", + "first_name": "Charly Gonzalez", + "nickname": "Charly14", + "role": "Owner", + "team_id": "lrs-malvinas-gaming", + "profile_image_url": null + }, + { + "id": "5864d3ce-ec95-4153-9fb0-7ffdff0ec375", + "first_name": "Matias Stagnitta", + "nickname": "Matapulgas", + "role": "Assistant", + "team_id": "lrs-seven-dark", + "profile_image_url": null + }, + { + "id": "68390cf9-ff84-4bd3-a064-1667085f6ae9", + "first_name": "Juan Ignazio Vaccaro", + "nickname": "Krim", + "role": "HeadCoach", + "team_id": "lrs-volticons", + "profile_image_url": "/staff-photos/01b17b358e562063.webp" + }, + { + "id": "6e8d04ae-8814-49b3-95c2-7d9162503a35", + "first_name": "Denisse San Martín Rebolledo", + "nickname": null, + "role": "Owner", + "team_id": "lrs-maze-gaming", + "profile_image_url": null + }, + { + "id": "7d9854a7-b42e-45f5-ae2a-5bffee967181", + "first_name": "Emanuel Pepe", + "nickname": "Piscis", + "role": "Analyst", + "team_id": "lrs-malvinas-gaming", + "profile_image_url": null + }, + { + "id": "9ecbf844-debb-4beb-b4aa-35db178c0c73", + "first_name": "Jose Manuel Mendoza Palomino", + "nickname": "Eskuiro", + "role": "HeadCoach", + "team_id": "lrs-tu-pap-esports", + "profile_image_url": "/staff-photos/4a3e2033eed438b8.webp" + }, + { + "id": "a1a2e64a-3066-4e7b-bbb8-b376b17272ca", + "first_name": "Miguel Ángel Salas López", + "nickname": "Adjudicator", + "role": "Assistant", + "team_id": "lrs-maze-gaming", + "profile_image_url": "/staff-photos/ab50f2f1be4b3810.webp" + }, + { + "id": "b351a570-aa4a-4d0f-9fc4-f6d42aaef16d", + "first_name": "Melisa Burgos", + "nickname": "Meli", + "role": "Assistant", + "team_id": "lrs-the-new-kings", + "profile_image_url": null + }, + { + "id": "b4e25fdc-5b3b-4bcd-b761-d63f6a475041", + "first_name": "Fernando Poblete Gómez", + "nickname": "Pájaro", + "role": "Owner", + "team_id": "lrs-maze-gaming", + "profile_image_url": null + }, + { + "id": "b85137da-028c-4c50-b63a-8f5fd5b9e8ec", + "first_name": "Mauro Villan", + "nickname": "Principe", + "role": "Assistant", + "team_id": "lrs-golden-lions", + "profile_image_url": null + }, + { + "id": "c27c1710-8541-4dc4-900b-1342c6755165", + "first_name": "Alan Polo", + "nickname": null, + "role": "Owner", + "team_id": "lrs-malvinas-gaming", + "profile_image_url": null + }, + { + "id": "f6eb6644-fe5c-406d-b5e3-a26abfacbd15", + "first_name": "Diego Arturo Pavez Valenzuela", + "nickname": "Glon", + "role": "HeadCoach", + "team_id": "lrs-maze-gaming", + "profile_image_url": "/staff-photos/cdfc260db768dce7.webp" + }, + { + "id": "f97db5a8-c5ea-4ca2-bc97-a6c3577fe008", + "first_name": "Manuel Ize", + "nickname": "Manuize", + "role": "Assistant", + "team_id": "lrs-the-new-kings", + "profile_image_url": "/staff-photos/cade0012fa2e5cda.webp" + }, + { + "id": "fc6722d2-9f42-4cab-a036-53af9a58b3d6", + "first_name": "Walter Ezequiel Pandiani", + "nickname": "Linoyasu", + "role": "Owner", + "team_id": "lrs-volticons", + "profile_image_url": null + } + ] +} \ No newline at end of file diff --git a/data/staffs/prm-l_staffs.json b/data/staffs/prm-l_staffs.json new file mode 100644 index 000000000..ce7ccb11f --- /dev/null +++ b/data/staffs/prm-l_staffs.json @@ -0,0 +1,35 @@ +{ + "name": "PRM-L Staff", + "description": "PRM-L - 2026 Season", + "staff": [ + { + "id": "staff-31c9b028", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-1cba5c67", + "last_name": "Tuijn", + "attributes": { + "coaching": 80, + "physiotherapy": 72, + "judging_ability": 73, + "judging_potential": 79 + }, + "first_name": "Floris Tuijn", + "nationality": "Netherlands", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/18569204.webp", + "nickname": "Vamir" + }, + { + "id": "b71fe637-d5c1-4a49-a1e0-9c5de98f9b9c", + "first_name": "Gil Lieveld", + "nickname": "Baelakor", + "role": "Owner", + "team_id": "team-1cba5c67", + "profile_image_url": "/staff-photos/39638f217fe26a89.jpg" + } + ] +} \ No newline at end of file diff --git a/data/staffs/prm_staffs.json b/data/staffs/prm_staffs.json new file mode 100644 index 000000000..ac5879f52 --- /dev/null +++ b/data/staffs/prm_staffs.json @@ -0,0 +1,328 @@ +{ + "name": "PRM Staff", + "description": "PRM - 2026 Season", + "staff": [ + { + "id": "02fc19da-b35a-4481-b19e-ff5c2dfeecde", + "first_name": "Darius Zähringer", + "nickname": "Darius", + "role": "Owner", + "team_id": "team-1347e217", + "profile_image_url": "/staff-photos/f44bddb5e6b458b6.png" + }, + { + "id": "staff-33ae6d93", + "role": "Owner", + "wage": 30000, + "team_id": "team-069c707b", + "last_name": "Klepper", + "attributes": { + "coaching": 58, + "physiotherapy": 59, + "judging_ability": 60, + "judging_potential": 56 + }, + "first_name": "Michel Klepper", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/13e3b049.webp", + "nickname": "Michel" + }, + { + "id": "13109eb1-f567-4010-9ed5-557e47036a47", + "first_name": "Lukáš Novota", + "nickname": "Lukish", + "role": "HeadCoach", + "team_id": "team-1347e217", + "profile_image_url": "/staff-photos/e67a0ad76b52f7dc.webp" + }, + { + "id": "staff-bf93d651", + "role": "Owner", + "wage": 30000, + "team_id": "team-e48c23c9", + "last_name": "Mallant", + "attributes": { + "coaching": 84, + "physiotherapy": 79, + "judging_ability": 72, + "judging_potential": 82 + }, + "first_name": "Fabian Mallant", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/3fd7a196.webp", + "nickname": "Sheepy" + }, + { + "id": "staff-e89fb737", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-bec332f5", + "last_name": "Kippe", + "attributes": { + "coaching": 68, + "physiotherapy": 62, + "judging_ability": 62, + "judging_potential": 71 + }, + "first_name": "Titus Kippe", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/60d86f8fe8f8f57f.webp", + "nickname": "x4NTY" + }, + { + "id": "6d748d30-3092-485e-9678-0b917a9dd23a", + "first_name": "Sean Persson", + "nickname": "Aqsept", + "role": "Assistant", + "team_id": "team-1347e217", + "profile_image_url": "/staff-photos/1145f2cf1203fc59.webp" + }, + { + "id": "staff-d496546f", + "role": "Assistant", + "wage": 30000, + "team_id": "team-5dc37618", + "last_name": "Christoffersen", + "attributes": { + "coaching": 68, + "physiotherapy": 58, + "judging_ability": 66, + "judging_potential": 63 + }, + "first_name": "Jacob Bror Christoffersen", + "nationality": "Denmark", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/0813128debbe6e96.webp", + "nickname": "Hildebrandt" + }, + { + "id": "staff-e5c9096d", + "role": "Analyst", + "wage": 30000, + "team_id": "team-0be37b7e", + "last_name": "Holt", + "attributes": { + "coaching": 70, + "physiotherapy": 59, + "judging_ability": 71, + "judging_potential": 73 + }, + "first_name": "Dan Holt", + "nationality": "United Kingdom", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/4637a9d3.webp", + "nickname": "Dan Holt" + }, + { + "id": "staff-58394b20", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-a72b6e41", + "last_name": "Schadrin", + "attributes": { + "coaching": 75, + "physiotherapy": 75, + "judging_ability": 78, + "judging_potential": 76 + }, + "first_name": "Lothar Schadrin", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/05ed3c6f.webp", + "nickname": "Lothi" + }, + { + "id": "staff-18c7bc26", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-5dc37618", + "last_name": "Schmit", + "attributes": { + "coaching": 74, + "physiotherapy": 63, + "judging_ability": 68, + "judging_potential": 69 + }, + "first_name": "Gregory Schmit", + "nationality": "Luxembourg", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/fbf625d71338d1d8.webp", + "nickname": null + }, + { + "id": "staff-e26f4ecc", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-0be37b7e", + "last_name": "Salomon", + "attributes": { + "coaching": 78, + "physiotherapy": 78, + "judging_ability": 73, + "judging_potential": 79 + }, + "first_name": "Finn-Lukas Salomon", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/537c069f.webp", + "nickname": "Don Arts" + }, + { + "id": "b12ce1a9-79cb-4ec3-b9ba-1f0401a5df89", + "first_name": "Maximilian Knabe", + "nickname": "HandOfBlood", + "role": "Owner", + "team_id": "team-bec332f5", + "profile_image_url": "/staff-photos/cbc973ac60125616.webp" + }, + { + "id": "b39238f3-5699-4b9e-89bc-b480ffff8ad5", + "first_name": "Laurentiu-Dodel Zidaru ", + "nickname": "CPM", + "role": "Owner", + "team_id": "team-f3b86137", + "profile_image_url": "/staff-photos/9a0e4f36dd847768.webp" + }, + { + "id": "c2adbe1b-87eb-4ee4-bb73-e3113e304ff9", + "first_name": "Daniel Finkler", + "nickname": "Daniel Finkler", + "role": "Owner", + "team_id": "team-0be37b7e", + "profile_image_url": "/staff-photos/fae0f5e5a1df8880.jpg" + }, + { + "id": "staff-205900fa", + "role": "Assistant", + "wage": 30000, + "team_id": "team-069c707b", + "last_name": "Varoß", + "attributes": { + "coaching": 66, + "physiotherapy": 57, + "judging_ability": 56, + "judging_potential": 58 + }, + "first_name": "Nick Varoß", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/5b1913eb.webp", + "nickname": "BliZarD" + }, + { + "id": "staff-46c85caa", + "role": "HeadCoach", + "wage": 30000, + "team_id": "team-f3b86137", + "last_name": "Salah", + "attributes": { + "coaching": 67, + "physiotherapy": 65, + "judging_ability": 60, + "judging_potential": 65 + }, + "first_name": "Haidar Salah", + "nationality": "Germany", + "contract_end": "2026-12-20", + "birth_country": null, + "date_of_birth": "1990-01-01", + "specialization": null, + "profile_image_url": "/staff-photos/375592d3.webp", + "nickname": "Joyous" + }, + { + "id": "d7626825-45de-46d4-bda0-cd4aaa9918d5", + "first_name": "Chris", + "nickname": "FntasyStar", + "role": "Assistant", + "team_id": "team-e48c23c9", + "profile_image_url": null + }, + { + "id": "dbcc4024-d487-4320-b4fb-2010e72260d6", + "first_name": "Heorhii Vechkanov", + "nickname": "heovech", + "role": "Analyst", + "team_id": "team-e48c23c9", + "profile_image_url": null + }, + { + "id": "dc3e6b30-deac-441f-a2f3-22011517b535", + "first_name": "Mathias Beck", + "nickname": "Mathias Beck", + "role": "Owner", + "team_id": "team-5dc37618", + "profile_image_url": "/staff-photos/9aa1f8f7252e785c.jpg" + }, + { + "id": "dcf47bd7-a9b7-4cc4-bd24-7521a1c22ce6", + "first_name": "The Baam company", + "nickname": "Baam", + "role": "Owner", + "team_id": "team-3cef0cfa", + "profile_image_url": "/staff-photos/a2e24a2b60c5a667.jpg" + }, + { + "id": "e0c9d2fc-2459-4203-b315-d2106825ad53", + "first_name": "E WIE EINFACH GmbH", + "nickname": "E.ON.", + "role": "Owner", + "team_id": "team-a72b6e41", + "profile_image_url": "/staff-photos/fe5603aab59eb421.jpg" + }, + { + "id": "eacda0ea-5116-4592-bd05-52ae7da21e9d", + "first_name": "Samuel Messerer", + "nickname": "Sam", + "role": "HeadCoach", + "team_id": "team-e48c23c9", + "profile_image_url": null + }, + { + "id": "eb259383-3c16-4822-bd37-757fd4b57543", + "first_name": "Dino Tot", + "nickname": "LIMIT", + "role": "HeadCoach", + "team_id": "team-3cef0cfa", + "profile_image_url": "/staff-photos/69c632e734e6e3c0.webp" + }, + { + "id": "ee73681a-ddc3-4554-8f09-1afa1e5d00c3", + "first_name": "Nikolay Akatoz", + "nickname": "Zanzarah", + "role": "Assistant", + "team_id": "team-bec332f5", + "profile_image_url": "/staff-photos/b9c9d265ff3ff83d.webp" + } + ] +} \ No newline at end of file diff --git a/data/teams/al-l_teams.json b/data/teams/al-l_teams.json new file mode 100644 index 000000000..6a3d6511c --- /dev/null +++ b/data/teams/al-l_teams.json @@ -0,0 +1,38 @@ +{ + "name": "AL-L Teams", + "description": "AL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "team-4b8187c4", + "name": "Super Stars", + "short_name": "SS", + "country": "", + "logo_url": "/teams-icons/a026f256438378b6.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "EG", + "id": "team-6019b0e7", + "name": "NextGeneration Esports", + "short_name": "NGE", + "logo_url": "/teams-icons/98ea1bd9d428ee24.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/al_teams.json b/data/teams/al_teams.json index d1992f293..eb34e8d57 100644 --- a/data/teams/al_teams.json +++ b/data/teams/al_teams.json @@ -3,164 +3,132 @@ "description": "AL - 2026 Season", "teams": [ { - "id": "team-1f166743", - "name": "GnG Amazigh", - "short_name": "GGA", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-e175ded9", - "name": "3BL Esports", - "short_name": "3BL", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-c648abc2", - "name": "BAAM Esports", - "short_name": "BAM", - "country": "", + "history": [], + "country": "TN", + "id": "team-0f68e76a", + "name": "JSK Esports", + "short_name": "JSK", + "logo_url": "/teams-icons/03a534e5b0a1a8a5.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-12ea162a", "name": "One More Esports", "short_name": "OME", "country": "", + "logo_url": "/teams-icons/c5196c45a96dc7f9.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-90b5943e", - "name": "Anubis Gaming", - "short_name": "AG", - "country": "", + "history": [], + "country": "TN", + "id": "team-1f166743", + "name": "GnG Amazigh", + "short_name": "GGA", + "logo_url": "/teams-icons/f18c7604f3ed4871.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-8829d0c3", - "name": "Dragons Esports", - "short_name": "DRA", - "country": "", + "history": [], + "country": "KR", + "id": "team-47ce6033", + "name": "FN Esports", + "short_name": "FNE", + "logo_url": "/teams-icons/3a563c0371e43398.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-47ce6033", - "name": "FN Esports", - "short_name": "FNE", - "country": "", + "history": [], + "country": "SA", + "id": "team-8829d0c3", + "name": "Dragons Esports", + "short_name": "DRA", + "logo_url": "/teams-icons/a9371a23f003bd13.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-4b8187c4", - "name": "Super Stars", - "short_name": "SS", - "country": "", + "history": [], + "country": "EG", + "id": "team-90b5943e", + "name": "Anubis Gaming", + "short_name": "AG", + "logo_url": "/teams-icons/4fa6749719924d29.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-0f68e76a", - "name": "JSK Esports", - "short_name": "JSK", - "country": "", + "history": [], + "country": "SA", + "id": "team-c648abc2", + "name": "BAAM Esports", + "short_name": "BAM", + "logo_url": "/teams-icons/24e1e6d10f094b3b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-6019b0e7", - "name": "NextGeneration Esports", - "short_name": "NGE", - "country": "", + "history": [], + "country": "EG", + "id": "team-e175ded9", + "name": "3BL Esports", + "short_name": "3BL", + "logo_url": "/teams-icons/03bb13eb2b7e6bba.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/cblol-l_teams.json b/data/teams/cblol-l_teams.json new file mode 100644 index 000000000..c7e8e3ad7 --- /dev/null +++ b/data/teams/cblol-l_teams.json @@ -0,0 +1,23 @@ +{ + "name": "CBLOL-L Teams", + "description": "CBLOL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "cblol-l-rensga-esports", + "country": "BR", + "logo_url": "/teams-icons/rensga-esports.webp", + "data.country": "BR", + "name": "Rensga eSports", + "short_name": "RNS", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/cblol_teams.json b/data/teams/cblol_teams.json index 43b02980c..0b70c741a 100644 --- a/data/teams/cblol_teams.json +++ b/data/teams/cblol_teams.json @@ -3,6 +3,7 @@ "description": "CBLOL - 2026 Season", "teams": [ { + "history": [], "id": "team-0e114265", "city": "São Paulo", "form": [], @@ -14,7 +15,6 @@ "academy": null, "country": "BR", "finance": 5400000, - "history": [], "logo_url": "/teams-icons/vivo-keyd-stars.webp", "team_kind": "Main", "facilities": { @@ -59,6 +59,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-76137e73", "city": "São Paulo", "form": [], @@ -70,7 +71,6 @@ "academy": null, "country": "BR", "finance": 7000000, - "history": [], "logo_url": "/teams-icons/red-canids.webp", "team_kind": "Main", "facilities": { @@ -115,6 +115,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-b3da089b", "city": "São Paulo", "form": [], @@ -126,7 +127,6 @@ "academy": null, "country": "BR", "finance": 3800000, - "history": [], "logo_url": "/teams-icons/los.webp", "team_kind": "Main", "facilities": { @@ -171,6 +171,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-0c8be917", "city": "Buenos Aires", "form": [], @@ -182,7 +183,6 @@ "academy": null, "country": "AR", "finance": 5150000, - "history": [], "logo_url": "/teams-icons/leviat-n.webp", "team_kind": "Main", "facilities": { @@ -227,6 +227,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-a72bf9ea", "city": "São Paulo", "form": [], @@ -238,7 +239,6 @@ "academy": null, "country": "BR", "finance": 9000000, - "history": [], "logo_url": "/teams-icons/pain-gaming.webp", "team_kind": "Main", "facilities": { @@ -283,6 +283,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-loud2025", "city": "São Paulo", "form": [], @@ -294,7 +295,6 @@ "academy": null, "country": "BR", "finance": 5800000, - "history": [], "logo_url": "/teams-icons/loud.webp", "team_kind": "Main", "facilities": { @@ -339,6 +339,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-fur2025", "city": "Rio de Janeiro", "form": [], @@ -350,7 +351,6 @@ "academy": null, "country": "BR", "finance": 5200000, - "history": [], "logo_url": "/teams-icons/furia.webp", "team_kind": "Main", "facilities": { @@ -395,6 +395,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-20461098", "city": "Rio de Janeiro", "form": [], @@ -406,7 +407,6 @@ "academy": null, "country": "BR", "finance": 4200000, - "history": [], "logo_url": "/teams-icons/fluxo.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/cd_teams.json b/data/teams/cd_teams.json index d570a6adb..85eaac491 100644 --- a/data/teams/cd_teams.json +++ b/data/teams/cd_teams.json @@ -3,164 +3,163 @@ "description": "CD - 2026 Season", "teams": [ { - "id": "team-603562ef", - "name": "7REX", - "short_name": "REX", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-408c21b2", - "name": "paiN Gaming Academy", - "short_name": "PAINA", - "country": "", + "history": [], + "country": "BR", + "id": "team-0dcb5849", + "name": "RMD Gaming", + "short_name": "RMD", + "logo_url": "/teams-icons/f264b04cd8181589.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-4fec330a", - "name": "Ei Nerd Esports", - "short_name": "ENE", - "country": "", + "history": [], + "country": "MX", + "id": "team-2ec1b6c9", + "name": "Estral Esports", + "short_name": "EST", + "logo_url": "/teams-icons/870ad8f32219916d.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "BR", "id": "team-31ca2c75", "name": "INTZ", "short_name": "IZ", - "country": "", + "logo_url": "/teams-icons/c30df901d9d608e9.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-2ec1b6c9", - "name": "Estral Esports", - "short_name": "EST", + "history": [], + "id": "team-369e4620", + "name": "Vivo Keyd Stars Academy", + "short_name": "VKSA", "country": "", + "logo_url": "/teams-icons/abdf64a517fcbe0e.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-53c6789c", - "name": "KaBuM! Ilha das Lendas", - "short_name": "KIDL", + "history": [], + "id": "team-408c21b2", + "name": "paiN Gaming Academy", + "short_name": "PAINA", "country": "", + "logo_url": "/teams-icons/5daf07d13de882f9.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "BR", "id": "team-467d253d", "name": "RED Academy", "short_name": "REDA", - "country": "", + "logo_url": "/teams-icons/569c06ef0d3c24fe.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-0dcb5849", - "name": "RMD Gaming", - "short_name": "RMD", + "history": [], + "id": "team-4fec330a", + "name": "Ei Nerd Esports", + "short_name": "ENE", "country": "", + "logo_url": "/teams-icons/ffd77d3853ba4557.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-a49fd9c6", - "name": "Team Solid", - "short_name": "TS", + "history": [], + "id": "team-53c6789c", + "name": "KaBuM! Ilha das Lendas", + "short_name": "KIDL", "country": "", + "logo_url": "/teams-icons/cd74198969eab299.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-369e4620", - "name": "Vivo Keyd Stars Academy", - "short_name": "VKSA", + "history": [], + "colors": { + "primary": "#f5c211" + }, + "country": "BR", + "id": "team-603562ef", + "name": "7REX", + "short_name": "REX", + "logo_url": "/teams-icons/ce65ab85321eed71.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "team-a49fd9c6", + "name": "Team Solid", + "short_name": "TS", "country": "", + "logo_url": "/teams-icons/8b3c9ef6d8e0584e.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/ebl_teams.json b/data/teams/ebl_teams.json index ace4b8340..187147b35 100644 --- a/data/teams/ebl_teams.json +++ b/data/teams/ebl_teams.json @@ -3,164 +3,164 @@ "description": "EBL - 2026 Season", "teams": [ { - "id": "team-de9656fe", - "name": "Croatian Flair", - "short_name": "CRO", - "country": "", + "history": [], + "country": "HU", + "id": "team-1103bd5e", + "name": "Lenovo Legion Honvéd", + "short_name": "LLH", + "logo_url": "/teams-icons/26dfffc5a5b75537.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-db2b783a", - "name": "Lupus Esports", - "short_name": "LUP", - "country": "", + "history": [], + "country": "BG", + "id": "team-3359999b", + "name": "TQ DURPA KASHLQ", + "short_name": "TQDK", + "logo_url": "/teams-icons/89eba3c0585e5776.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-aa50d684", - "name": "Magaza Esports", - "short_name": "MAG", - "country": "", + "history": [], + "country": "RS", + "id": "team-500fa635", + "name": "Washed Gaming", + "short_name": "WSH", + "logo_url": "/teams-icons/abcf3c87149dd98c.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-dc2f50f2", - "name": "Partizan Sangal", - "short_name": "PAR", - "country": "", + "history": [], + "country": "DE", + "id": "team-8b9502f1", + "name": "Team Spawn Peek", + "short_name": "TSP", + "logo_url": "/teams-icons/57ea4f40fbbd1fe7.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-cd386f74", - "name": "SPIKE Syndicate", - "short_name": "SPK", - "country": "", + "history": [], + "country": "BG", + "id": "team-aa50d684", + "name": "Magaza Esports", + "short_name": "MAG", + "logo_url": "/teams-icons/42fd65774ea5b2bf.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "HR", "id": "team-b09886df", "name": "The Secret Club", "short_name": "TSC", - "country": "", + "logo_url": "/teams-icons/d64df7dc7da928ce.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-1103bd5e", - "name": "Lenovo Legion Honvéd", - "short_name": "LLH", - "country": "", + "history": [], + "country": "SI", + "id": "team-cd386f74", + "name": "SPIKE Syndicate", + "short_name": "SPK", + "logo_url": "/teams-icons/a80e361bcb31203b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-3359999b", - "name": "TQ DURPA KASHLQ", - "short_name": "TQDK", - "country": "", + "history": [], + "country": "RS", + "id": "team-db2b783a", + "name": "Lupus Esports", + "short_name": "LUP", + "logo_url": "/teams-icons/09304c08ee7e501b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-8b9502f1", - "name": "Team Spawn Peek", - "short_name": "TSP", - "country": "", + "history": [], + "country": "RS", + "id": "team-dc2f50f2", + "name": "Partizan Sangal", + "short_name": "PAR", + "logo_url": "/teams-icons/444862179c3bb83a.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-500fa635", - "name": "Washed Gaming", - "short_name": "WSH", - "country": "", + "history": [], + "country": "HR", + "id": "team-de9656fe", + "name": "Croatian Flair", + "short_name": "CRO", + "logo_url": "/teams-icons/2779bc1bf39e53b1.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/eu-lcs-l_teams.json b/data/teams/eu-lcs-l_teams.json new file mode 100644 index 000000000..b0139facd --- /dev/null +++ b/data/teams/eu-lcs-l_teams.json @@ -0,0 +1,163 @@ +{ + "name": "EU-LCS-L Teams", + "description": "EU-LCS-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "eu-lcs-l-astralis", + "logo_url": "/teams-icons/astralis.webp", + "data.city": "Copenhague", + "data.country": "DK", + "name": "Astralis", + "short_name": "AST", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-misfits", + "colors": { + "primary": "#ffffff" + }, + "logo_url": "/teams-icons/misfits.webp", + "data.city": "Boca Raton", + "data.country": "US", + "name": "Misfits", + "short_name": "MFS", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-fc-schalke-04", + "logo_url": "/teams-icons/fc-schalke-04.webp", + "data.city": "Schalke", + "data.country": "DE", + "name": "FC Schalke 04 ", + "short_name": "S04", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-rogue", + "colors": { + "secondary": "#5f91d3" + }, + "logo_url": "/teams-icons/rogue.webp", + "data.city": "Las Vegas", + "data.country": "US", + "name": "Rogue", + "short_name": "RGE", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-splyce", + "colors": { + "primary": "#c7b600" + }, + "logo_url": "/teams-icons/splyce.webp", + "data.city": "Rochester", + "data.country": "US", + "name": "Splyce", + "short_name": "SLY", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-mad-lions", + "colors": { + "primary": "#c3a128" + }, + "data.city": "Madrid", + "data.country": "ES", + "name": "MAD Lions", + "short_name": "MAD", + "country": "", + "logo_url": "/teams-icons/4fa962423b23841b.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-h2k-gaming", + "country": "GB", + "logo_url": "/teams-icons/h2k-gaming.webp", + "data.country": "GB", + "name": "H2K Gaming", + "short_name": "H2K", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-origen", + "logo_url": "/teams-icons/origen.webp", + "data.city": "Madrid", + "data.country": "ES", + "name": "Origen", + "short_name": "ORI", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "eu-lcs-l-excel-espots", + "data.city": "London", + "data.country": "GB", + "name": "Excel Espots", + "short_name": "EXC", + "country": "", + "logo_url": null, + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/hll_teams.json b/data/teams/hll_teams.json index e7acf77a5..8b8ac9209 100644 --- a/data/teams/hll_teams.json +++ b/data/teams/hll_teams.json @@ -3,132 +3,132 @@ "description": "HLL - 2026 Season", "teams": [ { - "id": "team-b2dec67c", - "name": "ALMO Players", - "short_name": "ALMO", - "country": "", + "history": [], + "country": "Greece", + "id": "team-2e0c08a9", + "name": "WLGaming Esports", + "short_name": "WLG", + "logo_url": "/teams-icons/e70bb7aaf8ae9385.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-ca24ae43", - "name": "Gamespace MCE", - "short_name": "GAME", - "country": "", + "history": [], + "country": "Greece", + "id": "team-34f5f8b3", + "name": "Team Insidious", + "short_name": "INS", + "logo_url": "/teams-icons/b50e625743b622b5.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-92da5b60", - "name": "GOAL", - "short_name": "GOAL", - "country": "", + "history": [], + "country": "Greece", + "id": "team-608ecbe2", + "name": "Team Phantasma", + "short_name": "PHA", + "logo_url": "/teams-icons/0e4784dab02a7b30.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-8aeeec01", - "name": "Spartans EU", - "short_name": "SEU", - "country": "", + "history": [], + "country": "Greece", + "id": "team-86bb25d6", + "name": "The ParadOx", + "short_name": "PAR", + "logo_url": "/teams-icons/8f9a6b4ed9ec1d2d.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-34f5f8b3", - "name": "Team Insidious", - "short_name": "INS", + "history": [], + "id": "team-8aeeec01", + "name": "Spartans EU", + "short_name": "SEU", "country": "", + "logo_url": "/teams-icons/6274035b3c15b5a2.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-608ecbe2", - "name": "Team Phantasma", - "short_name": "PHA", - "country": "", + "history": [], + "country": "Greece", + "id": "team-92da5b60", + "name": "GOAL", + "short_name": "GOAL", + "logo_url": "/teams-icons/0b637746b675c6e5.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-2e0c08a9", - "name": "WLGaming Esports", - "short_name": "WLG", - "country": "", + "history": [], + "country": "Greece", + "id": "team-b2dec67c", + "name": "ALMO Players", + "short_name": "ALMO", + "logo_url": "/teams-icons/85af0cf2e036ee8b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-86bb25d6", - "name": "The Parad0x", - "short_name": "PAR", - "country": "", + "history": [], + "country": "Greece", + "id": "team-ca24ae43", + "name": "Gamespace Mediterranean College Esports", + "short_name": "GAME", + "logo_url": "/teams-icons/98d08bd708387000.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/hm_teams.json b/data/teams/hm_teams.json index 691412699..501deb4b2 100644 --- a/data/teams/hm_teams.json +++ b/data/teams/hm_teams.json @@ -3,148 +3,132 @@ "description": "HM - 2026 Season", "teams": [ { - "id": "team-8c07ed47", - "name": "NRG", - "short_name": "NRG", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-da129d80", - "name": "BRUTE", - "short_name": "BRT", - "country": "", + "history": [], + "country": "Slovakia", + "id": "team-193151e6", + "name": "Nightbirds", + "short_name": "NBI", + "logo_url": "/teams-icons/2cd5d6b3275f34a3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-c01f7ad8", - "name": "Meavedron", - "short_name": "MEV", - "country": "", + "history": [], + "country": "Czech Republic", + "id": "team-19466153", + "name": "CITA Kaizen", + "short_name": "CTK", + "logo_url": "/teams-icons/43a40b33a899ec3f.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-df25d69f", - "name": "Bohemian Guardians", - "short_name": "BHG", - "country": "", + "history": [], + "country": "Czech Republic", + "id": "team-2bda20fb", + "name": "EXILE esports", + "short_name": "EXL", + "logo_url": "/teams-icons/db0c267c0bda3192.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-193151e6", - "name": "Nightbirds", - "short_name": "NBI", - "country": "", + "history": [], + "country": "Czech Republic", + "id": "team-5a2933ca", + "name": "eSuba", + "short_name": "ESU", + "logo_url": "/teams-icons/8f5fa27c56183bec.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-19466153", - "name": "CITA Kaizen", - "short_name": "CTK", - "country": "", + "history": [], + "country": "Poland", + "id": "team-5bf73fd8", + "name": "Onion Team", + "short_name": "ONT", + "logo_url": "/teams-icons/8bb889d93fb7e5d1.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-5bf73fd8", - "name": "Onion Team", - "short_name": "ONT", - "country": "", + "history": [], + "country": "Poland", + "id": "team-c01f7ad8", + "name": "Meavedron", + "short_name": "MEV", + "logo_url": "/teams-icons/2ab0e91f6cb38e99.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-2bda20fb", - "name": "EXILE esports", - "short_name": "EXL", - "country": "", + "history": [], + "country": "Czech Republic", + "id": "team-da129d80", + "name": "BRUTE", + "short_name": "BRT", + "logo_url": "/teams-icons/bde1dda56f53d256.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-5a2933ca", - "name": "eSuba", - "short_name": "ESU", - "country": "", + "history": [], + "country": "Czech Republic", + "id": "team-df25d69f", + "name": "Bohemian Guardians", + "short_name": "BHG", + "logo_url": "/teams-icons/c439294173603dd4.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lck-l_teams.json b/data/teams/lck-l_teams.json index 0d154e863..4c2ffc392 100644 --- a/data/teams/lck-l_teams.json +++ b/data/teams/lck-l_teams.json @@ -3,6 +3,7 @@ "description": "LCK-L - 2026 Season", "teams": [ { + "history": [], "id": "lck-l-longzhu-gaming", "logo_url": "/teams-icons/longzhu-gaming.webp", "data.country": "KR", @@ -16,31 +17,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-griffin", "country": "Korea", "logo_url": "/teams-icons/griffin.webp", @@ -54,31 +34,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-rox-tigers", "logo_url": "/teams-icons/rox-tigers.webp", "data.country": "South Korea", @@ -92,31 +51,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-samsung-white", "logo_url": "/teams-icons/samsung-white.webp", "name": "Samsung White", @@ -129,31 +67,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-liiv-sandbox", "country": "South Korea", "logo_url": "/teams-icons/liiv-sandbox.webp", @@ -166,36 +83,15 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-sk-telecom-t1", "country": "KR", "name": "SK Telecom T1", "short_name": "SKT", - "logo_url": null, + "logo_url": "/teams-icons/bd8dfd8c99ab2075.png", "city": "", "stadium_name": "", "stadium_capacity": 0, @@ -203,31 +99,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-team-dynamics", "country": "KR", "logo_url": "/teams-icons/team-dynamics.webp", @@ -241,31 +116,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-samsung-galaxy", "country": "KR", "logo_url": "/teams-icons/samsung-galaxy.webp", @@ -279,31 +133,10 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-damwon-gaming", "data.country": "KR", "name": "DAMWON GAMING", @@ -317,37 +150,16 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} }, { + "history": [], "id": "lck-l-afreeca-freecs", "data.country": "South Korea", "name": "Afreeca Freecs", "short_name": "AF", "country": "", - "logo_url": null, + "logo_url": "/teams-icons/3a7f80fc3c7dc1e1.png", "city": "", "stadium_name": "", "stadium_capacity": 0, @@ -355,29 +167,7 @@ "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0, - "form": [], - "history": [], - "scrim_results": [], - "training_groups": [], - "financial_ledger": [], - "sponsorship": null, - "training_focus": "Scrims", - "training_schedule": "Balanced", - "training_intensity": "Medium", - "scrim_weekly_slots": 0, - "scrim_reputation": 0, - "manager_id": null, - "academy": null, - "academy_team_id": null, - "parent_team_id": null, - "academy_lifecycle": null + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lck_cl_teams.json b/data/teams/lck_cl_teams.json new file mode 100644 index 000000000..f24aee8e9 --- /dev/null +++ b/data/teams/lck_cl_teams.json @@ -0,0 +1,185 @@ +{ + "name": "LCK CL Teams", + "description": "LCK CL - 2026 Season", + "teams": [ + { + "logo_url": "/teams-icons/bnk-fearx-youth.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "11ac4403-1420-41c3-819b-d69ad01bb645", + "name": "BNK FEARX Youth", + "short_name": "BNK.Y" + }, + { + "logo_url": "/teams-icons/gen-g-global-academy.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "cc953561-8b00-44eb-a348-69dd8b3a9592", + "name": "Gen.G Global Academy", + "short_name": "GEN.GA" + }, + { + "logo_url": "/teams-icons/kt-rolster-challengers.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "527dd9b3-d02e-4359-b8cd-587b52d784a4", + "name": "KT Rolster Challengers", + "short_name": "KT.C" + }, + { + "country": "KR", + "logo_url": "/teams-icons/hanjin-brion-challengers.webp", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "arena_name": "", + "id": "1278127d-9c1a-4812-b2b3-553e81e47d39", + "name": "HANJIN BRION CHALLENGERS", + "short_name": "BRO.C" + }, + { + "logo_url": "/teams-icons/dn-soopers-challengers.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "f5a6c896-4396-43d1-b48f-132c73fc827c", + "name": "DN SOOpers Challengers", + "short_name": "DNS.C" + }, + { + "logo_url": "/teams-icons/dplus-kia-challengers.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "68c7e2c9-7653-4dbe-93a6-a007be73b273", + "name": "Dplus KIA Challengers", + "short_name": "DK.C" + }, + { + "logo_url": "/teams-icons/ns-esports-academy.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "26e2fc35-06ee-44ca-908b-f67d2dc143c6", + "name": "NS Esports Academy", + "short_name": "NS.EA" + }, + { + "logo_url": "/teams-icons/hle-challengers.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "5cf6ca2f-1905-450a-bdb7-d3ce355483ad", + "name": "HLE Challengers", + "short_name": "HLE.C" + }, + { + "logo_url": "/teams-icons/kiwoon-drx-challengers.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "cf77a854-6da2-497d-840a-da8751b8c293", + "name": "Kiwoon DRX Challengers", + "short_name": "KRX.C" + }, + { + "logo_url": "/teams-icons/t1-esports-academy.webp", + "data.country": "KR", + "form": [], + "history": [], + "scrim_results": [], + "training_groups": [], + "financial_ledger": [], + "season_income": 0, + "season_expenses": 0, + "arena_capacity": 0, + "city": "", + "country": "", + "arena_name": "", + "id": "ac8e7fc5-a2c4-4013-8c52-8ab35cb9870b", + "name": "T1 Esports Academy", + "short_name": "T1.EA" + } + ] +} \ No newline at end of file diff --git a/data/teams/lck_teams.json b/data/teams/lck_teams.json index d1ba8c7d7..a6d7114c3 100644 --- a/data/teams/lck_teams.json +++ b/data/teams/lck_teams.json @@ -3,6 +3,7 @@ "description": "LCK - 2026 Season", "teams": [ { + "history": [], "id": "team-bc4c40ec", "city": "Seoul", "form": [], @@ -14,8 +15,7 @@ "academy": null, "country": "South Korea", "finance": 4350000, - "history": [], - "logo_url": "/teams-icons/1779606007533_uo34sqbxhf.webp", + "logo_url": "/teams-icons/drx.webp", "team_kind": "Main", "facilities": { "medical": 1, @@ -59,6 +59,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-932ee946", "city": "Seoul", "form": [], @@ -70,7 +71,6 @@ "academy": null, "country": "KR", "finance": 6500000, - "history": [], "logo_url": "/teams-icons/kt-rolster.webp", "team_kind": "Main", "facilities": { @@ -115,6 +115,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-dae32fa2", "city": "Seoul", "form": [], @@ -126,7 +127,6 @@ "academy": null, "country": "KR", "finance": 6150000, - "history": [], "logo_url": "/teams-icons/geng.webp", "team_kind": "Main", "facilities": { @@ -171,6 +171,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-2166882d", "city": "Seoul", "form": [], @@ -182,7 +183,6 @@ "academy": null, "country": "KR", "finance": 4800000, - "history": [], "logo_url": "/teams-icons/dn-soopers.webp", "team_kind": "Main", "facilities": { @@ -227,6 +227,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-2c4f82f9", "city": "Seoul", "form": [], @@ -238,7 +239,6 @@ "academy": null, "country": "KR", "finance": 6000000, - "history": [], "logo_url": "/teams-icons/t1.webp", "team_kind": "Main", "facilities": { @@ -283,6 +283,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-3f714e0d", "city": "Seoul", "form": [], @@ -294,7 +295,6 @@ "academy": null, "country": "KR", "finance": 4900000, - "history": [], "logo_url": "/teams-icons/bnk-fearx.webp", "team_kind": "Main", "facilities": { @@ -339,6 +339,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-61bd92d5", "city": "Seoul", "form": [], @@ -350,7 +351,6 @@ "academy": null, "country": "KR", "finance": 4400000, - "history": [], "logo_url": "/teams-icons/ns-redforce.webp", "team_kind": "Main", "facilities": { @@ -395,6 +395,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-bd98ddef", "city": "Seoul", "form": [], @@ -406,7 +407,6 @@ "academy": null, "country": "KR", "finance": 4350000, - "history": [], "logo_url": "/teams-icons/brion.webp", "team_kind": "Main", "facilities": { @@ -451,6 +451,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-861ba8cb", "city": "Seoul", "form": [], @@ -462,7 +463,6 @@ "academy": null, "country": "KR", "finance": 5750000, - "history": [], "logo_url": "/teams-icons/hanwha-life-esports.webp", "team_kind": "Main", "facilities": { @@ -507,6 +507,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-41bf07a6", "city": "Seoul", "form": [], @@ -518,7 +519,6 @@ "academy": null, "country": "KR", "finance": 5100000, - "history": [], "logo_url": "/teams-icons/dplus-kia.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/lckcl_teams.json b/data/teams/lckcl_teams.json index 6e00d0cf6..cd961a43c 100644 --- a/data/teams/lckcl_teams.json +++ b/data/teams/lckcl_teams.json @@ -3,6 +3,7 @@ "description": "LCKCL - 2026 Season", "teams": [ { + "history": [], "id": "lck-cl-bnk-fearx-youth", "logo_url": "/teams-icons/bnk-fearx-youth.webp", "data.country": "KR", @@ -13,80 +14,80 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-gen-g-global-academy", - "logo_url": "/teams-icons/gen-g-global-academy.webp", - "data.country": "KR", - "name": "Gen.G Global Academy", - "short_name": "GEN.GA", - "country": "", + "history": [], + "id": "lck-cl-hanjin-brion-challengers", + "country": "KR", + "logo_url": "/teams-icons/hanjin-brion-challengers.webp", + "name": "HANJIN BRION CHALLENGERS", + "short_name": "BRO.C", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-kt-rolster-challengers", - "logo_url": "/teams-icons/kt-rolster-challengers.webp", + "history": [], + "id": "lck-cl-ns-esports-academy", + "logo_url": "/teams-icons/ns-esports-academy.webp", "data.country": "KR", - "name": "KT Rolster Challengers", - "short_name": "KT.C", + "name": "NS Esports Academy", + "short_name": "NS.EA", "country": "", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-hanjin-brion-challengers", - "country": "", - "logo_url": "/teams-icons/hanjin-brion-challengers.webp", - "name": "HANJIN BRION CHALLENGERS", - "short_name": "BRO.C", + "history": [], + "id": "lck-cl-kt-rolster-challengers", + "country": "South Korea", + "logo_url": "/teams-icons/kt-rolster-challengers.webp", + "data.country": "KR", + "name": "KT Rolster Challengers", + "short_name": "KT.C", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-dn-soopers-challengers", - "logo_url": "/teams-icons/dn-soopers-challengers.webp", + "history": [], + "id": "lck-cl-hle-challengers", + "logo_url": "/teams-icons/hle-challengers.webp", "data.country": "KR", - "name": "DN SOOpers Challengers", - "short_name": "DNS.C", + "name": "HLE Challengers", + "short_name": "HLE.C", "country": "", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lck-cl-dplus-kia-challengers", "logo_url": "/teams-icons/dplus-kia-challengers.webp", "data.country": "KR", @@ -97,47 +98,47 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-ns-esports-academy", - "logo_url": "/teams-icons/ns-esports-academy.webp", + "history": [], + "id": "lck-cl-t1-esports-academy", + "country": "South Korea", + "logo_url": "/teams-icons/t1-esports-academy.webp", "data.country": "KR", - "name": "NS Esports Academy", - "short_name": "NS.EA", - "country": "", + "name": "T1 Esports Academy", + "short_name": "T1.EA", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-hle-challengers", - "logo_url": "/teams-icons/hle-challengers.webp", + "history": [], + "id": "lck-cl-gen-g-global-academy", + "logo_url": "/teams-icons/gen-g-global-academy.webp", "data.country": "KR", - "name": "HLE Challengers", - "short_name": "HLE.C", + "name": "Gen.G Global Academy", + "short_name": "GEN.GA", "country": "", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lck-cl-kiwoon-drx-challengers", "logo_url": "/teams-icons/kiwoon-drx-challengers.webp", "data.country": "KR", @@ -148,28 +149,27 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lck-cl-t1-esports-academy", - "logo_url": "/teams-icons/t1-esports-academy.webp", + "history": [], + "id": "lck-cl-dn-soopers-challengers", + "logo_url": "/teams-icons/dn-soopers-challengers.webp", "data.country": "KR", - "name": "T1 Esports Academy", - "short_name": "T1.EA", + "name": "DN SOOpers Challengers", + "short_name": "DNS.C", "country": "", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lcp_teams.json b/data/teams/lcp_teams.json index 9c5095010..5feab4cc5 100644 --- a/data/teams/lcp_teams.json +++ b/data/teams/lcp_teams.json @@ -3,6 +3,7 @@ "description": "LCP - 2026 Season", "teams": [ { + "history": [], "id": "team-dcg2025", "city": "Taipei", "form": [], @@ -13,7 +14,6 @@ }, "academy": null, "country": "Taiwan", - "history": [], "logo_url": "/teams-icons/deep-cross-gaming.webp", "team_kind": "Main", "facilities": { @@ -50,15 +50,10 @@ "scrim_weekly_slots": 5, "training_intensity": "Medium", "stadium_name": "", - "stadium_capacity": 2500, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0 + "stadium_capacity": 2500 }, { + "history": [], "id": "team-709031e2", "city": "Taipei", "form": [], @@ -70,7 +65,6 @@ "academy": null, "country": "VN", "finance": 2800000, - "history": [], "logo_url": "/teams-icons/mvk-esports.webp", "team_kind": "Main", "facilities": { @@ -115,6 +109,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-494fc51a", "city": "Ho Chi Minh City", "form": [], @@ -126,7 +121,6 @@ "academy": null, "country": "VN", "finance": 5650000, - "history": [], "logo_url": "/teams-icons/gam-esports.webp", "team_kind": "Main", "facilities": { @@ -171,6 +165,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-d13da18a", "city": "Singapore", "form": [], @@ -182,7 +177,6 @@ "academy": null, "country": "SG", "finance": 4000000, - "history": [], "logo_url": "/teams-icons/team-secret-whales.webp", "team_kind": "Main", "facilities": { @@ -227,6 +221,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-cbc2ec83", "city": "Tokyo", "form": [], @@ -238,7 +233,6 @@ "academy": null, "country": "JP", "finance": 6500000, - "history": [], "logo_url": "/teams-icons/detonation-focusme.webp", "team_kind": "Main", "facilities": { @@ -283,6 +277,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-gzg2025", "city": "", "form": [], @@ -293,7 +288,6 @@ }, "academy": null, "country": "??", - "history": [], "logo_url": "/teams-icons/ground-zero-gaming.webp", "team_kind": "Main", "facilities": { @@ -330,15 +324,10 @@ "scrim_weekly_slots": 5, "training_intensity": "Medium", "stadium_name": "", - "stadium_capacity": 2500, - "finance": 0, - "reputation": 0, - "wage_budget": 0, - "transfer_budget": 0, - "season_income": 0, - "season_expenses": 0 + "stadium_capacity": 2500 }, { + "history": [], "id": "team-83d3342f", "city": "Taipei", "form": [], @@ -350,7 +339,6 @@ "academy": null, "country": "TW", "finance": 5100000, - "history": [], "logo_url": "/teams-icons/ctbc-flying-oyster.webp", "team_kind": "Main", "facilities": { @@ -395,6 +383,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-f4306bce", "city": "Fukuoka", "form": [], @@ -406,7 +395,6 @@ "academy": null, "country": "JP", "finance": 5500000, - "history": [], "logo_url": "/teams-icons/softbank-hawks-gaming.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/lcs_teams.json b/data/teams/lcs_teams.json index 250b7af39..a9fde94a5 100644 --- a/data/teams/lcs_teams.json +++ b/data/teams/lcs_teams.json @@ -3,6 +3,7 @@ "description": "LCS - 2026 Season", "teams": [ { + "history": [], "id": "team-tl2025", "city": "Los Angeles", "form": [], @@ -14,7 +15,6 @@ "academy": null, "country": "US", "finance": 8500000, - "history": [], "logo_url": "/teams-icons/team-liquid.webp", "team_kind": "Main", "facilities": { @@ -59,6 +59,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-c92025", "city": "Los Angeles", "form": [], @@ -70,7 +71,6 @@ "academy": null, "country": "US", "finance": 38000000, - "history": [], "logo_url": "/teams-icons/cloud9.webp", "team_kind": "Main", "facilities": { @@ -115,6 +115,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-dig2025", "city": "Los Angeles", "form": [], @@ -126,7 +127,6 @@ "academy": null, "country": "US", "finance": 5800000, - "history": [], "logo_url": "/teams-icons/dignitas.webp", "team_kind": "Main", "facilities": { @@ -171,6 +171,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-cb9503c1", "city": "Mexico City", "form": [], @@ -182,7 +183,6 @@ "academy": null, "country": "MX", "finance": 4000000, - "history": [], "logo_url": "/teams-icons/lyon.webp", "team_kind": "Main", "facilities": { @@ -227,6 +227,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-75904cb7", "city": "Los Angeles", "form": [], @@ -238,7 +239,6 @@ "academy": null, "country": "US", "finance": 5300000, - "history": [], "logo_url": "/teams-icons/disguised.webp", "team_kind": "Main", "facilities": { @@ -283,6 +283,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-sen2025", "city": "Los Angeles", "form": [], @@ -294,7 +295,6 @@ "academy": null, "country": "US", "finance": 5500000, - "history": [], "logo_url": "/teams-icons/sentinels.webp", "team_kind": "Main", "facilities": { @@ -339,6 +339,7 @@ "stadium_capacity": 0 }, { + "history": [], "id": "team-d740ef00", "city": "Toronto", "form": [], @@ -350,7 +351,6 @@ "academy": null, "country": "CA", "finance": 4400000, - "history": [], "logo_url": "/teams-icons/shopify-rebellion.webp", "team_kind": "Main", "facilities": { @@ -395,6 +395,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-fly2025", "city": "Miami", "form": [], @@ -406,7 +407,6 @@ "academy": null, "country": "US", "finance": 6000000, - "history": [], "logo_url": "/teams-icons/flyquest.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/ldl_teams.json b/data/teams/ldl_teams.json index d2e770682..bd50b8cbf 100644 --- a/data/teams/ldl_teams.json +++ b/data/teams/ldl_teams.json @@ -3,164 +3,163 @@ "description": "LDL - 2026 Season", "teams": [ { - "id": "team-f97df98e", - "name": "Anyone's Legend.Young", - "short_name": "ALY", + "history": [], + "id": "team-0c76150c", + "name": "Royal Club", + "short_name": "ROY", "country": "", + "logo_url": "/teams-icons/065be69369ab1d77.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-13997011", - "name": "OMG Academy", - "short_name": "OMGA", + "name": "Oh My God Academy", + "short_name": "OMG.A", "country": "", + "logo_url": "/teams-icons/5767daa9f9a862b3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-8d56ae81", - "name": "WBG Youth Team", - "short_name": "WBGY", + "history": [], + "id": "team-37ced0d1", + "name": "LGD Gaming Young Team", + "short_name": "LGD.Y", "country": "", + "logo_url": "/teams-icons/dbfbb56b4744d9b7.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-bf6805f5", - "name": "BLG Junior", - "short_name": "BLGJ", + "history": [], + "id": "team-8d56ae81", + "name": "Weibo Gaming Youth Team", + "short_name": "WBG.Y", "country": "", + "logo_url": "/teams-icons/0c8901407b8c0858.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-0c76150c", - "name": "Royal Club", - "short_name": "ROY", + "history": [], + "colors": { + "primary": "#505fce", + "secondary": "#b15cb2" + }, + "id": "team-94b3267f", + "name": "LNG Academy", + "short_name": "LNG.A", "country": "", + "logo_url": "/teams-icons/e3281853b366e4f0.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "colors": { + "primary": "#fb0e0e" + }, "id": "team-a73f2996", - "name": "WE Academy", - "short_name": "WEA", + "name": "Team WE Academy", + "short_name": "TWE.A", "country": "", + "logo_url": "/teams-icons/dabd970ff2b4c252.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-37ced0d1", - "name": "LGD Young Team", - "short_name": "LGDY", + "history": [], + "id": "team-bf6805f5", + "name": "Bilibili Gaming Junior", + "short_name": "BLG.J", "country": "", + "logo_url": "/teams-icons/a164a74705151684.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-edb9580a", - "name": "TES Challenger", - "short_name": "TESC", + "history": [], + "id": "team-c6cb03ca", + "name": "ThunderTalk Gaming Young", + "short_name": "TT.Y", "country": "", + "logo_url": "/teams-icons/30ec5f19b3d67200.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-94b3267f", - "name": "LNG Academy", - "short_name": "LNGA", + "history": [], + "id": "team-edb9580a", + "name": "Top Esports Challenger", + "short_name": "TES.C", "country": "", + "logo_url": "/teams-icons/2510d66f568883bf.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-c6cb03ca", - "name": "TT Young", - "short_name": "TTY", + "history": [], + "id": "team-f97df98e", + "name": "Anyone's Legend.Young", + "short_name": "AL.Y", "country": "", + "logo_url": "/teams-icons/a942d1fde0a743b4.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lec_teams.json b/data/teams/lec_teams.json index bfe4587e4..621172b7c 100644 --- a/data/teams/lec_teams.json +++ b/data/teams/lec_teams.json @@ -3,6 +3,7 @@ "description": "LEC - 2026 Season", "teams": [ { + "history": [], "id": "lec-natus-vincere", "city": "Kyiv", "form": [], @@ -15,7 +16,6 @@ "academy": null, "country": "UA", "finance": 3500000, - "history": [], "logo_url": "/teams-icons/natus-vincere.webp", "team_kind": "Main", "facilities": { @@ -60,6 +60,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-shifters", "city": "Geneva", "form": [], @@ -72,7 +73,6 @@ "academy": null, "country": "CH", "finance": 3000000, - "history": [], "logo_url": "/teams-icons/shifters.webp", "team_kind": "Main", "facilities": { @@ -117,6 +117,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-g2-esports", "city": "Berlin", "form": [], @@ -129,7 +130,6 @@ "academy": null, "country": "DE", "finance": 4500000, - "history": [], "logo_url": "/teams-icons/g2-esports.webp", "team_kind": "Main", "facilities": { @@ -174,6 +174,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-fnatic", "city": "London", "form": [], @@ -186,7 +187,6 @@ "academy": null, "country": "GB", "finance": 3500000, - "history": [], "logo_url": "/teams-icons/fnatic.webp", "team_kind": "Main", "facilities": { @@ -231,6 +231,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-team-vitality", "city": "Paris", "form": [], @@ -243,7 +244,6 @@ "academy": null, "country": "FR", "finance": 4500000, - "history": [], "logo_url": "/teams-icons/team-vitality.webp", "team_kind": "Main", "facilities": { @@ -288,6 +288,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-sk-gaming", "city": "Berlin", "form": [], @@ -300,7 +301,6 @@ "academy": null, "country": "DE", "finance": 3000000, - "history": [], "logo_url": "/teams-icons/sk-gaming.webp", "team_kind": "Main", "facilities": { @@ -345,6 +345,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-team-heretics-lec", "city": "Madrid", "form": [], @@ -357,7 +358,6 @@ "academy": null, "country": "ES", "finance": 3500000, - "history": [], "logo_url": "/teams-icons/team-heretics-lec.webp", "team_kind": "Main", "facilities": { @@ -402,6 +402,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-karmine-corp", "city": "Paris", "form": [], @@ -414,7 +415,6 @@ "academy": null, "country": "FR", "finance": 4500000, - "history": [], "logo_url": "/teams-icons/karmine-corp.webp", "team_kind": "Main", "facilities": { @@ -459,6 +459,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-movistar-koi", "city": "Madrid", "form": [], @@ -471,7 +472,6 @@ "academy": null, "country": "ES", "finance": 4500000, - "history": [], "logo_url": "/teams-icons/movistar-koi.webp", "team_kind": "Main", "facilities": { @@ -516,6 +516,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "lec-giantx-lec", "city": "Málaga", "form": [], @@ -528,7 +529,6 @@ "academy": null, "country": "ES", "finance": 3500000, - "history": [], "logo_url": "/teams-icons/giantx-lec.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/les_teams.json b/data/teams/les_teams.json index 0fd77d762..325485291 100644 --- a/data/teams/les_teams.json +++ b/data/teams/les_teams.json @@ -3,6 +3,7 @@ "description": "LES - 2026 Season", "teams": [ { + "history": [], "id": "team-8baee3fd", "city": "", "form": [], @@ -12,12 +13,10 @@ "secondary": "#9e4ce1" }, "academy": null, - "country": "", + "country": "ES", "finance": 2496829, - "history": [], "logo_url": "/teams-icons/movistar-koi-f-nix.webp", "team_kind": "Main", - "arena_name": "Movistar KOI Fénix Arena", "facilities": { "medical": 1, "scouting": 1, @@ -44,7 +43,6 @@ "wage_budget": 1248414, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, @@ -61,21 +59,20 @@ "stadium_capacity": 1500 }, { - "id": "team-06974122", + "history": [], + "id": "team-f10b156f", "city": "", "form": [], - "name": "Barcelona Esports", + "name": "Team Heretics Academy", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1739827, - "history": [], - "logo_url": "/teams-icons/barcelona-esports.webp", + "country": "ES", + "finance": 1999037, + "logo_url": "/teams-icons/team-heretics-academy.webp", "team_kind": "Main", - "arena_name": "Barcelona Esports Arena", "facilities": { "medical": 1, "scouting": 1, @@ -89,8 +86,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 302, - "short_name": "BAR", + "reputation": 316, + "short_name": "THA", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -99,57 +96,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 869914, + "wage_budget": 999518, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 347965, + "transfer_budget": 399807, "financial_ledger": [], - "scrim_reputation": 30, + "scrim_reputation": 31, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Barcelona Esports Arena", + "stadium_name": "Team Heretics Arena", "stadium_capacity": 1500 }, { - "logo_url": "/teams-icons/giantx-itero.webp", - "id": "team-854f6893", - "name": "GiantX Itero", - "short_name": "GXI", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-129835c5", + "history": [], + "id": "team-06974122", "city": "", "form": [], - "name": "UCAM Esports", + "name": "Barcelona Esports", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2729120, - "history": [], - "logo_url": "/teams-icons/ucam-esports.webp", + "country": "ES", + "finance": 1739827, + "logo_url": "/teams-icons/barcelona-esports.webp", "team_kind": "Main", - "arena_name": "UCAM Esports Arena", "facilities": { "medical": 1, "scouting": 1, @@ -163,8 +142,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 208, - "short_name": "UCAM", + "reputation": 302, + "short_name": "BAR", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -173,26 +152,26 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1364560, + "wage_budget": 869914, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 545824, + "transfer_budget": 347965, "financial_ledger": [], - "scrim_reputation": 20, + "scrim_reputation": 30, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "UCAM Esports Arena", + "stadium_name": "Barcelona Esports Arena", "stadium_capacity": 1500 }, { + "history": [], "id": "team-5d7b3ec4", "city": "", "form": [], @@ -202,12 +181,10 @@ "secondary": "#FFFFFF" }, "academy": null, - "country": "", + "country": "ES", "finance": 2693453, - "history": [], "logo_url": "/teams-icons/falke-esports.webp", "team_kind": "Main", - "arena_name": "Falke Esports Arena", "facilities": { "medical": 1, "scouting": 1, @@ -234,7 +211,6 @@ "wage_budget": 1346726, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, @@ -251,21 +227,20 @@ "stadium_capacity": 1500 }, { - "id": "team-d0d82673", + "history": [], + "id": "team-129835c5", "city": "", "form": [], - "name": "LUA Gaming", + "name": "UCAM Esports", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 3189278, - "history": [], - "logo_url": "/teams-icons/lua-gaming.webp", + "country": "ES", + "finance": 2729120, + "logo_url": "/teams-icons/ucam-esports.webp", "team_kind": "Main", - "arena_name": "LUA Gaming Arena", "facilities": { "medical": 1, "scouting": 1, @@ -279,8 +254,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 303, - "short_name": "LUA", + "reputation": 208, + "short_name": "UCAM", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -289,57 +264,55 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1594639, + "wage_budget": 1364560, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 637856, + "transfer_budget": 545824, "financial_ledger": [], - "scrim_reputation": 30, + "scrim_reputation": 20, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "LUA Gaming Arena", + "stadium_name": "UCAM Esports Arena", "stadium_capacity": 1500 }, { - "logo_url": "/teams-icons/ub-alma-mater.webp", - "id": "team-ac846213", - "name": "UB Alma Mater", - "short_name": "UAM", + "history": [], + "logo_url": "/teams-icons/giantx-itero.webp", + "id": "team-854f6893", + "name": "GiantX Itero", + "short_name": "GXI", "country": "", "city": "", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-f10b156f", + "history": [], + "id": "team-d0d82673", "city": "", "form": [], - "name": "Team Heretics Academy", + "name": "LUA Gaming", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1999037, - "history": [], - "logo_url": "/teams-icons/team-heretics-academy.webp", + "country": "ES", + "finance": 3189278, + "logo_url": "/teams-icons/lua-gaming.webp", "team_kind": "Main", - "arena_name": "Team Heretics Arena", "facilities": { "medical": 1, "scouting": 1, @@ -353,8 +326,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 316, - "short_name": "THA", + "reputation": 303, + "short_name": "LUA", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -363,24 +336,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 999518, + "wage_budget": 1594639, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 399807, + "transfer_budget": 637856, "financial_ledger": [], - "scrim_reputation": 31, + "scrim_reputation": 30, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Team Heretics Arena", + "stadium_name": "LUA Gaming Arena", "stadium_capacity": 1500 + }, + { + "history": [], + "logo_url": "/teams-icons/ub-alma-mater.webp", + "id": "team-ac846213", + "name": "UB Alma Mater", + "short_name": "UAM", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lfl-l_teams.json b/data/teams/lfl-l_teams.json new file mode 100644 index 000000000..c258193ab --- /dev/null +++ b/data/teams/lfl-l_teams.json @@ -0,0 +1,126 @@ +{ + "name": "LFL-L Teams", + "description": "LFL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "team-d78a4aff", + "city": "", + "form": [], + "name": "French Flair", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "FR", + "finance": 3450921, + "logo_url": "/teams-icons/french-flair.webp", + "team_kind": "Main", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 317, + "short_name": "FF", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1725460, + "scrim_results": [], + "season_income": 0, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 690184, + "financial_ledger": [], + "scrim_reputation": 31, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium", + "stadium_name": "French Flair Arena", + "stadium_capacity": 1500 + }, + { + "history": [], + "id": "team-68015282", + "name": "Lausanne-Sport Esports", + "short_name": "LSE", + "country": "", + "logo_url": null, + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "team-a255d692", + "name": "BK ROG Esports", + "short_name": "BKR", + "country": "", + "logo_url": null, + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "team-c9435bbd", + "name": "Lille Esport", + "short_name": "LLE", + "country": "", + "logo_url": null, + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "team-cc07a0ef", + "name": "Project Conquerors", + "short_name": "PCQ", + "country": "", + "logo_url": null, + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/lfl_teams.json b/data/teams/lfl_teams.json index d0f2efee4..30a9aa059 100644 --- a/data/teams/lfl_teams.json +++ b/data/teams/lfl_teams.json @@ -3,21 +3,20 @@ "description": "LFL - 2026 Season", "teams": [ { - "id": "team-92b46fef", + "history": [], + "id": "team-af25d742", "city": "", "form": [], - "name": "Skillcamp", + "name": "Karmine Corp Blue", "colors": { - "primary": "#bba330", + "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2324580, - "history": [], - "logo_url": null, + "country": "FR", + "finance": 2865211, + "logo_url": "/teams-icons/karmine-corp-blue.webp", "team_kind": "Main", - "arena_name": "Skillcamp Arena", "facilities": { "medical": 1, "scouting": 1, @@ -31,8 +30,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 208, - "short_name": "SKILLCAMP", + "reputation": 320, + "short_name": "KCB", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -41,41 +40,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1162290, + "wage_budget": 1432606, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 464916, + "transfer_budget": 573042, "financial_ledger": [], - "scrim_reputation": 20, + "scrim_reputation": 32, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Skillcamp Arena", + "stadium_name": "Karmine Corp Blue Arena", "stadium_capacity": 1500 }, { - "id": "team-012b64d1", + "history": [], + "id": "team-c12fef91", "city": "", "form": [], - "name": "Solary", + "name": "Ici Japon Corp. Esport", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2063472, - "history": [], - "logo_url": null, + "country": "FR", + "finance": 2172174, + "logo_url": "/teams-icons/ici-japon-corp-esport.webp", "team_kind": "Main", - "arena_name": "Solary Arena", "facilities": { "medical": 1, "scouting": 1, @@ -89,8 +86,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 369, - "short_name": "SOLARY", + "reputation": 377, + "short_name": "ICI JAPON", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -99,41 +96,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1031736, + "wage_budget": 1086087, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 412694, + "transfer_budget": 434435, "financial_ledger": [], - "scrim_reputation": 36, + "scrim_reputation": 37, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Solary Arena", + "stadium_name": "Ici Japon Corp. Esport Arena", "stadium_capacity": 1500 }, { - "id": "team-c12fef91", + "history": [], + "id": "team-8f3d532a", "city": "", "form": [], - "name": "Ici Japon Corp. Esport", + "name": "Vitality Academy", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2172174, - "history": [], - "logo_url": "/teams-icons/ici-japon-corp-esport.webp", + "country": "FR", + "finance": 3241233, + "logo_url": "/teams-icons/vitality-academy.webp", "team_kind": "Main", - "arena_name": "Ici Japon Corp. Esport Arena", "facilities": { "medical": 1, "scouting": 1, @@ -147,8 +142,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 377, - "short_name": "ICI JAPON", + "reputation": 201, + "short_name": "VITALITY", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -157,41 +152,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1086087, + "wage_budget": 1620616, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 434435, + "transfer_budget": 648247, "financial_ledger": [], - "scrim_reputation": 37, + "scrim_reputation": 20, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Ici Japon Corp. Esport Arena", + "stadium_name": "Vitality Arena", "stadium_capacity": 1500 }, { - "id": "team-da97809e", + "history": [], + "id": "team-0f9010b5", "city": "", "form": [], - "name": "Galions", + "name": "TLN Pirates", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1529117, - "history": [], - "logo_url": null, + "country": "FR", + "finance": 1685291, + "logo_url": "/teams-icons/tln-pirates.webp", "team_kind": "Main", - "arena_name": "Galions Arena", "facilities": { "medical": 1, "scouting": 1, @@ -205,8 +198,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 396, - "short_name": "GALIONS", + "reputation": 394, + "short_name": "TP", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -215,41 +208,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 764558, + "wage_budget": 842646, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 305823, + "transfer_budget": 337058, "financial_ledger": [], "scrim_reputation": 39, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Galions Arena", + "stadium_name": "TLN Pirates Arena", "stadium_capacity": 1500 }, { - "id": "team-f8f7f78d", + "history": [], + "id": "team-da97809e", "city": "", "form": [], - "name": "ZYB Esport", + "name": "Galions", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1927602, - "history": [], - "logo_url": null, + "country": "FR", + "finance": 1529117, + "logo_url": "/teams-icons/galions.webp", "team_kind": "Main", - "arena_name": "ZYB Esport Arena", "facilities": { "medical": 1, "scouting": 1, @@ -263,8 +254,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 310, - "short_name": "ZYB", + "reputation": 396, + "short_name": "GALIONS", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -273,41 +264,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 963801, + "wage_budget": 764558, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 385520, + "transfer_budget": 305823, "financial_ledger": [], - "scrim_reputation": 31, + "scrim_reputation": 39, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "ZYB Esport Arena", + "stadium_name": "Galions Arena", "stadium_capacity": 1500 }, { - "id": "team-af25d742", + "history": [], + "id": "team-012b64d1", "city": "", "form": [], - "name": "Karmine Corp Blue", + "name": "Solary", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2865211, - "history": [], - "logo_url": "/teams-icons/karmine-corp-blue.webp", + "country": "FR", + "finance": 2063472, + "logo_url": "/teams-icons/solary.webp", "team_kind": "Main", - "arena_name": "Karmine Corp Blue Arena", "facilities": { "medical": 1, "scouting": 1, @@ -321,8 +310,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 320, - "short_name": "KCB", + "reputation": 369, + "short_name": "SOLARY", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -331,41 +320,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1432606, + "wage_budget": 1031736, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 573042, + "transfer_budget": 412694, "financial_ledger": [], - "scrim_reputation": 32, + "scrim_reputation": 36, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Karmine Corp Blue Arena", + "stadium_name": "Solary Arena", "stadium_capacity": 1500 }, { - "id": "team-0f9010b5", + "history": [], + "id": "team-ab04f649", "city": "", "form": [], - "name": "TLN Pirates", + "name": "Joblife", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1685291, - "history": [], - "logo_url": "/teams-icons/tln-pirates.webp", + "country": "FR", + "finance": 1854941, + "logo_url": "/teams-icons/joblife.webp", "team_kind": "Main", - "arena_name": "TLN Pirates Arena", "facilities": { "medical": 1, "scouting": 1, @@ -379,8 +366,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 394, - "short_name": "TP", + "reputation": 442, + "short_name": "TJL", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -389,41 +376,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 842646, + "wage_budget": 927470, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 337058, + "transfer_budget": 370988, "financial_ledger": [], - "scrim_reputation": 39, + "scrim_reputation": 44, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "TLN Pirates Arena", + "stadium_name": "JOblife Arena", "stadium_capacity": 1500 }, { - "id": "team-8f3d532a", + "history": [], + "id": "team-f8f7f78d", "city": "", "form": [], - "name": "Vitality Academy", + "name": "ZYB Esport", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 3241233, - "history": [], - "logo_url": "/teams-icons/vitality-academy.webp", + "country": "FR", + "finance": 1927602, + "logo_url": "/teams-icons/zyb-esport.webp", "team_kind": "Main", - "arena_name": "Vitality Arena", "facilities": { "medical": 1, "scouting": 1, @@ -437,8 +422,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 201, - "short_name": "VITALITY", + "reputation": 310, + "short_name": "ZYB", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -447,57 +432,55 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1620616, + "wage_budget": 963801, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 648247, + "transfer_budget": 385520, "financial_ledger": [], - "scrim_reputation": 20, + "scrim_reputation": 31, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Vitality Arena", + "stadium_name": "ZYB Esport Arena", "stadium_capacity": 1500 }, { + "history": [], "id": "team-ed48a04c", "name": "Esprit Shōnen", "short_name": "ESN", "country": "", + "logo_url": "/teams-icons/93c488cfb423b790.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-ab04f649", + "history": [], + "id": "team-92b46fef", "city": "", "form": [], - "name": "Joblife", + "name": "Skillcamp", "colors": { - "primary": "#000000", + "primary": "#bba330", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1854941, - "history": [], - "logo_url": null, + "country": "FR", + "finance": 2324580, + "logo_url": "/teams-icons/skillcamp.webp", "team_kind": "Main", - "arena_name": "JOblife Arena", "facilities": { "medical": 1, "scouting": 1, @@ -511,8 +494,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 442, - "short_name": "TJL", + "reputation": 208, + "short_name": "SKILLCAMP", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -521,23 +504,22 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 927470, + "wage_budget": 1162290, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 370988, + "transfer_budget": 464916, "financial_ledger": [], - "scrim_reputation": 44, + "scrim_reputation": 20, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "JOblife Arena", + "stadium_name": "Skillcamp Arena", "stadium_capacity": 1500 } ] diff --git a/data/teams/lit_teams.json b/data/teams/lit_teams.json index bae2618c6..6014b9eac 100644 --- a/data/teams/lit_teams.json +++ b/data/teams/lit_teams.json @@ -3,132 +3,132 @@ "description": "LIT - 2026 Season", "teams": [ { - "id": "team-763ea26a", - "name": "Eeterna Esports", - "short_name": "EET", - "country": "", + "history": [], + "country": "IT", + "id": "team-3ee8399a", + "name": "TITANS", + "short_name": "TITA", + "logo_url": "/teams-icons/43a53d6bde4b17a5.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-d8e80ef5", - "name": "HMBLE", - "short_name": "HBL", - "country": "", + "history": [], + "country": "IT", + "id": "team-763ea26a", + "name": "Aeterna Esports", + "short_name": "EET", + "logo_url": "/teams-icons/5161b41cc4654338.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "IT", "id": "team-78e0cf99", "name": "Colossal Gaming", "short_name": "COL", - "country": "", + "logo_url": "/teams-icons/63e66bbf23752aa8.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-d6fcaa33", - "name": "Zena Esports", - "short_name": "ZES", - "country": "", + "history": [], + "country": "IT", + "id": "team-a272304b", + "name": "StoneHenge Esports", + "short_name": "STON", + "logo_url": "/teams-icons/a2086b9cb2ce0f79.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "IT", "id": "team-d4e0b415", "name": "EKO Esports", "short_name": "EKO", - "country": "", + "logo_url": "/teams-icons/6652963c90b1d101.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-dacb4a17", - "name": "GMBLERS Esports", - "short_name": "GMB", - "country": "", + "history": [], + "country": "IT", + "id": "team-d6fcaa33", + "name": "Zena Esports", + "short_name": "ZES", + "logo_url": "/teams-icons/65d104517b45b9d8.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-a272304b", - "name": "StoneHenge Esports", - "short_name": "STON", - "country": "", + "history": [], + "country": "IT", + "id": "team-d8e80ef5", + "name": "HMBLE", + "short_name": "HBL", + "logo_url": "/teams-icons/3bee4cc98d291b2a.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-3ee8399a", - "name": "Titans", - "short_name": "TITA", - "country": "", + "history": [], + "country": "IT", + "id": "team-dacb4a17", + "name": "GMBLERS Esports", + "short_name": "GMB", + "logo_url": "/teams-icons/dbd4afb569e869b3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/ljl-l_teams.json b/data/teams/ljl-l_teams.json new file mode 100644 index 000000000..8e171f9a4 --- /dev/null +++ b/data/teams/ljl-l_teams.json @@ -0,0 +1,37 @@ +{ + "name": "LJL-L Teams", + "description": "LJL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "team-f711240c", + "name": "NOVEX", + "short_name": "NOV", + "country": "", + "logo_url": "/teams-icons/b412ed418ba0a620.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "colors": { + "primary": "#c01c28" + }, + "id": "team-ffab9be7", + "name": "Inferno Drive Tokyo", + "short_name": "TOK", + "country": "", + "logo_url": "/teams-icons/a3d1f10ce7a0d501.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/ljl_teams.json b/data/teams/ljl_teams.json index ea51d3485..85cc76515 100644 --- a/data/teams/ljl_teams.json +++ b/data/teams/ljl_teams.json @@ -3,195 +3,164 @@ "description": "LJL - 2026 Season", "teams": [ { - "id": "team-8d244b3a", - "name": "Clocks", - "short_name": "CLO", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { + "history": [], "colors": { "primary": "#1c71d8", "secondary": "#ffffff" }, "id": "team-15282d93", - "name": "DFM Academy", + "name": "DetonatioN FocusMe Academy", "short_name": "DFM-A", "country": "", + "logo_url": "/teams-icons/fb310dd93cd8a463.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-b6b8bfae", - "name": "FENNEL", - "short_name": "FEN", + "history": [], + "id": "team-208c3750", + "name": "L Guide Gaming", + "short_name": "LGG", "country": "", + "logo_url": "/teams-icons/acb02920f4f94167.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-5f5b57be", - "name": "Fast8", - "short_name": "F8", + "history": [], + "id": "team-5059567a", + "name": "VARREL YOUTH", + "short_name": "VAYO", "country": "", + "logo_url": "/teams-icons/23077ae2748efb91.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-208c3750", - "name": "L Guide Gaming", - "short_name": "LGG", + "history": [], + "id": "team-5f5b57be", + "name": "Fast8", + "short_name": "F8", "country": "", + "logo_url": "/teams-icons/27b3beb079ac2766.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-5059567a", - "name": "VARREL YOUTH", - "short_name": "VAYO", + "history": [], + "id": "team-899e9d2f", + "name": "Yang Yang Gaming", + "short_name": "YYG", "country": "", + "logo_url": "/teams-icons/9ec438c6185a93d3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-e82d1866", - "name": "New Meta", - "short_name": "NEW", + "history": [], + "id": "team-8d244b3a", + "name": "RAYN Clocks", + "short_name": "CLO", "country": "", + "logo_url": "/teams-icons/50e6add3c248b7de.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-899e9d2f", - "name": "Yang Yang Gaming", - "short_name": "YYG", + "history": [], + "id": "team-b6b8bfae", + "name": "FENNEL", + "short_name": "FEN", "country": "", + "logo_url": "/teams-icons/078a68c968b4444b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-f711240c", - "name": "NOVEX", - "short_name": "NOV", + "history": [], + "id": "team-c1e9468d", + "name": "Rising Gaming", + "short_name": "RIS", "country": "", + "logo_url": "/teams-icons/d196a1a4c327b1b0.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-c1e9468d", - "name": "Rising Gaming", - "short_name": "RIS", + "history": [], + "id": "team-e82d1866", + "name": "New Meta", + "short_name": "NEW", "country": "", + "logo_url": "/teams-icons/22a8ddd92bcca819.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-e977febc", "name": "Uwinks", "short_name": "UWI", "country": "", + "logo_url": "/teams-icons/340bcb216bf996cb.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] - }, - { - "colors": { - "primary": "#c01c28" - }, - "id": "team-ffab9be7", - "name": "Inferno Drive Tokyo", - "short_name": "TOK", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lla-l_teams.json b/data/teams/lla-l_teams.json new file mode 100644 index 000000000..fd95e3928 --- /dev/null +++ b/data/teams/lla-l_teams.json @@ -0,0 +1,192 @@ +{ + "name": "LLA-L Teams", + "description": "LLA-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "lla-l-six-karma", + "country": "Mexico", + "logo_url": "/teams-icons/six-karma.webp", + "data.country": "Mexico", + "name": "Six Karma", + "short_name": "6k", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-the-kings", + "country": "MX", + "logo_url": "/teams-icons/the-kings.webp", + "data.country": "MX", + "name": "The Kings", + "short_name": "TK", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-movistar-r7", + "country": "Mexico", + "logo_url": "/teams-icons/movistar-r7.webp", + "data.country": "Mexico", + "name": "Movistar R7", + "short_name": "R7", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-kaos-latin-gamers", + "country": "Chile", + "logo_url": "/teams-icons/kaos-latin-gamers.webp", + "data.country": "Chile", + "name": "Kaos Latin Gamers", + "short_name": "KLG", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-isurus", + "country": "Argentina", + "logo_url": "/teams-icons/isurus.webp", + "data.country": "Argentina", + "name": "Isurus", + "short_name": "ISG", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-all-knights", + "country": "Chile", + "logo_url": "/teams-icons/all-knights.webp", + "data.country": "Chile", + "name": "All Knights", + "short_name": "AK", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-xten-esports", + "country": "Mexico", + "logo_url": "/teams-icons/xten-esports.webp", + "data.country": "Mexico", + "name": "XTEN Esports", + "short_name": "XTN", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-furious-gaming", + "country": "Argentina", + "logo_url": "/teams-icons/furious-gaming.webp", + "data.country": "Argentina", + "name": "Furious Gaming", + "short_name": "FG", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-team-aze", + "country": "Mexico", + "logo_url": "/teams-icons/team-aze.webp", + "data.country": "Mexico", + "name": "Team Aze", + "short_name": "AZE", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-globant-emerald", + "colors": { + "secondary": "#000000" + }, + "logo_url": "/teams-icons/globant-emerald.webp", + "data.country": "Argentina", + "name": "Globant Emerald", + "short_name": "GET", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "lla-l-infinity", + "country": "Costa Rica", + "logo_url": "/teams-icons/infinity.webp", + "data.country": "Costa Rica", + "name": "INFINITY", + "short_name": "INF", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/lms-l_teams.json b/data/teams/lms-l_teams.json new file mode 100644 index 000000000..22800c208 --- /dev/null +++ b/data/teams/lms-l_teams.json @@ -0,0 +1,107 @@ +{ + "name": "LMS-L Teams", + "description": "LMS-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "lms-l-psg-talon", + "logo_url": "/teams-icons/psg-talon.webp", + "data.country": "Hong Kong", + "name": "PSG Talon", + "short_name": "PSG", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lms-l-beyond-gaming", + "logo_url": "/teams-icons/beyond-gaming.webp", + "data.country": "Taiwan", + "name": "Beyond Gaming", + "short_name": "BYG", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lms-l-j-team", + "logo_url": "/teams-icons/j-team.webp", + "data.country": "TW", + "name": "J Team", + "short_name": "JT", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lms-l-flash-wolves", + "logo_url": "/teams-icons/flash-wolves.webp", + "data.country": "Taiwan", + "name": "Flash Wolves", + "short_name": "FW", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "TW", + "id": "team-cfe07a66", + "name": "ahq eSports Club", + "short_name": "AHQ", + "logo_url": "/teams-icons/ba1b897341a649a6.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lms-l-taipei-assassins", + "logo_url": "/teams-icons/taipei-assassins.webp", + "data.country": "TW", + "name": "Taipei Assassins", + "short_name": "TA", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/lpl-l_teams.json b/data/teams/lpl-l_teams.json new file mode 100644 index 000000000..65c6f6950 --- /dev/null +++ b/data/teams/lpl-l_teams.json @@ -0,0 +1,193 @@ +{ + "name": "LPL-L Teams", + "description": "LPL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "lpl-l-vici-gaming", + "logo_url": "/teams-icons/vici-gaming.webp", + "data.country": "China", + "name": "Vici Gaming", + "short_name": "VG", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-victory-five", + "logo_url": "/teams-icons/victory-five.webp", + "data.country": "China", + "name": "Victory Five", + "short_name": "V5", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-snake-esports", + "logo_url": "/teams-icons/snake-esports.webp", + "data.country": "China", + "name": "Snake Esports", + "short_name": "SS", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-suning", + "country": "China", + "logo_url": "/teams-icons/suning.webp", + "data.country": "China", + "name": "Suning", + "short_name": "SN", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-royal-never-give-up", + "logo_url": "/teams-icons/royal-never-give-up.webp", + "data.country": "China", + "name": "Royal Never Give Up", + "short_name": "RNG", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-rare-atom", + "country": "China", + "logo_url": "/teams-icons/rare-atom.webp", + "data.country": "China", + "name": "Rare Atom", + "short_name": "RA", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-funplus-phoenix", + "logo_url": "/teams-icons/funplus-phoenix.webp", + "data.country": "China", + "name": "FunPlus Phoenix", + "short_name": "FPX", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-i-may", + "logo_url": "/teams-icons/i-may.webp", + "data.country": "China", + "name": "I May", + "short_name": "IM", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-qiao-gu-reapers", + "logo_url": "/teams-icons/qiao-gu-reapers.webp", + "data.country": "CN", + "name": "Qiao Gu Reapers", + "short_name": "QGR", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-rogue-warriors", + "logo_url": "/teams-icons/rogue-warriors.webp", + "data.country": "China", + "name": "Rogue Warriors", + "short_name": "RW", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lpl-l-royal-club", + "logo_url": "/teams-icons/royal-club.webp", + "data.country": "chin", + "name": "Royal Club", + "short_name": "RYL", + "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/lpl_teams.json b/data/teams/lpl_teams.json index 299f8871b..f51f9d662 100644 --- a/data/teams/lpl_teams.json +++ b/data/teams/lpl_teams.json @@ -3,6 +3,7 @@ "description": "LPL - 2026 Season", "teams": [ { + "history": [], "id": "team-ca28739d", "city": "Shanghai", "form": [], @@ -14,7 +15,6 @@ "academy": null, "country": "CN", "finance": 7700000, - "history": [], "logo_url": "/teams-icons/edward-gaming.webp", "team_kind": "Main", "facilities": { @@ -59,6 +59,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-dc1429f2", "city": "China", "form": [], @@ -70,7 +71,6 @@ "academy": null, "country": "CN", "finance": 9200000, - "history": [], "logo_url": "/teams-icons/lgd-gaming.webp", "team_kind": "Main", "facilities": { @@ -115,6 +115,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-b777d366", "city": "China", "form": [], @@ -126,7 +127,6 @@ "academy": null, "country": "CN", "finance": 6400000, - "history": [], "logo_url": "/teams-icons/top-esports.webp", "team_kind": "Main", "facilities": { @@ -171,6 +171,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-a84cce06", "city": "China", "form": [], @@ -182,7 +183,6 @@ "academy": null, "country": "CN", "finance": 5950000, - "history": [], "logo_url": "/teams-icons/ultra-prime.webp", "team_kind": "Main", "facilities": { @@ -227,6 +227,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-3bd486ec", "city": "China", "form": [], @@ -238,7 +239,6 @@ "academy": null, "country": "CN", "finance": 6250000, - "history": [], "logo_url": "/teams-icons/anyones-legend.webp", "team_kind": "Main", "facilities": { @@ -283,6 +283,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-a324dc9d", "city": "China", "form": [], @@ -294,7 +295,6 @@ "academy": null, "country": "CN", "finance": 5900000, - "history": [], "logo_url": "/teams-icons/weibo-gaming.webp", "team_kind": "Main", "facilities": { @@ -339,6 +339,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-ec9ab429", "city": "China", "form": [], @@ -350,7 +351,6 @@ "academy": null, "country": "CN", "finance": 6200000, - "history": [], "logo_url": "/teams-icons/lng-esports.webp", "team_kind": "Main", "facilities": { @@ -395,6 +395,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-5facf88e", "city": "Xi'an", "form": [], @@ -406,7 +407,6 @@ "academy": null, "country": "CN", "finance": 9150000, - "history": [], "logo_url": "/teams-icons/team-we.webp", "team_kind": "Main", "facilities": { @@ -451,6 +451,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-dd4bc6a5", "city": "Beijing", "form": [], @@ -462,7 +463,6 @@ "academy": null, "country": "CN", "finance": 7150000, - "history": [], "logo_url": "/teams-icons/bilibili-gaming.webp", "team_kind": "Main", "facilities": { @@ -507,6 +507,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-38a818e5", "city": "China", "form": [], @@ -518,7 +519,6 @@ "academy": null, "country": "CN", "finance": 4300000, - "history": [], "logo_url": "/teams-icons/tt-gaming.webp", "team_kind": "Main", "facilities": { @@ -563,6 +563,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-d6ad5a14", "city": "China", "form": [], @@ -574,7 +575,6 @@ "academy": null, "country": "CN", "finance": 9500000, - "history": [], "logo_url": "/teams-icons/invictus-gaming.webp", "team_kind": "Main", "facilities": { @@ -619,6 +619,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-6481a859", "city": "Beijing", "form": [], @@ -630,7 +631,6 @@ "academy": null, "country": "CN", "finance": 6600000, - "history": [], "logo_url": "/teams-icons/jd-gaming.webp", "team_kind": "Main", "facilities": { @@ -675,6 +675,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-75263716", "city": "China", "form": [], @@ -686,7 +687,6 @@ "academy": null, "country": "CN", "finance": 8650000, - "history": [], "logo_url": "/teams-icons/oh-my-god.webp", "team_kind": "Main", "facilities": { @@ -731,6 +731,7 @@ "stadium_capacity": 2500 }, { + "history": [], "id": "team-0a33a07d", "city": "China", "form": [], @@ -742,7 +743,6 @@ "academy": null, "country": "CN", "finance": 5750000, - "history": [], "logo_url": "/teams-icons/ninjas-in-pyjamas.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/lplol_teams.json b/data/teams/lplol_teams.json index d436340c4..39db250d1 100644 --- a/data/teams/lplol_teams.json +++ b/data/teams/lplol_teams.json @@ -3,132 +3,132 @@ "description": "LPLOL - 2026 Season", "teams": [ { - "id": "team-cd7def0c", - "name": "Crusaders", - "short_name": "DFMA", + "history": [], + "id": "team-258078d0", + "name": "Francesinhas", + "short_name": "FRAN", "country": "", + "logo_url": "/teams-icons/8ef550ab9c73fea0.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-527a1974", - "name": "Dream Esports", - "short_name": "FEN", + "history": [], + "id": "team-273eca26", + "name": "ZeroZone Gaming", + "short_name": "YYG", "country": "", + "logo_url": "/teams-icons/9ec438c6185a93d3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-81f175c5", - "name": "Otter Side", - "short_name": "VAYO", + "history": [], + "id": "team-527a1974", + "name": "Dream Esports", + "short_name": "FEN", "country": "", + "logo_url": "/teams-icons/078a68c968b4444b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-273eca26", - "name": "ZeroZone Gaming", - "short_name": "YYG", + "history": [], + "id": "team-6b8fef2d", + "name": "GTZ Esports", + "short_name": "F8", "country": "", + "logo_url": "/teams-icons/eaac415b82b49456.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-8baac22a", - "name": "Bubliki", - "short_name": "CLO", + "history": [], + "id": "team-81f175c5", + "name": "Otter Side", + "short_name": "VAYO", "country": "", + "logo_url": "/teams-icons/23077ae2748efb91.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-6b8fef2d", - "name": "GTZ Esports", - "short_name": "F8", + "history": [], + "id": "team-8baac22a", + "name": "Bubliki", + "short_name": "CLO", "country": "", + "logo_url": "/teams-icons/3138451d5d1cb6e4.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-a0a25c12", "name": "Ronaldo Team", "short_name": "INF", "country": "", + "logo_url": "/teams-icons/c1e042633adbe950.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-258078d0", - "name": "Francesinhas", - "short_name": "FRAN", + "history": [], + "id": "team-cd7def0c", + "name": "Crusaders", + "short_name": "DFMA", "country": "", + "logo_url": "/teams-icons/2f66bd19aafe4195.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lrn_teams.json b/data/teams/lrn_teams.json index 6dce3830c..0604d7531 100644 --- a/data/teams/lrn_teams.json +++ b/data/teams/lrn_teams.json @@ -3,41 +3,7 @@ "description": "LRN - 2026 Season", "teams": [ { - "id": "lrn-fuego", - "colors": { - "primary": "#ff6d1c", - "secondary": "#310d00" - }, - "country": "", - "logo_url": "/teams-icons/fuego.webp", - "data.country": "Colombia", - "data.team_kind": "Main", - "name": "Fuego", - "short_name": "FUE", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "history": [] - }, - { - "id": "lrn-polar-squad-esport", - "logo_url": "/teams-icons/polar-squad-esport.webp", - "data.country": "MX", - "name": "Polar Squad Esport", - "short_name": "PLS", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { + "history": [], "id": "lrn-ncg-esports", "colors": { "secondary": "#ff0002" @@ -50,16 +16,16 @@ "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lrn-sdm-tigres", "colors": { "primary": "#ffb400", "secondary": "#2402ff" }, - "country": "", + "country": "MX", "logo_url": "/teams-icons/sdm-tigres.webp", "data.country": "MX", "name": "SDM Tigres", @@ -67,12 +33,29 @@ "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lrn-zeu5-esport", + "history": [], + "id": "lrn-polar-squad-esport", + "logo_url": "/teams-icons/polar-squad-esport.webp", + "data.country": "MX", + "name": "Polar Squad Esport", + "short_name": "PLS", "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lrn-zeu5-esport", + "country": "Colombia", "logo_url": "/teams-icons/zeu5-esport.webp", "data.country": "Colombia", "name": "Zeu5 Esport", @@ -81,47 +64,65 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lrn-lyon-academy", + "history": [], + "id": "lrn-g3v-e-sports", "colors": { - "primary": "#deac7f" + "secondary": "#792ddb" }, - "logo_url": "/teams-icons/lyon-academy.webp", - "data.country": "Mexico", - "name": "LYON Academy", - "short_name": "LYON", - "country": "", + "country": "Colombia", + "logo_url": "/teams-icons/g3v-e-sports.webp", + "data.country": "Colombia", + "name": "G3V E-sports", + "short_name": "G3V", "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lrn-g3v-e-sports", + "history": [], + "id": "lrn-fuego", "colors": { - "secondary": "#792ddb" + "primary": "#ff6d1c", + "secondary": "#310d00" }, - "country": "", - "logo_url": "/teams-icons/g3v-e-sports.webp", + "country": "Colombia", + "logo_url": "/teams-icons/fuego.webp", "data.country": "Colombia", - "name": "G3V E-sports", - "short_name": "G3V", + "data.team_kind": "Main", + "name": "Fuego", + "short_name": "FUE", "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lrn-icon-esports", + "history": [], + "id": "lrn-lyon-academy", + "colors": { + "primary": "#deac7f" + }, + "logo_url": "/teams-icons/lyon-academy.webp", + "data.country": "Mexico", + "name": "LYON Academy", + "short_name": "LYON", "country": "", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "lrn-icon-esports", + "country": "MX", "logo_url": "/teams-icons/icon-esports.webp", "data.country": "MX", "name": "Icon Esports", @@ -130,11 +131,10 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/lrs_teams.json b/data/teams/lrs_teams.json index 456ed3eec..170a1505b 100644 --- a/data/teams/lrs_teams.json +++ b/data/teams/lrs_teams.json @@ -3,28 +3,30 @@ "description": "LRS - 2026 Season", "teams": [ { - "id": "lrs-9z-globant", + "history": [], + "id": "lrs-volticons", "colors": { - "primary": "#ffffff" + "primary": "#7f4fb3", + "secondary": "#4b3593" }, - "country": "", - "logo_url": "/teams-icons/9z-globant.webp", - "data.country": "AR", - "name": "9z Globant", - "short_name": "9ZG", + "country": "UY", + "logo_url": "/teams-icons/volticons.webp", + "data.country": "UY", + "name": "Volticons", + "short_name": "VTC", "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lrs-maze-gaming", "colors": { "primary": "#101211", "secondary": "#20982d" }, - "country": "", + "country": "CL", "logo_url": "/teams-icons/maze-gaming.webp", "data.country": "CL", "name": "Maze Gaming", @@ -32,49 +34,31 @@ "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "lrs-seven-dark", + "history": [], + "id": "lrs-9z-globant", "colors": { - "primary": "#000036", - "secondary": "#0001dd" + "primary": "#ffffff" }, - "country": "", - "logo_url": "/teams-icons/seven-dark.webp", - "data.country": "CL", - "name": "Seven Dark", - "short_name": "7D", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "history": [] - }, - { - "id": "lrs-the-new-kings", - "country": "", - "logo_url": "/teams-icons/the-new-kings.webp", + "country": "AR", + "logo_url": "/teams-icons/9z-globant.webp", "data.country": "AR", - "name": "The New Kings", - "short_name": "TNK", + "name": "9z Globant", + "short_name": "9ZG", "city": "", "stadium_name": "", "stadium_capacity": 0, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lrs-tu-pap-esports", "colors": { "secondary": "#fc7605" }, - "country": "", + "country": "PE", "logo_url": "/teams-icons/tu-pap-esports.webp", "data.country": "PE", "name": "Tu Papá Esports", @@ -82,29 +66,12 @@ "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] - }, - { - "id": "lrs-volticons", - "colors": { - "primary": "#7f4fb3", - "secondary": "#4b3593" - }, - "country": "", - "logo_url": "/teams-icons/volticons.webp", - "data.country": "UY", - "name": "Volticons", - "short_name": "VTC", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lrs-golden-lions", - "country": "", + "country": "Peru", "logo_url": "/teams-icons/golden-lions.webp", "data.country": "Peru", "name": "Golden Lions", @@ -113,13 +80,30 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "lrs-the-new-kings", + "country": "AR", + "logo_url": "/teams-icons/the-new-kings.webp", + "data.country": "AR", + "name": "The New Kings", + "short_name": "TNK", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "lrs-malvinas-gaming", "colors": { "secondary": "#129ebf" @@ -132,8 +116,24 @@ "city": "", "stadium_name": "", "stadium_capacity": 0, - "facilities": {}, - "history": [] + "facilities": {} + }, + { + "history": [], + "id": "lrs-seven-dark", + "colors": { + "primary": "#000036", + "secondary": "#0001dd" + }, + "country": "CL", + "logo_url": "/teams-icons/seven-dark.webp", + "data.country": "CL", + "name": "Seven Dark", + "short_name": "7D", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/na-lcs-l_teams.json b/data/teams/na-lcs-l_teams.json new file mode 100644 index 000000000..dbb7f6b16 --- /dev/null +++ b/data/teams/na-lcs-l_teams.json @@ -0,0 +1,119 @@ +{ + "name": "NA-LCS-L Teams", + "description": "NA-LCS-L - 2026 Season", + "teams": [ + { + "history": [], + "country": "US", + "id": "team-13309c0c", + "name": "Golden Guardians", + "short_name": "GG", + "logo_url": "/teams-icons/92e94e7bf6013077.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "US", + "id": "team-2c18b934", + "name": "Evil Geniuses", + "short_name": "EG", + "logo_url": "/teams-icons/c1860523003ac52b.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "team-63a9b81c", + "name": "Immortals", + "short_name": "INM", + "country": "", + "logo_url": "/teams-icons/d4f9080da6c94736.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "US", + "id": "team-74cc8702", + "name": "Counter Logic Gaming", + "short_name": "CLG", + "logo_url": "/teams-icons/cb76d70bcc912f38.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "team-cbe27d81", + "name": "NRG", + "short_name": "NRGe", + "country": "", + "logo_url": "/teams-icons/f6653c51e00e7cf2.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "id": "na-lcs-l-team-solomid", + "country": "USA", + "logo_url": "/teams-icons/team-solomid.webp", + "data.country": "USA", + "name": "Team SoloMid", + "short_name": "TSM", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "US", + "id": "team-f43a120f", + "name": "100 Thieves", + "short_name": "100T", + "logo_url": "/teams-icons/f90640ef911cb488.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/nacl-l_teams.json b/data/teams/nacl-l_teams.json new file mode 100644 index 000000000..ba3f691e9 --- /dev/null +++ b/data/teams/nacl-l_teams.json @@ -0,0 +1,38 @@ +{ + "name": "NACL-L Teams", + "description": "NACL-L - 2026 Season", + "teams": [ + { + "history": [], + "id": "team-039b2c89", + "name": "Apex MI", + "short_name": "APE", + "country": "", + "logo_url": "/teams-icons/18c28c6c56e39413.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + }, + { + "history": [], + "country": "US", + "id": "team-4da13a51", + "name": "NRG", + "short_name": "NRGes", + "logo_url": "/teams-icons/0faac4a6f3386fe0.png", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} + } + ] +} \ No newline at end of file diff --git a/data/teams/nacl_teams.json b/data/teams/nacl_teams.json index 3f732a73e..309c95863 100644 --- a/data/teams/nacl_teams.json +++ b/data/teams/nacl_teams.json @@ -3,164 +3,132 @@ "description": "NACL - 2026 Season", "teams": [ { - "id": "team-99f3b280", - "name": "Blue Otter", - "short_name": "BLO", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-ba8042f7", - "name": "Citadel Gaming", - "short_name": "CIT", + "history": [], + "id": "team-10540476", + "name": "Dorado Gaming", + "short_name": "DOR", "country": "", + "logo_url": "/teams-icons/946fb00eb8af3934.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-039b2c89", - "name": "Apex MI", - "short_name": "APE", + "history": [], + "id": "team-31b92c52", + "name": "Conviction", + "short_name": "CON", "country": "", + "logo_url": "/teams-icons/61bcc3217e53d122.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-cbe27d81", - "name": "NRG", - "short_name": "NRG", + "history": [], + "id": "team-73a32fd5", + "name": "Maryville University", + "short_name": "MARY", "country": "", + "logo_url": "/teams-icons/92b3f2c0a03877b1.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-10540476", - "name": "Dorado Gaming", - "short_name": "DOR", + "history": [], + "id": "team-99f3b280", + "name": "Blue Otter", + "short_name": "BLO", "country": "", + "logo_url": "/teams-icons/89d02998bfbaf895.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-f1da75bb", - "name": "Winthrop University", - "short_name": "WIU", + "history": [], + "id": "team-ba8042f7", + "name": "Citadel Gaming", + "short_name": "CIT", "country": "", + "logo_url": "/teams-icons/f37091c677aa3862.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-e21b9ba3", "name": "CCG Esports", "short_name": "CCG", "country": "", + "logo_url": "/teams-icons/5762eac4fd5f5f3d.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-31b92c52", - "name": "Conviction", - "short_name": "CON", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "facilities": {}, - "history": [] - }, - { - "id": "team-73a32fd5", - "name": "Maryville University", - "short_name": "MARY", + "history": [], + "id": "team-f1da75bb", + "name": "Winthrop University", + "short_name": "WIU", "country": "", + "logo_url": "/teams-icons/295f267b67e293d3.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-fa242f1f", "name": "Supernova", "short_name": "SUP", "country": "", + "logo_url": "/teams-icons/fc61120d2f3cf53d.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/nlc_teams.json b/data/teams/nlc_teams.json index 14dffed7f..5b6e20553 100644 --- a/data/teams/nlc_teams.json +++ b/data/teams/nlc_teams.json @@ -3,164 +3,164 @@ "description": "NLC - 2026 Season", "teams": [ { - "id": "team-5ef306d4", - "name": "Artic Pandas", - "short_name": "APA", + "history": [], + "id": "team-1cee59ca", + "name": "Bulldog Esports", + "short_name": "BULL", "country": "", + "logo_url": "/teams-icons/62146a47ffb585a7.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-1cee59ca", - "name": "Bulldog Esports", - "short_name": "BULL", - "country": "", + "history": [], + "country": "PL", + "id": "team-34ca921d", + "name": "4 Swines & A Bum", + "short_name": "4SW", + "logo_url": "/teams-icons/2ae02e92dc455489.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-78aca3aa", - "name": "Deer Gaming", - "short_name": "DEG", - "country": "", + "history": [], + "country": "GB", + "id": "team-390ad3b4", + "name": "Verdant", + "short_name": "VER", + "logo_url": "/teams-icons/6f78541cdb72ebdc.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-ee2bd46c", - "name": "DMG Esports", - "short_name": "DMG", - "country": "", + "history": [], + "country": "FI", + "id": "team-5ef306d4", + "name": "Arctic Pandas", + "short_name": "APA", + "logo_url": "/teams-icons/a87a2ffc3dc9bcba.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-390ad3b4", - "name": "Verdant", - "short_name": "VER", - "country": "", + "history": [], + "country": "FI", + "id": "team-78aca3aa", + "name": "Deer Gaming", + "short_name": "DEG", + "logo_url": "/teams-icons/8120836cbb9e0b71.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-9114115f", - "name": "LEO", - "short_name": "LEO", - "country": "", + "history": [], + "country": "GB", + "id": "team-794821d8", + "name": "Ruddy Corporation", + "short_name": "RUD", + "logo_url": "/teams-icons/cf4497fd616a9b4b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-cc3cd5f0", - "name": "Lundqvist Lightside", - "short_name": "LUN", - "country": "", + "history": [], + "country": "SE", + "id": "team-9114115f", + "name": "Lund Esports Organization", + "short_name": "LEO", + "logo_url": "/teams-icons/8da6b201321611e0.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-794821d8", - "name": "Ruddy Corporation", - "short_name": "RUD", - "country": "", + "history": [], + "country": "SE", + "id": "team-cc3cd5f0", + "name": "Lundqvist Lightside", + "short_name": "LUN", + "logo_url": "/teams-icons/3918fcf5a2ecdfa7.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-34ca921d", - "name": "4 Swines & A Bum", - "short_name": "4SW", - "country": "", + "history": [], + "country": "NL", + "id": "team-e8c7e277", + "name": "La BOMBAS", + "short_name": "BOMB", + "logo_url": "/teams-icons/85cb42980f650111.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-e8c7e277", - "name": "La BOMBAS", - "short_name": "BOMB", - "country": "", + "history": [], + "country": "NO", + "id": "team-ee2bd46c", + "name": "DMG Esports", + "short_name": "DMG", + "logo_url": "/teams-icons/bb3a882e2ac1cdcc.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/pcs_teams.json b/data/teams/pcs_teams.json index 0a239260f..ea5beae5a 100644 --- a/data/teams/pcs_teams.json +++ b/data/teams/pcs_teams.json @@ -3,164 +3,164 @@ "description": "PCS - 2026 Season", "teams": [ { - "id": "team-33bed81a", - "name": "Viper Night Raider", - "short_name": "VIP", + "history": [], + "id": "team-0df06611", + "name": "SillySilly Gaming", + "short_name": "SSG", "country": "", + "logo_url": "/teams-icons/14020c6e185d7c3f.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-c4a0b95f", - "name": "Xu Ji Basalt", - "short_name": "XJB", - "country": "", + "history": [], + "country": "Hong Kong", + "id": "team-33bed81a", + "name": "Viper Night Raider", + "short_name": "VIP", + "logo_url": "/teams-icons/d9fdec24430e41a5.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-3696f88a", "name": "Ground Zero Academy", "short_name": "ZERO", "country": "", + "logo_url": "/teams-icons/3ea80ef528588243.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-74d3c7fe", - "name": "One Round Specialists", - "short_name": "ONS", + "history": [], + "id": "team-4b825a93", + "name": "Shadow Keepers", + "short_name": "SHA", "country": "", + "logo_url": "/teams-icons/dde8e201c7c6e41b.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-4b825a93", - "name": "Shadow Keepers", - "short_name": "SHA", + "history": [], + "id": "team-74d3c7fe", + "name": "One Round Specialists", + "short_name": "ONS", "country": "", + "logo_url": "/teams-icons/fb36dc6ab6064b0e.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-0df06611", - "name": "SillySilly Gaming", - "short_name": "SSG", + "history": [], + "id": "team-86604284", + "name": "Equinox Core", + "short_name": "EQU", "country": "", + "logo_url": "/teams-icons/ecf85b0ba667642d.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-9c289ca5", - "name": "wangting", - "short_name": "WAN", + "history": [], + "id": "team-94671303", + "name": "CFO Academy", + "short_name": "CFOA", "country": "", + "logo_url": "/teams-icons/5e0d6efe89760701.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-94671303", - "name": "CFO Academy", - "short_name": "CFOA", + "history": [], + "id": "team-9c289ca5", + "name": "wangting", + "short_name": "WAN", "country": "", + "logo_url": "/teams-icons/f6c2edddb3fa4909.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-f8c7a360", - "name": "Frank Esports", - "short_name": "FESP", + "history": [], + "id": "team-c4a0b95f", + "name": "Xu Ji Basalt", + "short_name": "XJB", "country": "", + "logo_url": "/teams-icons/c68f790e4dbc53b6.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-86604284", - "name": "Equinox Core", - "short_name": "EQU", + "history": [], + "id": "team-f8c7a360", + "name": "Frank Esports", + "short_name": "FESP", "country": "", + "logo_url": "/teams-icons/4d81e4b719330706.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/prime_league_teams.json b/data/teams/prime_league_teams.json new file mode 100644 index 000000000..908d44355 --- /dev/null +++ b/data/teams/prime_league_teams.json @@ -0,0 +1,566 @@ +{ + "name": "Prime League Teams", + "description": "Prime League - 2026 Season", + "teams": [ + { + "id": "team-1cba5c67", + "city": "", + "form": [], + "name": "A One Man Army", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2377650, + "history": [], + "logo_url": "/teams-icons/a-one-man-army.webp", + "team_kind": "Main", + "arena_name": "A One Man Army Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 229, + "short_name": "AOMA", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1188825, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 475530, + "financial_ledger": [], + "scrim_reputation": 22, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-069c707b", + "city": "", + "form": [], + "name": "G2 Nord", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2134489, + "history": [], + "logo_url": "/teams-icons/g2-nord.webp", + "team_kind": "Main", + "arena_name": "G2 Nord Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 377, + "short_name": "G2 NORD", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1067244, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 426898, + "financial_ledger": [], + "scrim_reputation": 37, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-a72b6e41", + "city": "", + "form": [], + "name": "E WIE EINFACH E-SPORTS", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2767428, + "history": [], + "logo_url": "/teams-icons/e-wie-einfach-e-sports.webp", + "team_kind": "Main", + "arena_name": "E WIE EINFACH E-SPORTS Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 292, + "short_name": "EWEE", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1383714, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 553486, + "financial_ledger": [], + "scrim_reputation": 29, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-e48c23c9", + "city": "", + "form": [], + "name": "Unicorns of Love Sexy Edition", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2777674, + "history": [], + "logo_url": "/teams-icons/unicorns-of-love-sexy-edition.webp", + "team_kind": "Main", + "arena_name": "Unicorns of Love Sexy Edition Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 409, + "short_name": "UOLSE", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1388837, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 555535, + "financial_ledger": [], + "scrim_reputation": 40, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-3cef0cfa", + "city": "", + "form": [], + "name": "Kaufland Hangry Knights", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2919860, + "history": [], + "logo_url": "/teams-icons/kaufland-hangry-knights.webp", + "team_kind": "Main", + "arena_name": "Kaufland Hangry Knights Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 358, + "short_name": "KHK", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1459930, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 583972, + "financial_ledger": [], + "scrim_reputation": 35, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-0be37b7e", + "city": "", + "form": [], + "name": "Berlin International Gaming", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 1728815, + "history": [], + "logo_url": "/teams-icons/berlin-international-gaming.webp", + "team_kind": "Main", + "arena_name": "Berlin International Gaming Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 447, + "short_name": "BIG", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 864408, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 345763, + "financial_ledger": [], + "scrim_reputation": 44, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-f3b86137", + "city": "", + "form": [], + "name": "ROSSMANN Centaurs", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2888435, + "history": [], + "logo_url": "/teams-icons/rossmann-centaurs.webp", + "team_kind": "Main", + "arena_name": "ROSSMANN Centaurs Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 304, + "short_name": "RC", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1444218, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 577687, + "financial_ledger": [], + "scrim_reputation": 30, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-5dc37618", + "city": "", + "form": [], + "name": "Eintracht Frankfurt", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2343854, + "history": [], + "logo_url": "/teams-icons/eintracht-frankfurt.webp", + "team_kind": "Main", + "arena_name": "Eintracht Frankfurt Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 310, + "short_name": "EF", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1171927, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 468771, + "financial_ledger": [], + "scrim_reputation": 31, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-bec332f5", + "city": "", + "form": [], + "name": "Eintracht Spandau", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 2611524, + "history": [], + "logo_url": "/teams-icons/eintracht-spandau.webp", + "team_kind": "Main", + "arena_name": "Eintracht Spandau Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 296, + "short_name": "ES", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1305762, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 522305, + "financial_ledger": [], + "scrim_reputation": 29, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + }, + { + "id": "team-1347e217", + "city": "", + "form": [], + "name": "Team Orange Gaming", + "colors": { + "primary": "#000000", + "secondary": "#FFFFFF" + }, + "academy": null, + "country": "DE", + "finance": 3016084, + "history": [], + "logo_url": "/teams-icons/team-orange-gaming.webp", + "team_kind": "Main", + "arena_name": "Team Orange Gaming Arena", + "facilities": { + "medical": 1, + "scouting": 1, + "training": 1, + "main_hub_level": 1, + "scrims_room_level": 0, + "scouting_lab_level": 0, + "analysis_room_level": 0, + "bootcamp_area_level": 0, + "content_studio_level": 0, + "recovery_suite_level": 0 + }, + "manager_id": null, + "reputation": 347, + "short_name": "TOG", + "lol_tactics": { + "fight_plan": "FrontToBack", + "strong_side": "Top", + "jungle_style": "Enabler", + "draft_strategy": "Balanced", + "support_roaming": "Lane" + }, + "sponsorship": null, + "wage_budget": 1508042, + "scrim_results": [], + "season_income": 0, + "arena_capacity": 1500, + "parent_team_id": null, + "training_focus": "Scrims", + "academy_team_id": null, + "season_expenses": 0, + "training_groups": [], + "transfer_budget": 603217, + "financial_ledger": [], + "scrim_reputation": 34, + "academy_lifecycle": null, + "training_schedule": "Balanced", + "scrim_weekly_slots": 5, + "training_intensity": "Medium" + } + ] +} \ No newline at end of file diff --git a/data/erls/teams/prm-l_teams.json b/data/teams/prm-l_teams.json similarity index 100% rename from data/erls/teams/prm-l_teams.json rename to data/teams/prm-l_teams.json index d305dbd28..3ad90eef3 100644 --- a/data/erls/teams/prm-l_teams.json +++ b/data/teams/prm-l_teams.json @@ -3,6 +3,7 @@ "description": "PRM-L - 2026 Season", "teams": [ { + "history": [], "id": "team-1cba5c67", "city": "", "form": [], @@ -14,7 +15,6 @@ "academy": null, "country": "DE", "finance": 2377650, - "history": [], "logo_url": "/teams-icons/a-one-man-army.webp", "team_kind": "Main", "facilities": { diff --git a/data/teams/prm_teams.json b/data/teams/prm_teams.json index bfcfbfa99..855f84bc8 100644 --- a/data/teams/prm_teams.json +++ b/data/teams/prm_teams.json @@ -3,21 +3,20 @@ "description": "PRM - 2026 Season", "teams": [ { - "id": "team-069c707b", + "history": [], + "id": "team-e48c23c9", "city": "", "form": [], - "name": "G2 Nord", + "name": "Unicorns of Love Sexy Edition", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2134489, - "history": [], - "logo_url": null, + "country": "DE", + "finance": 2777674, + "logo_url": "/teams-icons/unicorns-of-love-sexy-edition.webp", "team_kind": "Main", - "arena_name": "G2 Nord Arena", "facilities": { "medical": 1, "scouting": 1, @@ -31,8 +30,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 377, - "short_name": "G2 NORD", + "reputation": 409, + "short_name": "UOLSE", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -41,41 +40,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1067244, + "wage_budget": 1388837, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 426898, + "transfer_budget": 555535, "financial_ledger": [], - "scrim_reputation": 37, + "scrim_reputation": 40, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "G2 Nord Arena", + "stadium_name": "Unicorns of Love Sexy Edition Arena", "stadium_capacity": 1500 }, { - "id": "team-a72b6e41", + "history": [], + "id": "team-bec332f5", "city": "", "form": [], - "name": "E WIE EINFACH E-SPORTS", + "name": "Eintracht Spandau", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2767428, - "history": [], - "logo_url": "/teams-icons/e-wie-einfach-e-sports.webp", + "country": "DE", + "finance": 2611524, + "logo_url": "/teams-icons/eintracht-spandau.webp", "team_kind": "Main", - "arena_name": "E WIE EINFACH E-SPORTS Arena", "facilities": { "medical": 1, "scouting": 1, @@ -89,8 +86,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 292, - "short_name": "EWEE", + "reputation": 296, + "short_name": "ES", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -99,41 +96,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1383714, + "wage_budget": 1305762, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 553486, + "transfer_budget": 522305, "financial_ledger": [], "scrim_reputation": 29, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "E WIE EINFACH E-SPORTS Arena", + "stadium_name": "Eintracht Spandau Arena", "stadium_capacity": 1500 }, { - "id": "team-e48c23c9", + "history": [], + "id": "team-a72b6e41", "city": "", "form": [], - "name": "Unicorns of Love Sexy Edition", + "name": "E WIE EINFACH E-SPORTS", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2777674, - "history": [], - "logo_url": "/teams-icons/unicorns-of-love-sexy-edition.webp", + "country": "DE", + "finance": 2767428, + "logo_url": "/teams-icons/e-wie-einfach-e-sports.webp", "team_kind": "Main", - "arena_name": "Unicorns of Love Sexy Edition Arena", "facilities": { "medical": 1, "scouting": 1, @@ -147,8 +142,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 409, - "short_name": "UOLSE", + "reputation": 292, + "short_name": "EWEE", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -157,41 +152,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1388837, + "wage_budget": 1383714, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 555535, + "transfer_budget": 553486, "financial_ledger": [], - "scrim_reputation": 40, + "scrim_reputation": 29, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Unicorns of Love Sexy Edition Arena", + "stadium_name": "E WIE EINFACH E-SPORTS Arena", "stadium_capacity": 1500 }, { - "id": "team-3cef0cfa", + "history": [], + "id": "team-1347e217", "city": "", "form": [], - "name": "Kaufland Hangry Knights", + "name": "Team Orange Gaming", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2919860, - "history": [], - "logo_url": "/teams-icons/kaufland-hangry-knights.webp", + "country": "DE", + "finance": 3016084, + "logo_url": "/teams-icons/team-orange-gaming.webp", "team_kind": "Main", - "arena_name": "Kaufland Hangry Knights Arena", "facilities": { "medical": 1, "scouting": 1, @@ -205,8 +198,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 358, - "short_name": "KHK", + "reputation": 347, + "short_name": "TOG", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -215,41 +208,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1459930, + "wage_budget": 1508042, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 583972, + "transfer_budget": 603217, "financial_ledger": [], - "scrim_reputation": 35, + "scrim_reputation": 34, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Kaufland Hangry Knights Arena", + "stadium_name": "Team Orange Gaming Arena", "stadium_capacity": 1500 }, { - "id": "team-0be37b7e", + "history": [], + "id": "team-069c707b", "city": "", "form": [], - "name": "Berlin International Gaming", + "name": "G2 Nord", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 1728815, - "history": [], - "logo_url": null, + "country": "DE", + "finance": 2134489, + "logo_url": "/teams-icons/g2-nord.webp", "team_kind": "Main", - "arena_name": "Berlin International Gaming Arena", "facilities": { "medical": 1, "scouting": 1, @@ -263,8 +254,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 447, - "short_name": "BIG", + "reputation": 377, + "short_name": "G2 NORD", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -273,41 +264,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 864408, + "wage_budget": 1067244, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 345763, + "transfer_budget": 426898, "financial_ledger": [], - "scrim_reputation": 44, + "scrim_reputation": 37, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Berlin International Gaming Arena", + "stadium_name": "G2 Nord Arena", "stadium_capacity": 1500 }, { - "id": "team-f3b86137", + "history": [], + "id": "team-5dc37618", "city": "", "form": [], - "name": "ROSSMANN Centaurs", + "name": "Eintracht Frankfurt", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2888435, - "history": [], - "logo_url": "/teams-icons/rossmann-centaurs.webp", + "country": "DE", + "finance": 2343854, + "logo_url": "/teams-icons/eintracht-frankfurt.webp", "team_kind": "Main", - "arena_name": "ROSSMANN Centaurs Arena", "facilities": { "medical": 1, "scouting": 1, @@ -321,8 +310,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 304, - "short_name": "RC", + "reputation": 310, + "short_name": "EF", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -331,41 +320,55 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1444218, + "wage_budget": 1171927, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 577687, + "transfer_budget": 468771, "financial_ledger": [], - "scrim_reputation": 30, + "scrim_reputation": 31, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "ROSSMANN Centaurs Arena", + "stadium_name": "Eintracht Frankfurt Arena", "stadium_capacity": 1500 }, { - "id": "team-5dc37618", + "history": [], + "city": "Stuttgart", + "colors": { + "primary": "#ffffff", + "secondary": "#d30723" + }, + "country": "DE", + "id": "team-8c9a2d4b", + "name": "VfB Stuttgart eSports", + "short_name": "VFB", + "logo_url": "/teams-icons/b695ec10e517f343.webp", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} + }, + { + "history": [], + "id": "team-0be37b7e", "city": "", "form": [], - "name": "Eintracht Frankfurt", + "name": "Berlin International Gaming", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2343854, - "history": [], - "logo_url": "/teams-icons/eintracht-frankfurt.webp", + "country": "DE", + "finance": 1728815, + "logo_url": "/teams-icons/berlin-international-gaming.webp", "team_kind": "Main", - "arena_name": "Eintracht Frankfurt Arena", "facilities": { "medical": 1, "scouting": 1, @@ -379,8 +382,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 310, - "short_name": "EF", + "reputation": 447, + "short_name": "BIG", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -389,41 +392,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1171927, + "wage_budget": 864408, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 468771, + "transfer_budget": 345763, "financial_ledger": [], - "scrim_reputation": 31, + "scrim_reputation": 44, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Eintracht Frankfurt Arena", + "stadium_name": "Berlin International Gaming Arena", "stadium_capacity": 1500 }, { - "id": "team-bec332f5", + "history": [], + "id": "team-f3b86137", "city": "", "form": [], - "name": "Eintracht Spandau", + "name": "ROSSMANN Centaurs", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 2611524, - "history": [], - "logo_url": "/teams-icons/eintracht-spandau.webp", + "country": "DE", + "finance": 2888435, + "logo_url": "/teams-icons/rossmann-centaurs.webp", "team_kind": "Main", - "arena_name": "Eintracht Spandau Arena", "facilities": { "medical": 1, "scouting": 1, @@ -437,8 +438,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 296, - "short_name": "ES", + "reputation": 304, + "short_name": "RC", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -447,41 +448,39 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1305762, + "wage_budget": 1444218, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 522305, + "transfer_budget": 577687, "financial_ledger": [], - "scrim_reputation": 29, + "scrim_reputation": 30, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Eintracht Spandau Arena", + "stadium_name": "ROSSMANN Centaurs Arena", "stadium_capacity": 1500 }, { - "id": "team-1347e217", + "history": [], + "id": "team-3cef0cfa", "city": "", "form": [], - "name": "Team Orange Gaming", + "name": "Kaufland Hangry Knights", "colors": { "primary": "#000000", "secondary": "#FFFFFF" }, "academy": null, - "country": "", - "finance": 3016084, - "history": [], - "logo_url": "/teams-icons/team-orange-gaming.webp", + "country": "DE", + "finance": 2919860, + "logo_url": "/teams-icons/kaufland-hangry-knights.webp", "team_kind": "Main", - "arena_name": "Team Orange Gaming Arena", "facilities": { "medical": 1, "scouting": 1, @@ -495,8 +494,8 @@ "recovery_suite_level": 0 }, "manager_id": null, - "reputation": 347, - "short_name": "TOG", + "reputation": 358, + "short_name": "KHK", "lol_tactics": { "fight_plan": "FrontToBack", "strong_side": "Top", @@ -505,40 +504,23 @@ "support_roaming": "Lane" }, "sponsorship": null, - "wage_budget": 1508042, + "wage_budget": 1459930, "scrim_results": [], "season_income": 0, - "arena_capacity": 1500, "parent_team_id": null, "training_focus": "Scrims", "academy_team_id": null, "season_expenses": 0, "training_groups": [], - "transfer_budget": 603217, + "transfer_budget": 583972, "financial_ledger": [], - "scrim_reputation": 34, + "scrim_reputation": 35, "academy_lifecycle": null, "training_schedule": "Balanced", "scrim_weekly_slots": 5, "training_intensity": "Medium", - "stadium_name": "Team Orange Gaming Arena", + "stadium_name": "Kaufland Hangry Knights Arena", "stadium_capacity": 1500 - }, - { - "city": "Stuttgart", - "colors": { - "primary": "#ffffff", - "secondary": "#d30723" - }, - "country": "", - "id": "team-8c9a2d4b", - "name": "VfB Stuttgart eSports", - "short_name": "VFB", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, - "facilities": {}, - "history": [] } ] } \ No newline at end of file diff --git a/data/teams/rl_teams.json b/data/teams/rl_teams.json index 033b29e21..7aad58d6d 100644 --- a/data/teams/rl_teams.json +++ b/data/teams/rl_teams.json @@ -3,132 +3,132 @@ "description": "RL - 2026 Season", "teams": [ { - "id": "team-76542a8b", - "name": "Bomba Team", - "short_name": "BOM", - "country": "", + "history": [], + "country": "PL", + "id": "team-239dd021", + "name": "Anonymo Esports", + "short_name": "ANO", + "logo_url": "/teams-icons/35bbba310d4b846a.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-ff1df943", - "name": "devils.one inStreamly", - "short_name": "DEV", - "country": "", + "history": [], + "country": "PL", + "id": "team-76542a8b", + "name": "Bomba Team", + "short_name": "BOM", + "logo_url": "/teams-icons/ec3dcfccc01af568.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "PL", "id": "team-83efd7e9", "name": "DOCISK", "short_name": "DOC", - "country": "", + "logo_url": "/teams-icons/a5414c2fc6aac530.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-239dd021", - "name": "Anonymo Esports", - "short_name": "ANO", - "country": "", + "history": [], + "country": "CZ", + "id": "team-c3747fd1", + "name": "GLORE", + "short_name": "GLO", + "logo_url": "/teams-icons/9de05fc6e083a23f.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "PL", "id": "team-c5d360c2", "name": "Forsaken", "short_name": "FOR", - "country": "", + "logo_url": "/teams-icons/b05cb37a731d9d05.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-c3747fd1", - "name": "GLORE", - "short_name": "GLO", - "country": "", - "city": "", - "stadium_name": "", - "stadium_capacity": 0, - "logo_url": null, + "history": [], "colors": { - "primary": "#10b981", + "primary": "#132e23", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "country": "PL", + "id": "team-d772ad68", + "name": "Barcząca Esports", + "short_name": "BAÇ", + "logo_url": "/teams-icons/abc2fa680fa20678.webp", + "city": "", + "stadium_name": "", + "stadium_capacity": 0, + "facilities": {} }, { + "history": [], + "country": "PL", "id": "team-efe1b300", "name": "LODIS", "short_name": "LOD", - "country": "", + "logo_url": "/teams-icons/fcf2752d050454da.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "colors": { - "primary": "#132e23", - "secondary": "#ffffff" - }, - "id": "team-d772ad68", - "name": "Barcząca Esports", - "short_name": "BAÇ", - "country": "", + "history": [], + "country": "PL", + "id": "team-ff1df943", + "name": "devils.one inStreamly", + "short_name": "DEV", + "logo_url": "/teams-icons/2f35cd23b54e7e81.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, - "facilities": {}, - "history": [] + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + }, + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/rol_teams.json b/data/teams/rol_teams.json index a18ba371a..a0a103227 100644 --- a/data/teams/rol_teams.json +++ b/data/teams/rol_teams.json @@ -3,132 +3,132 @@ "description": "ROL - 2026 Season", "teams": [ { - "id": "team-45502488", - "name": "Dynasty", - "short_name": "DYN", - "country": "", + "history": [], + "country": "BE", + "id": "team-3088debc", + "name": "Frites Esports Club", + "short_name": "FEC", + "logo_url": "/teams-icons/ac9dd1278a6d0a31.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-3088debc", - "name": "Frites Esports Club", - "short_name": "FEC", + "history": [], + "id": "team-3738562e", + "name": "Once Upon A Team", + "short_name": "OUT", "country": "", + "logo_url": "/teams-icons/43aefc9bad50b526.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-a0e8ccac", - "name": "The Bandits", - "short_name": "THE", - "country": "", + "history": [], + "country": "NL", + "id": "team-45502488", + "name": "Dynasty", + "short_name": "DYN", + "logo_url": "/teams-icons/bd45156c04da2eea.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "NL", "id": "team-897210b6", "name": "mCon esports", "short_name": "MCON", - "country": "", + "logo_url": "/teams-icons/bed3d5ac51fa7b8e.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "id": "team-96e42b9a", "name": "ZennIT", "short_name": "ZEN", "country": "", + "logo_url": "/teams-icons/0723c56734a57868.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-e6e445de", - "name": "Myth Esports", - "short_name": "MYTH", + "history": [], + "id": "team-a0e8ccac", + "name": "The Bandits", + "short_name": "THE", "country": "", + "logo_url": "/teams-icons/6120c0f44262176f.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-3738562e", - "name": "Once Upon a Team", - "short_name": "OUT", + "history": [], + "id": "team-e6e445de", + "name": "Myth Esports", + "short_name": "MYTH", "country": "", + "logo_url": "/teams-icons/f34cb54f8fd6cd25.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], "colors": { "primary": "#e66100", "secondary": "#f8e45c" }, + "country": "NL", "id": "team-f9cfb0f2", "name": "Senshi eSports", "short_name": "SEES", - "country": "", + "logo_url": "/teams-icons/22ace3c7f1b8262f.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/data/teams/tcl_teams.json b/data/teams/tcl_teams.json index 5547f285c..2afb5dfdb 100644 --- a/data/teams/tcl_teams.json +++ b/data/teams/tcl_teams.json @@ -3,9 +3,10 @@ "description": "TCL - 2026 Season", "teams": [ { + "history": [], "id": "tcl-dark-passage", "city": "Istanbul", - "country": "", + "country": "TR", "finance": 150000, "logo_url": "/teams-icons/dark-passage.webp", "facilities": { @@ -32,15 +33,15 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } }, { + "history": [], "id": "tcl-boostgate-esports", "city": "Istanbul", - "country": "", + "country": "TR", "finance": 150000, "logo_url": "/teams-icons/boostgate-esports.webp", "data.city": "Istanbul", @@ -69,20 +70,20 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } }, { - "id": "tcl-misa-esports", + "history": [], + "id": "tcl-ozarox-esports", "city": "Istanbul", - "country": "", - "finance": 300000, - "logo_url": "/teams-icons/misa-esports.webp", + "country": "TR", + "finance": 100000, + "logo_url": "/teams-icons/ozarox-esports.webp", "facilities": { "medical": 1, - "scouting": 1, + "scouting": 0, "training": 1, "main_hub_level": 1, "scrims_room_level": 0, @@ -93,28 +94,30 @@ "recovery_suite_level": 0 }, "reputation": 300, - "wage_budget": 40000, + "wage_budget": 15000, "data.country": "Turkey", - "data.team_kind": "Main", - "transfer_budget": 100000, + "transfer_budget": 25000, "scrim_reputation": 30, "scrim_weekly_slots": 5, - "name": "Misa Esports", - "short_name": "MISA", + "name": "Ozarox Esports", + "short_name": "OZO", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } }, { - "id": "tcl-ozarox-esports", + "history": [], + "id": "tcl-pcific-esports", "city": "Istanbul", - "country": "", + "colors": { + "secondary": null + }, + "country": "TR", "finance": 100000, - "logo_url": "/teams-icons/ozarox-esports.webp", + "logo_url": "/teams-icons/pcific-esports.webp", "facilities": { "medical": 1, "scouting": 0, @@ -133,20 +136,16 @@ "transfer_budget": 25000, "scrim_reputation": 30, "scrim_weekly_slots": 5, - "name": "Ozarox Esports", - "short_name": "OZO", + "name": "PCIFIC Esports", + "short_name": "PCF", "stadium_name": "", - "stadium_capacity": 0, - "colors": { - "primary": "#10b981", - "secondary": "#ffffff" - }, - "history": [] + "stadium_capacity": 0 }, { + "history": [], "id": "tcl-su-esports", "city": "Istanbul", - "country": "", + "country": "TR", "finance": 150000, "logo_url": "/teams-icons/su-esports.webp", "facilities": { @@ -172,20 +171,17 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } }, { - "id": "tcl-pcific-esports", + "history": [], + "id": "tcl-bushido-wildcats", "city": "Istanbul", - "colors": { - "secondary": null - }, - "country": "", - "finance": 100000, - "logo_url": "/teams-icons/pcific-esports.webp", + "country": "TR", + "finance": 150000, + "logo_url": "/teams-icons/bushido-wildcats.webp", "facilities": { "medical": 1, "scouting": 0, @@ -199,26 +195,29 @@ "recovery_suite_level": 0 }, "reputation": 300, - "wage_budget": 15000, + "wage_budget": 20000, "data.country": "Turkey", - "transfer_budget": 25000, - "scrim_reputation": 30, - "scrim_weekly_slots": 5, - "name": "PCIFIC Esports", - "short_name": "PCF", + "data.team_kind": "Main", + "transfer_budget": 50000, + "name": "Bushido Wildcats", + "short_name": "BW", "stadium_name": "", "stadium_capacity": 0, - "history": [] + "colors": { + "primary": "#000000", + "secondary": "#ffffff" + } }, { - "id": "tcl-bushido-wildcats", + "history": [], + "id": "tcl-misa-esports", "city": "Istanbul", - "country": "", - "finance": 150000, - "logo_url": "/teams-icons/bushido-wildcats.webp", + "country": "TR", + "finance": 300000, + "logo_url": "/teams-icons/misa-esports.webp", "facilities": { "medical": 1, - "scouting": 0, + "scouting": 1, "training": 1, "main_hub_level": 1, "scrims_room_level": 0, @@ -229,24 +228,26 @@ "recovery_suite_level": 0 }, "reputation": 300, - "wage_budget": 20000, + "wage_budget": 40000, "data.country": "Turkey", "data.team_kind": "Main", - "transfer_budget": 50000, - "name": "Bushido Wildcats", - "short_name": "BW", + "transfer_budget": 100000, + "scrim_reputation": 30, + "scrim_weekly_slots": 5, + "name": "Misa Esports", + "short_name": "MISA", "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } }, { + "history": [], "id": "tcl-team-phoenix", "city": "Istanbul", - "country": "", + "country": "TR", "finance": 100000, "logo_url": "/teams-icons/team-phoenix.webp", "facilities": { @@ -272,10 +273,9 @@ "stadium_name": "", "stadium_capacity": 0, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" - }, - "history": [] + } } ] } \ No newline at end of file diff --git a/data/teams/vcs_teams.json b/data/teams/vcs_teams.json index 0b3b64025..4ae24bb82 100644 --- a/data/teams/vcs_teams.json +++ b/data/teams/vcs_teams.json @@ -3,100 +3,100 @@ "description": "VCS - 2026 Season", "teams": [ { - "id": "team-2b60138b", - "name": "MVK Academy", - "short_name": "MVKA", - "country": "", + "history": [], + "country": "VN", + "id": "team-0b0654fe", + "name": "Saigon Dino", + "short_name": "DINO", + "logo_url": "/teams-icons/56c4be2732477b21.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "VN", "id": "team-12d8ddae", "name": "9Gaming Esports", "short_name": "9GA", - "country": "", + "logo_url": "/teams-icons/afb6d62ce0a75fc0.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-cd683e2d", - "name": "Saigon Warriors", - "short_name": "SWA", - "country": "", + "history": [], + "country": "VN", + "id": "team-2b60138b", + "name": "MVK Esports Academy", + "short_name": "MVK.A", + "logo_url": "/teams-icons/d9b028e8ba7fd275.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-0b0654fe", - "name": "Saigon Dino", - "short_name": "DINO", - "country": "", + "history": [], + "country": "VN", + "id": "team-3cd254ed", + "name": "SN CyberCore Esports", + "short_name": "SNC", + "logo_url": "/teams-icons/090292d4809e9512.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { - "id": "team-3cd254ed", - "name": "SN CyberCore Esports", - "short_name": "SNC", - "country": "", + "history": [], + "country": "VN", + "id": "team-cd683e2d", + "name": "Saigon Warriors", + "short_name": "SWA", + "logo_url": "/teams-icons/e5e7327fd84c7443.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} }, { + "history": [], + "country": "VN", "id": "team-cf666c65", "name": "ZEN Esports", "short_name": "ZEN", - "country": "", + "logo_url": "/teams-icons/1e9d79a8e025ea66.webp", "city": "", "stadium_name": "", "stadium_capacity": 0, - "logo_url": null, "colors": { - "primary": "#10b981", + "primary": "#000000", "secondary": "#ffffff" }, - "facilities": {}, - "history": [] + "facilities": {} } ] } \ No newline at end of file diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index e5a6ac32b..18f75f293 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -19,14 +19,9 @@ C4Context System_Boundary(backend, "Tauri v2 Backend (Rust)") { System(cmd, "Command layer", "src-tauri/src/commands/ (thin handlers)") System(app, "Application services", "src-tauri/src/application/") - System(sm, "StateManager", "ofm_core::state (unified Session)") - System_db(db, "Persistence", "db crate (SQLite per-save)") - } - - System_Boundary(crates, "Rust Crates") { - System(domain, "domain", "Model types (Player, Team, etc.)") - System(engine, "engine", "Match simulation (pure, no I/O)") - System(ofm, "ofm_core", "Gameplay orchestration, turn logic") + System(sm, "StateManager", "olm_core::state (unified Session)") + System(core, "olm_core", "Domain, engine, gameplay, persistence") + System_Ext(srv, "server", "Web HTTP API (optional)") } System_Ext(leaguepedia, "Leaguepedia API", "External data (optional)") @@ -36,12 +31,10 @@ C4Context Rel(svc, cmd, "invoke('cmd', payload)") Rel(cmd, app, "delegates to") Rel(cmd, sm, "reads/writes state") - Rel(cmd, db, "loads/saves games") - Rel(app, ofm, "orchestrates gameplay") - Rel(ofm, engine, "runs simulation") - Rel(ofm, domain, "uses types") - Rel(db, ofm, "persists/loads domain objects") + Rel(cmd, core, "loads/saves game") + Rel(cmd, core, "orchestrates gameplay") Rel(ui, leaguepedia, "fetches champion data", "optional") + Rel(frontend, srv, "HTTP /api/* (web mode)") UpdateLayoutConfig($c4ShapeInRow="3", $c4BoundaryInRow="2") ``` @@ -72,52 +65,38 @@ Use this boundary deliberately: - Frontend code should call command names through small service functions in `src/services/`, not scatter raw `invoke(...)` calls throughout components. - Tauri commands should validate inputs, load/update `StateManager`, call application/core/db functions, and return serializable DTOs or domain structures. -- Business rules that must be consistent across UI flows belong in Rust (`ofm_core`, `engine`, or application services), not in React components. +- Business rules that must be consistent across UI flows belong in Rust (`olm_core`, or application services), not in React components. - UI-only state, presentation preferences, and navigation belong in React/Zustand/hooks. The backend keeps process-level state with Tauri-managed objects: -- `ofm_core::state::StateManager` stores the active `Game`, stats state, live match session, and active save id within a single `Mutex` (unified lock — no deadlock risk). +- `olm_core::state::StateManager` stores the active `Game`, stats state, live match session, and active save id within a single `Mutex` (unified lock — no deadlock risk). - `SaveManagerState` wraps `db::save_manager::SaveManager` for save listing/loading/saving/deleting. -## Rust workspace and crate responsibilities - -The Rust backend is a workspace declared in `src-tauri/Cargo.toml`. - -### `domain` - -`src-tauri/crates/domain` defines serializable domain data types: players, teams, leagues, managers, staff, messages, news, season context, stats, negotiations, and identity structures. - -Keep this crate model-focused. It currently depends only on general-purpose libraries such as `serde`, `serde_json`, and `log`, and should not know about Tauri, SQLite, or frontend concerns. - -### `engine` - -`src-tauri/crates/engine` contains match simulation logic. It exposes simulation functions and match types such as `simulate`, `LiveMatchState`, `MatchCommand`, `MatchSnapshot`, `MatchReport`, and `TeamData`. - -This crate is intentionally separate from Tauri and persistence so match simulation can be tested independently. - -### `ofm_core` +## Rust workspace and module responsibilities -`src-tauri/crates/ofm_core` contains gameplay/application domain logic: game state, clock, club systems, contracts, finances, training, scouting, transfers, schedules, turns, live match management, season logic, player events, generated messages/news, and job offers. +The Rust backend is a workspace declared in `src-tauri/Cargo.toml` with two crates: `olm_core` and `server`. -It depends on `domain` and `engine`. The central career object is `ofm_core::game::Game`, and runtime session state is managed by `ofm_core::state::StateManager`. +### `olm_core` -### `db` +`src-tauri/crates/olm_core` is the single backend crate. The old 4-crate workspace (`domain`, `engine`, `ofm_core`, `db`) was consolidated into `olm_core` as modules. It contains: -`src-tauri/crates/db` owns SQLite persistence. It contains: +- **`domain/`** — Serializable domain data types: players, teams, leagues, managers, staff, messages, news, season context, stats, negotiations, and identity structures. Depends only on general-purpose libraries (`serde`, `serde_json`, `log`). +- **`engine/`** — Match simulation logic (pure, no I/O). Exposes `simulate`, `LiveMatchState`, `MatchCommand`, `MatchSnapshot`, `MatchReport`. +- **`db/`** — SQLite persistence. Contains `GameDatabase` (per-save SQLite with migrations up to V55), `repositories/`, `GamePersistenceReader`/`GamePersistenceWriter`, `SaveManager`. +- **`game.rs`** — Central career object (`Game`), clock, club systems, contracts, finances, training, scouting, transfers, schedules. +- **`state.rs`** — Runtime session state (`StateManager` with unified `Mutex`). +- **`sim_live.rs` / `sim_live/`** — Live match engine (25+ submodules). +- **`commands.rs`** — Command dispatch for web/server mode. +- Plus modules for: academy, champions, social, news, messages, turn logic, time blockers, player events, scrims, season awards, etc. -- `GameDatabase`, which opens per-save SQLite databases and applies migrations. -- `migrations` and `sql/`, which define schema evolution. -- `repositories/`, which map domain/core state to tables. -- `GamePersistenceReader` and `GamePersistenceWriter`, which reconstruct and persist `Game`/stats state. -- `SaveManager`, `SaveIndexManager`, and `save_index`, which manage save files, metadata, checksums, and save discovery. -- `legacy_migration`, which handles old save migration on startup. +### `server` -The `db` crate depends on `domain` and `ofm_core`, but gameplay code should not depend on SQLite details. +`src-tauri/crates/server` provides an optional HTTP API for web/SaaS mode. It depends on `olm_core` and serves the same gameplay commands via HTTP endpoints proxied through vite in web mode. ### Tauri app crate -`src-tauri/src` wires the desktop application together. `lib.rs` configures plugins, logging, managed state, app data directories, legacy save migration, and command registration. `application/` contains backend orchestration that is too app-specific for the pure crates, such as time advancement and live-match flow coordination. +`src-tauri/src` wires the desktop application together. `lib.rs` configures plugins, logging, managed state, app data directories, legacy save migration, and command registration. `application/` contains backend orchestration that is too app-specific for the core crate, such as time advancement and live-match flow coordination. ## Persistence and save/load model @@ -127,7 +106,7 @@ OLManager uses a per-save SQLite model: 2. Starting a new game creates a new save database through `SaveManager::create_save` and stores its id in `StateManager`. 3. `GameDatabase::open` creates or opens a `.db` file and applies all migrations before use. 4. `GamePersistenceWriter` writes game metadata, manager, teams, players, staff, messages, news, league, objectives, scouting assignments, and stats through repositories. -5. `GamePersistenceReader` loads the same tables back into an `ofm_core::game::Game` and refreshes derived season context. +5. `GamePersistenceReader` loads the same tables back into an `olm_core::game::Game` and refreshes derived season context. 6. The save index records save id, name, manager name, db filename, checksum, creation time, and last played time. 7. `save_game` persists the active game and stats. `exit_to_menu` auto-saves when there is an active save id, then clears in-memory state. @@ -139,19 +118,17 @@ The current code supports this dependency direction: ```text React UI → frontend services → Tauri commands/application -Tauri commands/application → ofm_core / engine / db -db → ofm_core + domain -ofm_core → domain + engine -engine → standalone simulation types/logic -domain → serializable model types only +Tauri commands/application → olm_core (gameplay, engine, persistence, domain) +server → olm_core +olm_core modules: domain ← engine ← gameplay ← persistence ``` Contributor rules of thumb: - Do not put durable business rules only in React. If a rule changes saved game state or simulation results, implement it in Rust and expose it through a command. -- Keep `domain` free of Tauri, SQLite, and UI-specific code. -- Keep `engine` focused on simulation. Do not make it depend on save files or Tauri commands. -- Keep persistence behind `db` repositories/persistence readers/writers. Do not issue SQLite queries from command modules. +- Keep `domain/` free of Tauri, SQLite, and UI-specific code. +- Keep `engine/` focused on simulation. Do not make it depend on save files or Tauri commands. +- Keep persistence behind `db/` repositories. Do not issue SQLite queries from command modules. - Keep command modules thin enough to be understandable: parse/validate input, call core/application/db, update `StateManager`, return data. - Keep frontend `services/` as the IPC boundary. Components and hooks should use service functions instead of raw command strings when possible. @@ -160,16 +137,16 @@ Contributor rules of thumb: - Frontend: `npm test` runs Vitest in jsdom. Use React Testing Library for components/pages/hooks and plain Vitest for helpers, stores, and services. - TypeScript contract checks: `npm run build:types` runs the release TypeScript config without creating a Tauri production bundle. - Rust formatting/linting: use `cargo fmt --manifest-path src-tauri/Cargo.toml --check`, `cargo check`, and `cargo clippy --workspace --all-targets -- -D warnings`. -- Rust tests: `cargo test --manifest-path src-tauri/Cargo.toml --workspace` covers crates such as `engine`, `ofm_core`, `db`, and command-level tests. +- Rust tests: `cargo test --manifest-path src-tauri/Cargo.toml --workspace` covers `olm_core` (simulation, gameplay, persistence) and command-level tests. Do not run production Tauri bundle builds for normal documentation or PR validation work. ## Adding a new feature safely 1. Decide where the rule belongs. UI-only behavior goes in React; game-state mutations and simulations go in Rust. -2. Add or extend domain types in `domain` only when the model needs new durable fields or shared serializable structures. -3. Implement gameplay behavior in `ofm_core` or simulation behavior in `engine` with crate-level tests. -4. If the feature must be saved, add a migration and repository/persistence updates in `db`. +2. Add or extend domain types in `olm_core::domain` only when the model needs new durable fields or shared serializable structures. +3. Implement gameplay behavior in `olm_core` with module-level tests. +4. If the feature must be saved, add a migration and repository/persistence updates in `olm_core::db`. 5. Expose the behavior through a Tauri command in `src-tauri/src/commands/` and register it in `lib.rs`. 6. Add a typed frontend service wrapper in `src/services/`. 7. Update Zustand stores/hooks/pages/components only for presentation and UI flow. diff --git a/docs/ARCHITECTURE_MULTILEAGUE.md b/docs/ARCHITECTURE_MULTILEAGUE.md new file mode 100644 index 000000000..0a1aa6dfb --- /dev/null +++ b/docs/ARCHITECTURE_MULTILEAGUE.md @@ -0,0 +1,199 @@ +# Multi-League Architecture + +## Domain Model + +``` +Competition Season FixtureRef + ┌─────────────────────┐ ┌──────────────────────┐ ┌──────────────────────┐ + │ id: CompetitionId │──┐ │ id: SeasonId │ │ competition_id: Str │ + │ name: String │ │ │ competition_id: Str │◄──────│ fixture_id: String │ + │ region: String │ │ │ season_number: u32 │ └──────────────────────┘ + │ tier: u8 │ │ │ fixtures: Vec│ ▲ + │ schedule_config: │ │ │ standings: Vec │ │ + │ ScheduleConfig │ │ │ phase: SeasonPhase │ usada por commands + │ teams: Vec │ │ └──────────────────────┘ para routing resultados + │ players: Vec│ │ ▲ + │ staff: Vec │ │ │ + └─────────────────────┘ │ pertenece a una + ▲ │ Competition + │ │ + contiene │ + muchas seasons │ + │ + ┌─────┘ + │ + ┌─────┴──────────────────────────────────────────────────┐ + │ Game │ + ├───────────────────────────────────────────────────────┤ + │ competitions: Vec // fuente de verdad │ + │ competition_configs: HashMap // ScheduleConfig │ + │ academy_league: Option // legacy adapter │ + │ clock, manager, teams, players... │ + └────────────────────────────────────────────────────────┘ +``` + +## Contraste con lo que tenemos hoy + +``` +HOY (simplificado, funcional) IDEAL (separación de concerns) +───────────────────────────── ──────────────────────────────── + +Game Game + ├── leagues: Vec ├── competitions: Vec + │ ┌──────────────────────┐ │ ┌──────────────────────────┐ + │ │ id: "lec" │ │ │ id: 1 │ + │ │ name: "LEC" │ │ │ name: "LEC" │ + │ │ season: 2025 │ │ │ teams/players/staff │ + │ │ fixtures: [...] │ │ │ seasons: │ + │ │ standings: [...] │ │ │ ┌──────────────────┐ │ + │ └──────────────────────┘ │ │ │ season: 2025 │ │ + │ ┌──────────────────────┐ │ │ │ fixtures: [...] │ │ + │ │ id: "lcs" │ │ │ │ standings: [...] │ │ + │ │ name: "LCS" │ │ │ └──────────────────┘ │ + │ │ season: 2025 │ │ └──────────────────────────┘ + │ │ fixtures: [...] │ │ + │ │ standings: [...] │ │ Cada Competition tiene SU + │ └──────────────────────┘ │ historial de seasons. + │ │ Al avanzar de año, se + │ → Al avanzar de año, se │ agrega una Season nueva, + │ REEMPLAZA la league entera. │ no se reemplaza. + │ Se pierde la temporada anterior. │ + │ │ + ├── competition_configs: HashMap ├── competition_configs: HashMap + │ (ScheduleConfig por competencia) │ (misma idea, ya implementado) + │ │ + └─────────────────────────────────────────┴──────────────────────────────────┘ +``` + +## Ciclo de vida de una temporada + +``` +COMPETITION CREADA + │ + ├── select_team() + │ │ + │ ├── Se crea Competition desde manifest.json + │ ├── Se genera Season 2025 via generate_schedule_from_config() + │ └── Season 2025 se agrega a Competition.seasons + │ + ├── process_day() — avanza el tiempo + │ │ + │ ├── Season.fixtures se simulan (activa con prompt, bg automáticas) + │ ├── Season.standings se actualizan + │ └── Season.phase puede cambiar (Regular → Playoffs) + │ + ├── end_of_season() + │ │ + │ ├── Season actual se marca como completa + │ ├── Se genera Season 2026 con nuevo schedule + │ └── Season 2026 se pushea a Competition.seasons + │ + └── save/load + │ + ├── Se persisten todas las Competition con todas sus Seasons + └── No se pierde histórico (ideal) +``` + +## Flujo de datos: de manifest a runtime + +``` +data/competitions/lec/manifest.json + │ + ▼ +CompetitionManifest (deserializado) + │ + ├── id, name, region, tier → Competition.id, .name, .region, .tier + ├── schedule → Competition.schedule_config + ├── teams_file → Competition.teams (cargado del archivo) + ├── players_file → Competition.players (cargado del archivo) + │ + ▼ +Competition creada en memoria + │ + ▼ +generate_schedule_from_config(competition.schedule_config) + │ + ▼ +Season { season_number: 2025, fixtures: [...], standings: [...] } + │ + ▼ +Competition.seasons.push(Season) + │ + ▼ +game.competitions = [...] +``` + +## Relación con los otros issues + +``` +#164 Domain Model ──→ Define Competition, Season, FixtureRef + │ + ▼ +#167 Schema SQL ──→ CREATE TABLE competitions, seasons, fixtures + │ + ▼ +#168 Repository ──→ competition_repo.rs (save/load) + │ + ▼ +#170 FixtureRef ──→ Result routing por competition_id + fixture_id + │ + ▼ +#172 Overrides ──→ ManualOverride { fixture_ref, new_date } + │ + ▼ +#177 Frontend Browser ─→ UI que muestra Competition.seasons.history +``` + +## Lo que implementaríamos (si hacemos #164) + +``` +olm_core/src/domain/ + ├── competition.rs // Competition, CompetitionId, SeasonId + ├── league.rs // Se mantiene como está (Fixture, StandingEntry, etc.) + └── ... +``` + +```rust +// competition.rs — contenido propuesto + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct CompetitionId(uuid::Uuid); + +impl CompetitionId { + pub fn new() -> Self { Self(uuid::Uuid::new_v4()) } + pub fn from_string(s: &str) -> Self { /* parse */ } +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct SeasonId(uuid::Uuid); + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub enum SeasonPhase { + Preseason, + Regular, + Playoffs, + Completed, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct Competition { + pub id: CompetitionId, + pub name: String, + pub region: String, + pub tier: u8, + pub seasons: Vec, + pub teams: Vec, // cached + pub players: Vec, // cached + pub staff: Vec, // cached +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct Season { + pub id: SeasonId, + pub competition_id: CompetitionId, + pub season_number: u32, + pub phase: SeasonPhase, + pub fixtures: Vec, + pub standings: Vec, +} +``` diff --git a/docs/GOVERNANCE.md b/docs/CONTRIBUTING.md similarity index 100% rename from docs/GOVERNANCE.md rename to docs/CONTRIBUTING.md diff --git a/docs/DATA_PROVENANCE.md b/docs/DATA_PROVENANCE.md deleted file mode 100644 index 8ed8ac6fe..000000000 --- a/docs/DATA_PROVENANCE.md +++ /dev/null @@ -1,60 +0,0 @@ -# Data Provenance - -OLManager separates GPL-inherited code/assets from third-party data. This matters because an external data source such as Leaguepedia has its own terms, attribution expectations, and redistribution constraints. - -## Policy - -- Treat code and assets inherited from OpenFootManager as GPL-3.0-compatible unless audited otherwise. -- Do not assume Leaguepedia or other external data becomes GPL because OLManager is GPL. -- Do not commit unclear, proprietary, or non-redistributable data. -- Prefer reproducible generators or documented extraction scripts over opaque generated files. -- Keep generated/cache files out of releases unless redistribution rights are documented. - -## Required provenance record - -For every external data source or inherited asset, record: - -- Source name. -- Source URL. -- Source terms/license URL. -- Required attribution text. -- Extraction or retrieval date. -- Transformation process or generator command. -- Whether redistribution is allowed. -- Whether the committed file is source, generated output, or cache. -- Maintainer approval link or issue number. - -## Template - -```markdown -## Source: - -- Source URL: -- Terms/license URL: -- Attribution: -- Retrieved/extracted on: YYYY-MM-DD -- Data type: source | generated | cache -- Transformation: