Spaces:
No application file
No application file
adding picture descriptions for profile pics
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- api/scripts/create_play_profile_pic.py +69 -12
- api/scripts/create_player_profiles.py +8 -90
- api/scripts/model_player.py +97 -0
- data/huge-league/players/Everglade_FC_1.json +1 -1
- data/huge-league/players/Everglade_FC_10.json +1 -1
- data/huge-league/players/Everglade_FC_11.json +1 -1
- data/huge-league/players/Everglade_FC_12.json +1 -1
- data/huge-league/players/Everglade_FC_13.json +1 -1
- data/huge-league/players/Everglade_FC_14.json +1 -1
- data/huge-league/players/Everglade_FC_15.json +1 -1
- data/huge-league/players/Everglade_FC_16.json +1 -1
- data/huge-league/players/Everglade_FC_17.json +1 -1
- data/huge-league/players/Everglade_FC_18.json +1 -1
- data/huge-league/players/Everglade_FC_19.json +1 -1
- data/huge-league/players/Everglade_FC_2.json +1 -1
- data/huge-league/players/Everglade_FC_20.json +1 -1
- data/huge-league/players/Everglade_FC_21.json +1 -1
- data/huge-league/players/Everglade_FC_22.json +1 -1
- data/huge-league/players/Everglade_FC_23.json +1 -1
- data/huge-league/players/Everglade_FC_3.json +1 -1
- data/huge-league/players/Everglade_FC_4.json +1 -1
- data/huge-league/players/Everglade_FC_5.json +1 -1
- data/huge-league/players/Everglade_FC_6.json +1 -1
- data/huge-league/players/Everglade_FC_7.json +1 -1
- data/huge-league/players/Everglade_FC_8.json +1 -1
- data/huge-league/players/Everglade_FC_9.json +1 -1
- data/huge-league/players/Fraser_Valley_United_1.json +1 -1
- data/huge-league/players/Fraser_Valley_United_10.json +1 -1
- data/huge-league/players/Fraser_Valley_United_11.json +1 -1
- data/huge-league/players/Fraser_Valley_United_12.json +1 -1
- data/huge-league/players/Fraser_Valley_United_13.json +1 -1
- data/huge-league/players/Fraser_Valley_United_14.json +1 -1
- data/huge-league/players/Fraser_Valley_United_15.json +1 -1
- data/huge-league/players/Fraser_Valley_United_16.json +1 -1
- data/huge-league/players/Fraser_Valley_United_17.json +1 -1
- data/huge-league/players/Fraser_Valley_United_18.json +1 -1
- data/huge-league/players/Fraser_Valley_United_19.json +1 -1
- data/huge-league/players/Fraser_Valley_United_2.json +1 -1
- data/huge-league/players/Fraser_Valley_United_20.json +1 -1
- data/huge-league/players/Fraser_Valley_United_21.json +1 -1
- data/huge-league/players/Fraser_Valley_United_22.json +1 -1
- data/huge-league/players/Fraser_Valley_United_23.json +1 -1
- data/huge-league/players/Fraser_Valley_United_3.json +1 -1
- data/huge-league/players/Fraser_Valley_United_4.json +1 -1
- data/huge-league/players/Fraser_Valley_United_5.json +1 -1
- data/huge-league/players/Fraser_Valley_United_6.json +1 -1
- data/huge-league/players/Fraser_Valley_United_7.json +1 -1
- data/huge-league/players/Fraser_Valley_United_8.json +1 -1
- data/huge-league/players/Fraser_Valley_United_9.json +1 -1
- data/huge-league/players/Tierra_Alta_FC_1.json +1 -1
api/scripts/create_play_profile_pic.py
CHANGED
@@ -1,20 +1,77 @@
|
|
1 |
from openai import OpenAI
|
2 |
import base64
|
|
|
|
|
3 |
client = OpenAI()
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"""
|
9 |
|
10 |
-
result = client.images.generate(
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
1 |
from openai import OpenAI
|
2 |
import base64
|
3 |
+
from model_player import Player
|
4 |
+
|
5 |
client = OpenAI()
|
6 |
|
7 |
+
|
8 |
+
def get_ai_response(prompt):
|
9 |
+
response = client.responses.create(
|
10 |
+
model="gpt-4o-mini",
|
11 |
+
input=prompt
|
12 |
+
)
|
13 |
+
return response.output_text
|
14 |
+
|
15 |
+
|
16 |
+
def generate_image(prompt):
|
17 |
+
result = client.images.generate(
|
18 |
+
model="gpt-image-1",
|
19 |
+
size="1024x1024",
|
20 |
+
quality="medium",
|
21 |
+
prompt=prompt
|
22 |
+
)
|
23 |
+
image_base64 = result.data[0].b64_json
|
24 |
+
image_bytes = base64.b64decode(image_base64)
|
25 |
+
return image_bytes
|
26 |
+
|
27 |
+
|
28 |
+
prompt_a = """
|
29 |
+
You are generating a realistic portrait of a fictional professional soccer player using their structured profile data.
|
30 |
+
|
31 |
+
Use the information below to inform the player's:
|
32 |
+
- Physical build (age, height, weight)
|
33 |
+
- Facial features and vibe (bio, nationality, personality)
|
34 |
+
- Team kit details (team name, role, position)
|
35 |
+
- Pose and mood (based on form, rating, injury status)
|
36 |
+
|
37 |
+
Be creative, but grounded in realism — think press photo or matchday portrait.
|
38 |
+
|
39 |
+
Here is the player profile:
|
40 |
+
|
41 |
+
{player_profile}
|
42 |
+
|
43 |
+
Your output should describe only the image to be generated. No text, captions, or extra commentary. Just a detailed image prompt.
|
44 |
"""
|
45 |
|
46 |
+
# result = client.images.generate(
|
47 |
+
# model="gpt-image-1",
|
48 |
+
# size="1024x1024",
|
49 |
+
# quality="medium",
|
50 |
+
# prompt=prompt
|
51 |
+
# )
|
52 |
+
|
53 |
+
# image_base64 = result.data[0].b64_json
|
54 |
+
# image_bytes = base64.b64decode(image_base64)
|
55 |
|
56 |
+
# # Generate profile pic descriptions for all players
|
57 |
+
# for player in Player.get_players():
|
58 |
+
# print(player.name)
|
59 |
+
# # print(player.profile_pic)
|
60 |
+
# if not player.profile_pic:
|
61 |
+
# print("--> generate pic description")
|
62 |
+
# text = prompt_a.format(player_profile=player.model_dump())
|
63 |
+
# response = get_ai_response(text)
|
64 |
+
# print(response)
|
65 |
+
# player.profile_pic = response
|
66 |
+
# player.save()
|
67 |
+
# else:
|
68 |
+
# print("--> skip")
|
69 |
+
# # break
|
70 |
|
71 |
+
# Generate images for all players
|
72 |
+
for player in Player.get_players():
|
73 |
+
print(player.name)
|
74 |
+
print(player.profile_pic)
|
75 |
+
response = generate_image(player.profile_pic)
|
76 |
+
player.save_image(response)
|
77 |
+
break
|
api/scripts/create_player_profiles.py
CHANGED
@@ -1,12 +1,9 @@
|
|
1 |
from openai import OpenAI
|
2 |
import os
|
3 |
import csv
|
4 |
-
from pydantic import BaseModel, Field, ValidationError
|
5 |
-
from typing import Literal, Optional
|
6 |
-
import hashlib
|
7 |
import json
|
8 |
from pprint import pprint
|
9 |
-
|
10 |
|
11 |
client = OpenAI()
|
12 |
|
@@ -63,92 +60,13 @@ team_descriptions = {
|
|
63 |
}
|
64 |
|
65 |
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
"Goalkeeper", "Left Back", "Center Back", "Right Back",
|
74 |
-
"Full Back", "Defensive Mid", "Central Mid", "Attacking Mid",
|
75 |
-
"Left Wing", "Right Wing", "Forward/Winger", "Striker", "Various"
|
76 |
-
]
|
77 |
-
preferred_foot: Literal["Left", "Right", "Mixed"]
|
78 |
-
role: Literal["Starter", "Bench", "Reserve/Prospect"]
|
79 |
-
|
80 |
-
@property
|
81 |
-
def id(self):
|
82 |
-
if not self.team:
|
83 |
-
raise ValueError("Team must not be empty")
|
84 |
-
return hashlib.sha256(f"{self.team}_{self.number}".encode()).hexdigest()
|
85 |
-
|
86 |
-
@property
|
87 |
-
def filename(self):
|
88 |
-
return f'{self.team.replace(" ", "_")}_{self.number}.json'
|
89 |
-
|
90 |
-
# Optional flair / simulation fields
|
91 |
-
team: Optional[str] = None
|
92 |
-
height_cm: Optional[int] = Field(None, ge=150, le=210)
|
93 |
-
weight_kg: Optional[int] = Field(None, ge=50, le=110)
|
94 |
-
overall_rating: Optional[int] = Field(None, ge=1, le=100)
|
95 |
-
is_injured: Optional[bool] = False
|
96 |
-
form: Optional[int] = Field(None, ge=1, le=10) # recent performance (1-10)
|
97 |
-
|
98 |
-
# Stats placeholder — useful if you want to track across games
|
99 |
-
goals: Optional[int] = 0
|
100 |
-
assists: Optional[int] = 0
|
101 |
-
yellow_cards: Optional[int] = 0
|
102 |
-
red_cards: Optional[int] = 0
|
103 |
-
|
104 |
-
# Narrative hook
|
105 |
-
bio: Optional[str] = None
|
106 |
-
|
107 |
-
@classmethod
|
108 |
-
def from_row(cls, row):
|
109 |
-
if len(row) != 8:
|
110 |
-
raise ValueError("Row must have 8 elements")
|
111 |
-
return cls(
|
112 |
-
number=row[0],
|
113 |
-
name=row[1],
|
114 |
-
position=row[2],
|
115 |
-
age=row[3],
|
116 |
-
nationality=row[4],
|
117 |
-
shirt_number=row[5],
|
118 |
-
preferred_foot=row[6],
|
119 |
-
role=row[7],
|
120 |
-
)
|
121 |
-
|
122 |
-
def player_info(self):
|
123 |
-
return {
|
124 |
-
"number": self.number,
|
125 |
-
"name": self.name,
|
126 |
-
"position": self.position,
|
127 |
-
"age": self.age,
|
128 |
-
"nationality": self.nationality,
|
129 |
-
"shirt_number": self.shirt_number,
|
130 |
-
"preferred_foot": self.preferred_foot,
|
131 |
-
"role": self.role,
|
132 |
-
}
|
133 |
-
|
134 |
-
def save(self):
|
135 |
-
with open(os.path.join("/workspace/data/huge-league/players", self.filename), 'w') as f:
|
136 |
-
json.dump(self.model_dump(), f)
|
137 |
-
|
138 |
-
@classmethod
|
139 |
-
def load(cls, filename):
|
140 |
-
with open(os.path.join("/workspace/data/huge-league/players", filename), 'r') as f:
|
141 |
-
data = json.load(f)
|
142 |
-
return cls.model_validate(data)
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
for filename in os.listdir("/workspace/data/huge-league/rosters"):
|
147 |
-
with open(os.path.join("/workspace/data/huge-league/rosters", filename), 'r') as f:
|
148 |
-
print(f"Processing {filename}")
|
149 |
-
team_description = team_descriptions.get(filename)
|
150 |
-
team_name = " ".join(filename.split("_")[:-1])
|
151 |
-
reader = csv.reader(f)
|
152 |
next(reader) # skip header
|
153 |
for row in reader:
|
154 |
player = Player.from_row(row)
|
|
|
1 |
from openai import OpenAI
|
2 |
import os
|
3 |
import csv
|
|
|
|
|
|
|
4 |
import json
|
5 |
from pprint import pprint
|
6 |
+
from model_player import Player
|
7 |
|
8 |
client = OpenAI()
|
9 |
|
|
|
60 |
}
|
61 |
|
62 |
|
63 |
+
if __name__ == "__main__":
|
64 |
+
for filename in os.listdir("/workspace/data/huge-league/rosters"):
|
65 |
+
with open(os.path.join("/workspace/data/huge-league/rosters", filename), 'r') as f:
|
66 |
+
print(f"Processing {filename}")
|
67 |
+
team_description = team_descriptions.get(filename)
|
68 |
+
team_name = " ".join(filename.split("_")[:-1])
|
69 |
+
reader = csv.reader(f)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
next(reader) # skip header
|
71 |
for row in reader:
|
72 |
player = Player.from_row(row)
|
api/scripts/model_player.py
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import json
|
3 |
+
from pydantic import BaseModel, Field, ValidationError
|
4 |
+
from typing import Literal, Optional
|
5 |
+
import hashlib
|
6 |
+
|
7 |
+
|
8 |
+
class Player(BaseModel):
|
9 |
+
number: int
|
10 |
+
name: str
|
11 |
+
age: int
|
12 |
+
nationality: str
|
13 |
+
shirt_number: int
|
14 |
+
position: Literal[
|
15 |
+
"Goalkeeper", "Left Back", "Center Back", "Right Back",
|
16 |
+
"Full Back", "Defensive Mid", "Central Mid", "Attacking Mid",
|
17 |
+
"Left Wing", "Right Wing", "Forward/Winger", "Striker", "Various"
|
18 |
+
]
|
19 |
+
preferred_foot: Literal["Left", "Right", "Mixed"]
|
20 |
+
role: Literal["Starter", "Bench", "Reserve/Prospect"]
|
21 |
+
|
22 |
+
@property
|
23 |
+
def id(self):
|
24 |
+
if not self.team:
|
25 |
+
raise ValueError("Team must not be empty")
|
26 |
+
return hashlib.sha256(f"{self.team}_{self.number}".encode()).hexdigest()
|
27 |
+
|
28 |
+
@property
|
29 |
+
def filename(self):
|
30 |
+
return f'{self.team.replace(" ", "_")}_{self.number}.json'
|
31 |
+
|
32 |
+
# Optional flair / simulation fields
|
33 |
+
team: Optional[str] = None
|
34 |
+
height_cm: Optional[int] = Field(None, ge=150, le=210)
|
35 |
+
weight_kg: Optional[int] = Field(None, ge=50, le=110)
|
36 |
+
overall_rating: Optional[int] = Field(None, ge=1, le=100)
|
37 |
+
is_injured: Optional[bool] = False
|
38 |
+
form: Optional[int] = Field(None, ge=1, le=10) # recent performance (1-10)
|
39 |
+
|
40 |
+
# Stats placeholder — useful if you want to track across games
|
41 |
+
goals: Optional[int] = 0
|
42 |
+
assists: Optional[int] = 0
|
43 |
+
yellow_cards: Optional[int] = 0
|
44 |
+
red_cards: Optional[int] = 0
|
45 |
+
|
46 |
+
# Narrative hook
|
47 |
+
bio: Optional[str] = None
|
48 |
+
|
49 |
+
# AI-generated profile pic
|
50 |
+
profile_pic: Optional[str] = None
|
51 |
+
|
52 |
+
@classmethod
|
53 |
+
def from_row(cls, row):
|
54 |
+
if len(row) != 8:
|
55 |
+
raise ValueError("Row must have 8 elements")
|
56 |
+
return cls(
|
57 |
+
number=row[0],
|
58 |
+
name=row[1],
|
59 |
+
position=row[2],
|
60 |
+
age=row[3],
|
61 |
+
nationality=row[4],
|
62 |
+
shirt_number=row[5],
|
63 |
+
preferred_foot=row[6],
|
64 |
+
role=row[7],
|
65 |
+
)
|
66 |
+
|
67 |
+
def player_info(self):
|
68 |
+
return {
|
69 |
+
"number": self.number,
|
70 |
+
"name": self.name,
|
71 |
+
"position": self.position,
|
72 |
+
"age": self.age,
|
73 |
+
"nationality": self.nationality,
|
74 |
+
"shirt_number": self.shirt_number,
|
75 |
+
"preferred_foot": self.preferred_foot,
|
76 |
+
"role": self.role,
|
77 |
+
}
|
78 |
+
|
79 |
+
def save(self):
|
80 |
+
with open(os.path.join("/workspace/data/huge-league/players", self.filename), 'w') as f:
|
81 |
+
json.dump(self.model_dump(), f)
|
82 |
+
|
83 |
+
@classmethod
|
84 |
+
def load(cls, filename):
|
85 |
+
with open(os.path.join("/workspace/data/huge-league/players", filename), 'r') as f:
|
86 |
+
data = json.load(f)
|
87 |
+
return cls.model_validate(data)
|
88 |
+
|
89 |
+
@classmethod
|
90 |
+
def get_players(cls):
|
91 |
+
for filename in os.listdir("/workspace/data/huge-league/players"):
|
92 |
+
yield cls.load(filename)
|
93 |
+
|
94 |
+
def save_image(self, image_bytes):
|
95 |
+
filename = self.filename.replace(".json", ".png")
|
96 |
+
with open(os.path.join("/workspace/data/huge-league/players_pics", filename), 'wb') as f:
|
97 |
+
f.write(image_bytes)
|
data/huge-league/players/Everglade_FC_1.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 1, "name": "Eric Miller", "age": 28, "nationality": "USA", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 185, "weight_kg": 80, "overall_rating": 88, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Eric Miller, a dynamic goalkeeper with a commanding presence, thrives under pressure, effortlessly diving to make game-changing saves. A proud product of Miami, he embodies the fiery spirit of Everglade FC, showcasing agility and flair that resonates with the team's wild, unpredictable style. His leadership on the field inspires teammates to elevate their game, making him an irreplaceable asset."}
|
|
|
1 |
+
{"number": 1, "name": "Eric Miller", "age": 28, "nationality": "USA", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 185, "weight_kg": 80, "overall_rating": 88, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Eric Miller, a dynamic goalkeeper with a commanding presence, thrives under pressure, effortlessly diving to make game-changing saves. A proud product of Miami, he embodies the fiery spirit of Everglade FC, showcasing agility and flair that resonates with the team's wild, unpredictable style. His leadership on the field inspires teammates to elevate their game, making him an irreplaceable asset.", "profile_pic": "A realistic portrait of a 28-year-old male soccer player, Eric Miller, standing confidently in a matchday portrait. He is 185 cm tall with a strong, athletic build weighing 80 kg. His light brown hair is neatly styled, and he has a determined expression that exudes charisma and confidence. His skin tone is light, emphasizing his American nationality. He wears the vibrant team kit of Everglade FC\u2014bright green and blue with bold patterns, featuring the team\u2019s logo prominently on the chest. His shirt proudly displays the number 1. \n\nThe pose captures him in a slightly angled stance, hands on hips, which showcases his commanding presence as a goalkeeper. The background features a blurred stadium setting with fans in the stands, adding a lively atmosphere. The mood is energetic and focused, reflecting his high form rating of 8. His gaze is intense yet inspiring, radiating a sense of leadership and passion for the game. The image encapsulates his role as a starter and dynamic playmaker, underscoring his agility and flair without any signs of injury."}
|
data/huge-league/players/Everglade_FC_10.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 10, "name": "Matthew Martin", "age": 24, "nationality": "USA", "shirt_number": 10, "position": "Striker", "preferred_foot": "Left", "role": "Starter", "team": "Everglade FC", "height_cm": 182, "weight_kg": 77, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 15, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Matthew Martin is a dynamic striker known for his explosive pace and clinical finishing. Hailing from the vibrant streets of Miami, he embodies the flair of Everglade FC, often dazzling defenders with his deft footwork and unpredictable movements. His fierce determination and humble beginnings fuel his passion on the pitch, making him a fan favorite and a relentless competitor."}
|
|
|
1 |
+
{"number": 10, "name": "Matthew Martin", "age": 24, "nationality": "USA", "shirt_number": 10, "position": "Striker", "preferred_foot": "Left", "role": "Starter", "team": "Everglade FC", "height_cm": 182, "weight_kg": 77, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 15, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Matthew Martin is a dynamic striker known for his explosive pace and clinical finishing. Hailing from the vibrant streets of Miami, he embodies the flair of Everglade FC, often dazzling defenders with his deft footwork and unpredictable movements. His fierce determination and humble beginnings fuel his passion on the pitch, making him a fan favorite and a relentless competitor.", "profile_pic": "A striking portrait of a professional soccer player in a press photo setup. The player, Matthew Martin, is 24 years old, standing at 182 cm tall and weighing 77 kg, with an athletic build. He has a confident demeanor, showcasing his vibrant energy. His facial features exude determination, with tousled dark hair and focused, captivating eyes reflecting his competitive spirit. He has a light tan complexion, indicative of his Miami upbringing.\n\nMatthew is dressed in the sleek home kit of Everglade FC, which features vivid green and blue colors, with a bold number 10 emblazoned on the back. The team logo is prominent on the chest, and the fabric appears high-performance, tailored for agility. He's in a relaxed yet ready athletic pose, one foot slightly forward, arms crossed over his chest, exuding confidence and pride in his role as a starting striker.\n\nThe background showcases a blurred soccer pitch, emphasizing the professional setting, while the lighting is bright and even, enhancing the player's features. His overall expression radiates positivity and focus, reflecting his current form and rating of 85, showcasing that he is fit and uninjured. The vibe is both inspiring and approachable, capturing the essence of a dynamic athlete ready to dazzle on the field."}
|
data/huge-league/players/Everglade_FC_11.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 11, "name": "Michael Smith", "age": 20, "nationality": "USA", "shirt_number": 11, "position": "Right Wing", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Michael Smith, the electrifying right wing from Everglade FC, combines blistering speed with uncanny dribbling skills, making defenders dizzy. Hailing from the vibrant streets of Miami, his playful flair on the pitch reflects the rich culture of his roots. With a fierce determination, he thrives under pressure, often delivering stunning goals in crucial moments."}
|
|
|
1 |
+
{"number": 11, "name": "Michael Smith", "age": 20, "nationality": "USA", "shirt_number": 11, "position": "Right Wing", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Michael Smith, the electrifying right wing from Everglade FC, combines blistering speed with uncanny dribbling skills, making defenders dizzy. Hailing from the vibrant streets of Miami, his playful flair on the pitch reflects the rich culture of his roots. With a fierce determination, he thrives under pressure, often delivering stunning goals in crucial moments.", "profile_pic": "A young male soccer player, Michael Smith, 20 years old, standing confidently in an outdoor stadium setting. He is 178 cm tall, weighing 70 kg, with a lean, athletic build. His complexion is light, with a warm undertone, complemented by short, slightly wavy dark brown hair. His expressive light brown eyes reflect determination and a playful flair. \n\nHe wears the home kit of Everglade FC: a vibrant primarily dark green jersey featuring bold orange accents and the team logo emblazoned on the left chest. The jersey is fitted, accentuating his athletic frame, paired with matching shorts and knee-length socks that feature an orange stripe. His right foot is prominently lifted, showcasing a bright pair of cleats, gripping the grass, suggesting readiness for action.\n\nIn the background, the stadium is filled with cheering fans, slightly blurred to emphasize him in the foreground. The atmosphere is electric, capturing the essence of matchday. He holds a soccer ball at his feet, a confident smile on his face, exuding excitement and focus, with a slight tilt of his head indicating readiness to take on any challenge. The sun casts a warm glow, enhancing the intensity of the moment, while the shadows add depth to the image."}
|
data/huge-league/players/Everglade_FC_12.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 12, "name": "Eric Johnson", "age": 30, "nationality": "USA", "shirt_number": 12, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 185, "weight_kg": 80, "overall_rating": 76, "is_injured": false, "form": 7, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Hailing from the bustling streets of Miami, Eric Johnson is known for his quick reflexes and fearless approach to goalkeeping. His left foot is not just for kicking but also for orchestrating play from the back, commanding the defense with a calm yet fiery presence. Always ready to dive into action, he's a beloved figure among fans for his dedication and the vibrant spirit he brings to the pitch."}
|
|
|
1 |
+
{"number": 12, "name": "Eric Johnson", "age": 30, "nationality": "USA", "shirt_number": 12, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 185, "weight_kg": 80, "overall_rating": 76, "is_injured": false, "form": 7, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Hailing from the bustling streets of Miami, Eric Johnson is known for his quick reflexes and fearless approach to goalkeeping. His left foot is not just for kicking but also for orchestrating play from the back, commanding the defense with a calm yet fiery presence. Always ready to dive into action, he's a beloved figure among fans for his dedication and the vibrant spirit he brings to the pitch.", "profile_pic": "A portrait of Eric Johnson, a 30-year-old American goalkeeper for Everglade FC. Standing confidently at 185 cm tall and weighing 80 kg, he has an athletic build, showcasing his readiness for action. His facial features reflect his Miami roots: a sun-kissed complexion, short dark hair styled neatly, and intense green eyes that convey focus and determination.\n\nHe wears the Everglade FC home kit, which consists of a vibrant teal jersey with white trim, featuring his number 12 prominently displayed on the back. The kit is completed with matching shorts and socks, and he sports a pair of black goalkeeper gloves, ready for any challenge that comes his way.\n\nThe setting is a press photo backdrop, with the stadium in soft focus behind him, highlighting his team colors. He stands in a strong pose, feet shoulder-width apart, with his left foot slightly forward as if about to take a step. His expression is a blend of fierce concentration and approachable charm, embodying a passionate dedication to the sport. The mood is energetic yet composed, reflecting his solid form of 7 and an overall rating of 76, with no indications of injury or defeat. The image captures an essence of resilience, making him a beloved figure among the fans."}
|
data/huge-league/players/Everglade_FC_13.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 13, "name": "Michael Martin", "age": 22, "nationality": "USA", "shirt_number": 13, "position": "Center Back", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 185, "weight_kg": 78, "overall_rating": 75, "is_injured": false, "form": 7, "goals": 2, "assists": 1, "yellow_cards": 4, "red_cards": 0, "bio": "Michael Martin, a determined Center Back at 22, commands the field with his tactical acumen and a left-footed booming clearance. Hailing from the wetlands of Miami, his play style embodies both grit and grace, making him a formidable presence in the backline. Known for his fierce tackles and leadership, he carries the pride of Everglade FC, reflecting the wild and spirited essence of South Florida's ecosystem."}
|
|
|
1 |
+
{"number": 13, "name": "Michael Martin", "age": 22, "nationality": "USA", "shirt_number": 13, "position": "Center Back", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 185, "weight_kg": 78, "overall_rating": 75, "is_injured": false, "form": 7, "goals": 2, "assists": 1, "yellow_cards": 4, "red_cards": 0, "bio": "Michael Martin, a determined Center Back at 22, commands the field with his tactical acumen and a left-footed booming clearance. Hailing from the wetlands of Miami, his play style embodies both grit and grace, making him a formidable presence in the backline. Known for his fierce tackles and leadership, he carries the pride of Everglade FC, reflecting the wild and spirited essence of South Florida's ecosystem.", "profile_pic": "A press photo of Michael Martin, a 22-year-old center back for Everglade FC. He stands tall at 185 cm, with a strong build, weighing 78 kg. His left foot is positioned forward, showcasing his preferred kicking stance. \n\nMichael has a slightly chiseled jawline, high cheekbones, and warm brown eyes that convey determination and focus. His dark hair is styled neatly, reflecting a professional demeanor, and he sports a subtle five o'clock shadow. His expression is one of confidence and intensity, ready to command the field.\n\nHe wears the Everglade FC team kit: a vibrant green jersey with white accents, featuring his shirt number 13 prominently on the back. The shorts match the jersey, and he has black and green cleats that complement his outfit. The kit has the team logo on the chest, symbolizing his pride and connection to the club.\n\nThe background features a blurred soccer stadium filled with fans, enhancing the atmosphere while keeping the focus on him. The lighting is bright, evoking a sunny matchday vibe. Michael stands in a slight athletic pose, arms relaxed at his sides, exuding stability and readiness, reflecting his solid current form and status as an invaluable team member. There are no visible signs of injury, indicating his fitness and readiness for the game ahead."}
|
data/huge-league/players/Everglade_FC_14.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 14, "name": "Nicholas Gonzalez", "age": 19, "nationality": "USA", "shirt_number": 14, "position": "Full Back", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Nicholas Gonzalez, a dynamic Full Back from the wetlands of Miami, embodies the wild spirit of Everglade FC. With his left foot, he possesses a fierce ability to whip in dangerous crosses and initiate breathtaking counter-attacks, all while maintaining a fearless defensive stance. At just 19, his passion on the field mirrors the vibrant energy of his roots, earning him a growing fan base and the respect of his teammates."}
|
|
|
1 |
+
{"number": 14, "name": "Nicholas Gonzalez", "age": 19, "nationality": "USA", "shirt_number": 14, "position": "Full Back", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Nicholas Gonzalez, a dynamic Full Back from the wetlands of Miami, embodies the wild spirit of Everglade FC. With his left foot, he possesses a fierce ability to whip in dangerous crosses and initiate breathtaking counter-attacks, all while maintaining a fearless defensive stance. At just 19, his passion on the field mirrors the vibrant energy of his roots, earning him a growing fan base and the respect of his teammates.", "profile_pic": "A realistic portrait of Nicholas Gonzalez, a 19-year-old professional soccer player. He stands at 178 cm tall with a weight of 75 kg, showcasing a lean and athletic build typical of a full back. His skin has a warm, sun-kissed tone, reflecting his Miami roots. \n\nNicholas has expressive dark brown eyes, complemented by thick eyebrows that convey determination. His hair is short and slightly tousled, with a natural wave to it, giving him a youthful and energetic vibe. His face features a confident smile, radiating enthusiasm and passion, with a few freckles across his cheeks hinting at time spent outdoors.\n\nHe is wearing the Everglade FC team kit, which consists of a vibrant green jersey with white and orange trim, displaying his shirt number, 14, prominently on the back. The shorts are matching green with subtle branding, and he sports knee-length socks that follow the same color scheme. His left foot is slightly forward, as if he's ready to sprint down the pitch, portraying both agility and readiness as a bench player in excellent form.\n\nThe background features a blurred soccer field with fans cheering in the stands, creating an electric atmosphere typical of a matchday portrait. The lighting is bright, illuminating his figure and accentuating the details of the kit, while shadows provide depth to the scene, emphasizing his athletic physique. Nicholas stands proudly, embodying the spirit of the game, with an air of youthful confidence and ambition.\n"}
|
data/huge-league/players/Everglade_FC_15.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 15, "name": "Joseph Thomas", "age": 27, "nationality": "USA", "shirt_number": 15, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Joseph Thomas is a dynamic defensive mid known for his tenacity and exceptional ball-winning ability. With a heart as big as the wetlands he represents, he showcases tireless work ethic and an eye for threading key passes, embodying the spirit of Everglade FC."}
|
|
|
1 |
+
{"number": 15, "name": "Joseph Thomas", "age": 27, "nationality": "USA", "shirt_number": 15, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Joseph Thomas is a dynamic defensive mid known for his tenacity and exceptional ball-winning ability. With a heart as big as the wetlands he represents, he showcases tireless work ethic and an eye for threading key passes, embodying the spirit of Everglade FC.", "profile_pic": "A realistic portrait of Joseph Thomas, a 27-year-old defensive midfielder for Everglade FC. He stands confidently at 178 cm tall, with an athletic build weighing 72 kg. His expression conveys determination and focus, with sharp features reflecting his American nationality. His close-cropped dark hair is slightly tousled, and his brown eyes glint with a competitive spirit.\n\nHe wears the Everglade FC team kit, which features vibrant green and blue colors representing the wetlands, along with his shirt number 15 prominently displayed on the back. The kit is adorned with stylish sponsor logos and has a modern design, with a fitted cut that highlights his physique.\n\nJoseph is depicted in a slightly crouched pose with one foot forward, as if he\u2019s ready to spring into action. His right foot is planted firmly on the ground while his left foot is raised slightly behind him, indicating movement. He is wearing sleek, professional cleats suitable for playing on grass.\n\nThe background is a blurred image of a soccer pitch under bright stadium lights, enhancing the mood of readiness and competition. Joseph\u2019s stance and confident expression reflect his strong form, bolstered by recent performances, with a hint of camaraderie and team spirit emanating from his demeanor. There are no signs of injury, showcasing his readiness to contribute to the team, embodying the tireless work ethic and spirit described in his bio."}
|
data/huge-league/players/Everglade_FC_16.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 16, "name": "Michael Martin", "age": 26, "nationality": "USA", "shirt_number": 16, "position": "Central Mid", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 5, "assists": 8, "yellow_cards": 2, "red_cards": 0, "bio": "Michael Martin, a vibrant midfielder hailing from the wetlands of South Florida, dazzles with his left foot precision and uncanny ability to read the game. His agile dribbling and eye for a pass electrify the field, embodying the flashy essence of Everglade FC, making him a cornerstone in their relentless attack."}
|
|
|
1 |
+
{"number": 16, "name": "Michael Martin", "age": 26, "nationality": "USA", "shirt_number": 16, "position": "Central Mid", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 5, "assists": 8, "yellow_cards": 2, "red_cards": 0, "bio": "Michael Martin, a vibrant midfielder hailing from the wetlands of South Florida, dazzles with his left foot precision and uncanny ability to read the game. His agile dribbling and eye for a pass electrify the field, embodying the flashy essence of Everglade FC, making him a cornerstone in their relentless attack.", "profile_pic": "A realistic portrait of Michael Martin, a 26-year-old American soccer player standing confidently in his Everglade FC team kit. He has a lean athletic build, standing at 180 cm tall and weighing 75 kg, showcasing his well-defined muscles and agility. \n\nHis facial features include a warm smile, sharp jawline, and high cheekbones, with medium-length wavy dark hair slightly tousled. His bright eyes exude enthusiasm and intelligence, hinting at his vibrant personality. He has a light tan, reflecting his South Florida roots.\n\nMichael is wearing the Everglade FC home jersey, adorned with the team's green and blue colors, featuring subtle swamp-themed motifs. His shirt number, 16, is displayed prominently on the back. He has matching shorts and vibrant cleats that add a touch of flair, embodying the team's flashy essence.\n\nIn terms of pose, he stands with one foot slightly forward, hands casually resting on his hips, exuding confidence and readiness. A subtle smile on his face reflects his good form, as he enjoys a solid overall rating of 82. The background is a blurred image of a soccer field with fans in the stands, creating a dynamic atmosphere. The mood is energetic and hopeful, capturing the anticipation for a match day as he represents his team from the bench, eagerly awaiting his opportunity to shine on the pitch."}
|
data/huge-league/players/Everglade_FC_17.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 17, "name": "Zachary Johnson", "age": 22, "nationality": "USA", "shirt_number": 17, "position": "Attacking Mid", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 0, "bio": "Zachary Johnson, a talented 22-year-old attacking midfielder from the USA, dazzles on the field with his left foot's finesse. Known for his rapid bursts through defenses and a flair for the dramatic, he embodies the wild spirit of Everglade FC. Despite his youth, his vision and creativity often steal the spotlight, making him a pivotal player in every match."}
|
|
|
1 |
+
{"number": 17, "name": "Zachary Johnson", "age": 22, "nationality": "USA", "shirt_number": 17, "position": "Attacking Mid", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 0, "bio": "Zachary Johnson, a talented 22-year-old attacking midfielder from the USA, dazzles on the field with his left foot's finesse. Known for his rapid bursts through defenses and a flair for the dramatic, he embodies the wild spirit of Everglade FC. Despite his youth, his vision and creativity often steal the spotlight, making him a pivotal player in every match.", "profile_pic": "A realistic portrait of Zachary Johnson, a 22-year-old American professional soccer player. He stands confidently, with an athletic build, measuring 178 cm in height and weighing 72 kg. His youthful face features sharp cheekbones, a determined expression, and expressive green eyes that reflect his dynamic personality. He has short, tousled dark hair with a slight wave, hinting at his playful nature.\n\nDressed in the Everglade FC team kit, he wears a vibrant green home jersey adorned with white accents, the number 17 prominently displayed on his chest and back. His shorts are matching green, and his black cleats are slightly muddy, suggesting a recent match. The kit is complete with his left foot slightly forward, showcasing his preferred foot ready for action.\n\nThe background is blurred to emphasize him, featuring hints of a soccer field under bright stadium lights, creating an atmosphere filled with energy and anticipation. His posture is relaxed yet poised, reflecting his strong form and confidence, with no signs of injury. This is a moment of calm before the excitement of a match, capturing the essence of a rising star in professional soccer."}
|
data/huge-league/players/Everglade_FC_18.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 18, "name": "Ryan Martinez", "age": 28, "nationality": "USA", "shirt_number": 18, "position": "Forward/Winger", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 0, "bio": "Ryan Martinez, a dazzling forward with a penchant for dramatic flair, thrives in the unpredictable rhythm of the game. Hailing from the vibrant streets of Miami, his left-footed strikes often leave defenders in despair, while his charismatic presence on the pitch ignites the spirit of Everglade FC. Known for weaving through defenses with hypnotic footwork, he embodies the fierce pride of the wetlands he represents."}
|
|
|
1 |
+
{"number": 18, "name": "Ryan Martinez", "age": 28, "nationality": "USA", "shirt_number": 18, "position": "Forward/Winger", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 0, "bio": "Ryan Martinez, a dazzling forward with a penchant for dramatic flair, thrives in the unpredictable rhythm of the game. Hailing from the vibrant streets of Miami, his left-footed strikes often leave defenders in despair, while his charismatic presence on the pitch ignites the spirit of Everglade FC. Known for weaving through defenses with hypnotic footwork, he embodies the fierce pride of the wetlands he represents.", "profile_pic": "A realistic portrait of Ryan Martinez, a 28-year-old American soccer player standing confidently in a dynamic pose on a soccer field. He is 178 cm tall and weighs 75 kg, showcasing a fit and athletic build. His facial features include sharp cheekbones, a determined expression, and a slight hint of mischief in his dark brown eyes, reflecting his charismatic and vibrant personality. He has short, slightly wavy black hair, styled neatly, and a well-groomed beard that adds to his confident demeanor.\n\nRyan is wearing the Everglade FC team kit, which features a striking combination of deep green and bright aqua, symbolizing the lush wetlands. The shirt has his number 18 prominently displayed on the back and is paired with matching shorts and socks. His left foot is lifted slightly, suggesting readiness to make a play, while his right foot is firmly planted on the ground.\n\nThe background showcases a blurred stadium filled with excited fans, capturing the electrifying atmosphere of matchday. The overall mood is energetic, highlighting his strong form (rating of 7) as he strikes a pose that conveys both flair and focus. There are no visible signs of injury, emphasizing his readiness to contribute on the field. The image radiates the spirit and pride of both Ryan Martinez and Everglade FC, illustrating his role as a forward and the dramatic flair he brings to the game."}
|
data/huge-league/players/Everglade_FC_19.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 19, "name": "Ryan Moore", "age": 29, "nationality": "USA", "shirt_number": 19, "position": "Striker", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 183, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 22, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Ryan Moore, a dynamic striker from the wetlands of Miami, captivates fans with his electrifying speed and exquisite footwork. Known for his ability to weave through defenders like a heron gliding over water, he's a game-changer on the pitch. With an unwavering determination and a fierce pride in his roots, he consistently brings a touch of flair to Everglade FC's vibrant style of play."}
|
|
|
1 |
+
{"number": 19, "name": "Ryan Moore", "age": 29, "nationality": "USA", "shirt_number": 19, "position": "Striker", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 183, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 22, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Ryan Moore, a dynamic striker from the wetlands of Miami, captivates fans with his electrifying speed and exquisite footwork. Known for his ability to weave through defenders like a heron gliding over water, he's a game-changer on the pitch. With an unwavering determination and a fierce pride in his roots, he consistently brings a touch of flair to Everglade FC's vibrant style of play.", "profile_pic": "A realistic portrait of Ryan Moore, a 29-year-old professional soccer player with an athletic build, standing at 183 cm and weighing 78 kg. He has an intense expression, showcasing his determination and confidence. His facial features include a strong jawline, sharp cheekbones, and tousled dark hair, reflecting his vibrant personality. He wears the Everglade FC team kit, primarily in shades of green and blue, with the number 19 prominently displayed on the back. The kit is modern and slick, with sponsor logos tastefully integrated. \n\nHe is posed slightly forward, with one foot positioned confidently in front of the other, as if ready for action, capturing the essence of a striker. The background is a blurred stadium filled with cheering fans, evoking the energy of a matchday. The lighting is bright, highlighting his athletic physique and the sheen of his kit. There are no signs of injury; instead, he radiates a mood of enthusiasm and readiness, embodying his excellent form rating of 7. His posture conveys agility and poise, perfectly representing a dynamic player prepared to make an impact on the pitch."}
|
data/huge-league/players/Everglade_FC_2.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 2, "name": "Matthew Garcia", "age": 32, "nationality": "USA", "shirt_number": 2, "position": "Left Back", "preferred_foot": "Left", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 76, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 5, "assists": 12, "yellow_cards": 3, "red_cards": 1, "bio": "Matthew Garcia, a left back with a fierce competitive spirit, thrives in the electric atmosphere of Everglade FC. His dynamic runs down the flank and tactical awareness make him a key player in both defense and attacking plays. Known for his precise crosses and fierce tackles, he embodies the untamed energy of Miami's wetlands."}
|
|
|
1 |
+
{"number": 2, "name": "Matthew Garcia", "age": 32, "nationality": "USA", "shirt_number": 2, "position": "Left Back", "preferred_foot": "Left", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 76, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 5, "assists": 12, "yellow_cards": 3, "red_cards": 1, "bio": "Matthew Garcia, a left back with a fierce competitive spirit, thrives in the electric atmosphere of Everglade FC. His dynamic runs down the flank and tactical awareness make him a key player in both defense and attacking plays. Known for his precise crosses and fierce tackles, he embodies the untamed energy of Miami's wetlands.", "profile_pic": "A realistic portrait of Matthew Garcia, a 32-year-old professional soccer player, standing confidently in his team kit for Everglade FC. He is 178 cm tall and weighs 76 kg, showcasing an athletic build. His left foot is slightly forward, hinting at his preferred playing style as a left back. \n\nMatthew has a strong jawline, short dark hair styled with a slight tousle, and a focused expression that captures his fierce competitive spirit. His eyes reflect determination and a passion for the game, characteristic of his vibrant personality. He has a light tan, indicative of his time spent playing under the Miami sun.\n\nHe is wearing the Everglade FC home kit, featuring a bright green jersey with white and dark green accents, complemented by black shorts and socks. His shirt number, 2, is prominently displayed on the back of his jersey. \n\nThe background suggests a lively matchday atmosphere with stadium lights and fans blurred in the distance, amplifying the electric vibe of a game day. Matthew's confident stance conveys his strong form rating, and there are no signs of injury, emphasizing his readiness to perform. The mood is upbeat and focused, capturing the essence of a determined athlete in peak condition."}
|
data/huge-league/players/Everglade_FC_20.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 20, "name": "Andrew Davis", "age": 19, "nationality": "USA", "shirt_number": 20, "position": "Left Wing", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 1, "bio": "Andrew Davis, known for his dazzling footwork and lightning speed, embodies the essence of Everglade FC. With roots in the wetlands of Miami, he plays with a fierce pride, often leaving defenders grasping at air as he twists and turns down the left flank. His electrifying presence on the pitch, combined with an uncanny ability to find teammates in the box, makes him a pivotal player for his team."}
|
|
|
1 |
+
{"number": 20, "name": "Andrew Davis", "age": 19, "nationality": "USA", "shirt_number": 20, "position": "Left Wing", "preferred_foot": "Right", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 72, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 1, "bio": "Andrew Davis, known for his dazzling footwork and lightning speed, embodies the essence of Everglade FC. With roots in the wetlands of Miami, he plays with a fierce pride, often leaving defenders grasping at air as he twists and turns down the left flank. His electrifying presence on the pitch, combined with an uncanny ability to find teammates in the box, makes him a pivotal player for his team.", "profile_pic": "A realistic portrait of a young professional soccer player, Andrew Davis, standing confidently on the field wearing the Everglade FC home kit. He is 19 years old, with a height of 178 cm and weighing 72 kg. His athletic build is accentuated by his fitted jersey, showcasing his number 20 on the back. Andrew has a youthful, determined face with sharp cheekbones and an attractive smile, embodying a blend of charisma and competitiveness. His hair is styled in a modern, slightly messy cut, and he has bright, expressive eyes that exude confidence and enthusiasm. \n\nThe team kit features vibrant green and blue colors, reflecting the essence of the wetlands, with the Everglade FC logo prominently displayed on the chest. He stands in a dynamic pose, slightly leaning forward with his right foot lifted in a poised dribbling action, as if ready to dart past an invisible defender. The background captures a blurred soccer field with goal posts, while the lighting highlights him, creating an electrifying atmosphere. His mood is upbeat and focused, showcasing his strong form, having just completed a successful match without any injury concerns."}
|
data/huge-league/players/Everglade_FC_21.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 21, "name": "Ryan Brown", "age": 21, "nationality": "USA", "shirt_number": 21, "position": "Right Wing", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 0, "bio": "Ryan Brown is a dynamic Right Wing known for his blistering pace and audacious footwork. Raised in the vibrant streets of Miami, he embodies the fierce spirit of Everglade FC, dazzling fans with every touch. His left foot sends chills down defenders' spines, making him a constant threat. A true team player, Ryan thrives on the big stage, often taking it upon himself to turn the tide in tight matches."}
|
|
|
1 |
+
{"number": 21, "name": "Ryan Brown", "age": 21, "nationality": "USA", "shirt_number": 21, "position": "Right Wing", "preferred_foot": "Left", "role": "Bench", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 0, "bio": "Ryan Brown is a dynamic Right Wing known for his blistering pace and audacious footwork. Raised in the vibrant streets of Miami, he embodies the fierce spirit of Everglade FC, dazzling fans with every touch. His left foot sends chills down defenders' spines, making him a constant threat. A true team player, Ryan thrives on the big stage, often taking it upon himself to turn the tide in tight matches.", "profile_pic": "Create a portrait of a 21-year-old male soccer player, Ryan Brown, standing confidently on the pitch. He is 178 cm tall and weighs 70 kg, showcasing a lean and athletic build. His skin tone is a medium brown, reflecting his American nationality, with a short, slicked-back hairstyle that highlights his intense, focused expression.\n\nHe has high cheekbones, bright hazel eyes, and a friendly smile that conveys his charismatic personality. He wears the blue and green team kit of Everglade FC, with the number 21 prominently displayed on his shirt. The kit is made of modern, breathable fabric, with subtle patterns that suggest movement and agility. His left foot is slightly forward, suggesting readiness and dynamic energy, indicative of his position as a Right Wing.\n\nThe backdrop features a soft-focus stadium filled with cheering fans, creating an electrifying atmosphere. The lighting captures the mid-afternoon sun, casting a golden hue that emphasizes his confident stance and shining kit. The mood is upbeat and energetic, reflecting his good form, with visible excitement hinting at recent successes, including 12 goals and 9 assists this season.\n\nRyan\u2019s expression conveys determination and a hint of playfulness, symbolizing his audacious nature on the field. There are no signs of injury, presenting him as a fit and confident athlete ready to take on any challenge."}
|
data/huge-league/players/Everglade_FC_22.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 22, "name": "Ryan Martinez", "age": 25, "nationality": "USA", "shirt_number": 22, "position": "Various", "preferred_foot": "Right", "role": "Reserve/Prospect", "team": "Everglade FC", "height_cm": 182, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 10, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "With his nimble footwork and explosive pace, Ryan Martinez dances down the flanks like a breeze through the Everglades. Proud of his roots, he embodies a relentless spirit, often leaving defenders bewildered with his flashy dribbles. Known for his creative flair on the pitch, he combines skill and tenacity, making him a thrilling player to watch in every match."}
|
|
|
1 |
+
{"number": 22, "name": "Ryan Martinez", "age": 25, "nationality": "USA", "shirt_number": 22, "position": "Various", "preferred_foot": "Right", "role": "Reserve/Prospect", "team": "Everglade FC", "height_cm": 182, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 10, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "With his nimble footwork and explosive pace, Ryan Martinez dances down the flanks like a breeze through the Everglades. Proud of his roots, he embodies a relentless spirit, often leaving defenders bewildered with his flashy dribbles. Known for his creative flair on the pitch, he combines skill and tenacity, making him a thrilling player to watch in every match.", "profile_pic": "A portrait of Ryan Martinez, a 25-year-old professional soccer player from the USA. He stands confidently at 182 cm tall and weighs 75 kg, showcasing an athletic build. His facial features include a determined expression, with sharp cheekbones and a slight smile, reflecting his lively personality. He has dark brown, slightly curly hair, and a well-groomed beard that adds to his charismatic vibe.\n\nRyan is dressed in the Everglade FC team kit, which features vibrant green and blue colors, symbolizing the lush landscapes of the Everglades. The kit has the number 22 prominently displayed on his back, along with the team badge on the left chest. He's positioned slightly to the right, with one foot slightly forward, as if he\u2019s ready to sprint onto the field, showing his agility and readiness to play.\n\nThe background is subtly blurred to emphasize his figure, capturing the excitement of matchday with hints of the stadium and fans. His stance conveys confidence and focus, highlighting his strong form, as he does not display any signs of injury. Bright, natural lighting enhances his features and the colors of his kit, creating an inviting and dynamic image full of energy and anticipation."}
|
data/huge-league/players/Everglade_FC_23.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 23, "name": "Brian Davis", "age": 27, "nationality": "USA", "shirt_number": 23, "position": "Various", "preferred_foot": "Right", "role": "Reserve/Prospect", "team": "Everglade FC", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 10, "assists": 5, "yellow_cards": 3, "red_cards": 0, "bio": "Brian Davis, a dynamic player known for his dazzling footwork and unpredictable moves, embodies the wild spirit of Everglade FC. At 27, he has honed his craft in the humid conditions of Miami, turning every game into an electrifying display of skill and determination. His right foot delivers precision while his flair on the ball leaves defenders in his wake, making him a beloved figure amongst the fans."}
|
|
|
1 |
+
{"number": 23, "name": "Brian Davis", "age": 27, "nationality": "USA", "shirt_number": 23, "position": "Various", "preferred_foot": "Right", "role": "Reserve/Prospect", "team": "Everglade FC", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 10, "assists": 5, "yellow_cards": 3, "red_cards": 0, "bio": "Brian Davis, a dynamic player known for his dazzling footwork and unpredictable moves, embodies the wild spirit of Everglade FC. At 27, he has honed his craft in the humid conditions of Miami, turning every game into an electrifying display of skill and determination. His right foot delivers precision while his flair on the ball leaves defenders in his wake, making him a beloved figure amongst the fans.", "profile_pic": "A portrait of Brian Davis, a 27-year-old American soccer player, standing confidently in an Everglade FC team kit. He is 180 cm tall and weighs 75 kg, showcasing a fit and athletic physique that reflects his dynamic playing style. His right foot is slightly forward, hinting at his preferred foot for striking the ball.\n\nBrian has short, dark brown hair, a light stubble on his chin, and a focused yet approachable expression, capturing his vibrant personality. His bright eyes convey determination and enthusiasm, resonating with his reputation for dazzling footwork and skill on the field.\n\nHe wears the Everglade FC home jersey, which is predominantly bright green with white accents and the team logo emblazoned on the chest. The shorts match the jersey, complementing the overall look. His shirt number, 23, is clearly visible on both the back and the front of the kit.\n\nIn the background, a softly blurred image of a soccer stadium filled with fans highlights the lively atmosphere of a matchday. The lighting is bright and vivid, emphasizing the vibrant colors of the kit and creating an energizing vibe. Brian stands tall with his arms crossed, exuding confidence and readiness, reflecting his current form rating of 7 and his status as a reserve prospect ready to make a significant impact on the field. He is injury-free and excited, embodying the essence of his team and Miami\u2019s lively spirit."}
|
data/huge-league/players/Everglade_FC_3.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 3, "name": "Brandon Jones", "age": 21, "nationality": "USA", "shirt_number": 3, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 184, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 2, "assists": 1, "yellow_cards": 3, "red_cards": 0, "bio": "Brandon Jones is a formidable Center Back known for his robust tackling and aerial dominance. With a fierce determination and an unwavering spirit, he anchors the Everglade FC defense while showcasing a remarkable ability to read the game. Hailing from the vibrant streets of Miami, his style is infused with the artistry of the wetlands, making him both a wall and a playmaker."}
|
|
|
1 |
+
{"number": 3, "name": "Brandon Jones", "age": 21, "nationality": "USA", "shirt_number": 3, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 184, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 2, "assists": 1, "yellow_cards": 3, "red_cards": 0, "bio": "Brandon Jones is a formidable Center Back known for his robust tackling and aerial dominance. With a fierce determination and an unwavering spirit, he anchors the Everglade FC defense while showcasing a remarkable ability to read the game. Hailing from the vibrant streets of Miami, his style is infused with the artistry of the wetlands, making him both a wall and a playmaker.", "profile_pic": "A realistic portrait of Brandon Jones, a 21-year-old professional soccer player. He stands confidently in a dynamic pose, wearing the Everglade FC team kit which features vibrant shades of green and blue, symbolizing the wetlands of his Miami hometown. His shirt number, 3, is emblazoned on his back. \n\nBrandon's athletic build is highlighted by his height of 184 cm and weight of 78 kg. He has short, dark hair styled neatly, and his determined expression reflects his fierce personality. His sharp jawline and defined cheekbones convey both strength and charisma, with a hint of sweat glistening on his forehead, indicative of his active and robust playing style.\n\nThe background captures the essence of a matchday atmosphere, with blurred fans in the stands and a hint of vibrant greenery to nod to the team's identity. His posture is assertive, with his right foot slightly forward, showcasing his preference for that side, while his eyes gaze confidently into the distance, signaling focus and determination. The mood is electric, embodying his high form rating of 8, and there's an absence of injury, projecting readiness and confidence as he stands as a formidable anchor of defense."}
|
data/huge-league/players/Everglade_FC_4.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 4, "name": "Zachary Garcia", "age": 29, "nationality": "USA", "shirt_number": 4, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 3, "assists": 1, "yellow_cards": 5, "red_cards": 0, "bio": "Zachary Garcia, a formidable Center Back, commands the pitch with a blend of tenacity and tactical acumen. Hailing from the bustling streets of Miami, he embodies the vibrant spirit of Everglade FC, often throwing himself into the fray to thwart attackers. With his trademark sliding tackles and keen sense of positioning, he remains a cornerstone of the defense, inspiring teammates with his unwavering hustle and determination."}
|
|
|
1 |
+
{"number": 4, "name": "Zachary Garcia", "age": 29, "nationality": "USA", "shirt_number": 4, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 3, "assists": 1, "yellow_cards": 5, "red_cards": 0, "bio": "Zachary Garcia, a formidable Center Back, commands the pitch with a blend of tenacity and tactical acumen. Hailing from the bustling streets of Miami, he embodies the vibrant spirit of Everglade FC, often throwing himself into the fray to thwart attackers. With his trademark sliding tackles and keen sense of positioning, he remains a cornerstone of the defense, inspiring teammates with his unwavering hustle and determination.", "profile_pic": "A detailed portrait of Zachary Garcia, a 29-year-old male soccer player from the USA. He stands confidently at 182 cm tall and weighs 78 kg, with a strong, athletic build indicative of a seasoned center back. His facial features reflect determination and charisma, with chiseled jawlines, short dark hair, and a focused gaze that captures his vibrant spirit. \n\nZachary is wearing the Everglade FC team kit, which consists of a deep green jersey with white accents, displaying his number 4 prominently on the back. His shorts match the jersey, and he sports black and white cleats suitable for a solid grip on the pitch. The kit fits snugly, emphasizing his muscular frame, while also capturing the essence of his energetic and dynamic playing style.\n\nIn the background, a soccer field is faintly visible, with goalposts and dynamic stadium lights adding to the matchday ambiance. Zachary assumes a poised stance, slightly bending his knees and leaning forward, ready to spring into action, embodying the form of a player in prime condition. His expression is one of focus and resolve, perfectly reflecting his status as a starter, symbolizing his tenacity on the field without any visible signs of injury. Overall, the scene conveys a sense of confidence, strength, and readiness, inviting viewers to appreciate the essence of a dedicated professional athlete."}
|
data/huge-league/players/Everglade_FC_5.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 5, "name": "Brandon Hernandez", "age": 17, "nationality": "USA", "shirt_number": 5, "position": "Right Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 65, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 2, "assists": 5, "yellow_cards": 3, "red_cards": 1, "bio": "Brandon Hernandez, a dynamic Right Back for Everglade FC, dazzles fans with his blistering pace and fearless tackles. Proud of his Miami roots, he embodies the bustling spirit of the Everglades, often igniting the pitch with his relentless energy and flair. At just 17, his maturity on the field is impressive, making him a vital part of the team\u2019s fast-paced play."}
|
|
|
1 |
+
{"number": 5, "name": "Brandon Hernandez", "age": 17, "nationality": "USA", "shirt_number": 5, "position": "Right Back", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 65, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 2, "assists": 5, "yellow_cards": 3, "red_cards": 1, "bio": "Brandon Hernandez, a dynamic Right Back for Everglade FC, dazzles fans with his blistering pace and fearless tackles. Proud of his Miami roots, he embodies the bustling spirit of the Everglades, often igniting the pitch with his relentless energy and flair. At just 17, his maturity on the field is impressive, making him a vital part of the team\u2019s fast-paced play.", "profile_pic": "A young soccer player, Brandon Hernandez, stands confidently at the forefront of the image. At 17 years old, he has a lean but athletic build, measuring 178 cm tall and weighing 65 kg. His short, dark hair is slightly tousled, and his warm brown eyes reflect determination and enthusiasm. He is wearing the official team kit for Everglade FC, which features a striking combination of vibrant green and subtle earth tones, reminiscent of the Everglades' lush landscapes. The number 5 is prominently displayed on his back in white lettering. \n\nHe is positioned in a dynamic pose with one foot slightly forward, exuding energy and readiness, a slight smirk suggesting confidence and passion for the game. The background captures a blurred stadium setting, hinting at a match day atmosphere, with fans cheering in the stands and bright floodlights illuminating the field. Brandon's expression conveys a mix of focus and excitement, embodying the spirit of a young athlete on the rise. The mood is vibrant and uplifting, highlighting his impressive form with an overall rating of 78, contributing to the lively ambiance of the moment."}
|
data/huge-league/players/Everglade_FC_6.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 6, "name": "Austin Jackson", "age": 23, "nationality": "USA", "shirt_number": 6, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 5, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Austin Jackson, a dynamic midfielder from the heart of Florida, embodies the spirited essence of Everglade FC. His lightning-fast footwork and tenacious tackling make him a formidable presence on the pitch. With roots deeply embedded in the wetlands, Austin plays with a blend of grit and flair, often turning defensive plays into thrilling counter-attacks that leave fans cheering and opponents bewildered."}
|
|
|
1 |
+
{"number": 6, "name": "Austin Jackson", "age": 23, "nationality": "USA", "shirt_number": 6, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 70, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 5, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Austin Jackson, a dynamic midfielder from the heart of Florida, embodies the spirited essence of Everglade FC. His lightning-fast footwork and tenacious tackling make him a formidable presence on the pitch. With roots deeply embedded in the wetlands, Austin plays with a blend of grit and flair, often turning defensive plays into thrilling counter-attacks that leave fans cheering and opponents bewildered.", "profile_pic": "A press photo of Austin Jackson, a 23-year-old American soccer player. He stands confidently at 178 cm tall and weighs 70 kg, showcasing an athletic build typical of a professional defensive midfielder. His sharp facial features include a strong jawline, high cheekbones, and a focused expression that reflects his spirited personality. Austin's dark brown hair is cropped short, and his green eyes exude determination. \n\nHe dons the vibrant team kit of Everglade FC, which features a mix of emerald green and navy blue with accents reminiscent of the Florida wetlands. The number 6 is prominently displayed on his shirt, alongside the team logo on the chest. \n\nAustin is posed in a slight athletic stance, one foot forward, ready for action, with a soccer ball at his feet. The background showcases a stadium filled with fans, adding vibrancy and energy to the scene. The mood is upbeat, reflecting his solid form rating of 7, as he smiles subtly, radiating confidence and readiness, perfectly embodying the essence of a starter who\u2019s on top of his game. There are no signs of injury, emphasizing his strength and capability on the field."}
|
data/huge-league/players/Everglade_FC_7.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 7, "name": "Ryan Williams", "age": 25, "nationality": "USA", "shirt_number": 7, "position": "Central Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Ryan Williams, a dynamic central midfielder from the wetlands of Miami, embodies Everglade FC's electric style. Known for his dazzling footwork and fearless tackles, he masterfully orchestrates play while bringing a fiery passion to the pitch that inspires his teammates. His roots in the vibrant ecosystem shape his unpredictable game, making him a fan favorite and an essential starter for the team."}
|
|
|
1 |
+
{"number": 7, "name": "Ryan Williams", "age": 25, "nationality": "USA", "shirt_number": 7, "position": "Central Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Ryan Williams, a dynamic central midfielder from the wetlands of Miami, embodies Everglade FC's electric style. Known for his dazzling footwork and fearless tackles, he masterfully orchestrates play while bringing a fiery passion to the pitch that inspires his teammates. His roots in the vibrant ecosystem shape his unpredictable game, making him a fan favorite and an essential starter for the team.", "profile_pic": "A realistic portrait of Ryan Williams, a 25-year-old professional soccer player for Everglade FC. He stands confidently at 178 cm and weighs 75 kg, showcasing a well-built athletic physique. His facial features include a slightly tanned complexion, sharp jawline, and intense green eyes that reflect determination and passion. He has short, tousled dark hair and a slight stubble that gives him a youthful yet rugged charm. \n\nRyan wears the Everglade FC team kit, which consists of a vibrant green jersey adorned with the team's logo on the left chest and his shirt number 7 prominently displayed on the back. His shorts are a complementary dark shade and his socks match the team's color scheme, completing the professional look. \n\nIn the portrait, he stands in a dynamic pose, one arm slightly bent with a soccer ball resting under his right foot, demonstrating confidence and a readiness to play. The background hints at a stadium with blurred cheering crowds, capturing the electric atmosphere of matchday. Ryan's expression is focused and passionate, reflecting his current excellent form, indicating no injuries and a high overall rating of 85, embodying his role as a starter and leader on the field."}
|
data/huge-league/players/Everglade_FC_8.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 8, "name": "Nicholas Jackson", "age": 32, "nationality": "USA", "shirt_number": 8, "position": "Central Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 76, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 1, "bio": "Nicholas Jackson, a dynamic Central Midfielder, is known for his razor-sharp passing and tenacious tackling. At 32 years old, he blends experience with youthful exuberance, mesmerizing fans with his flashy footwork and unyielding spirit on the field. Hailing from the vibrant landscapes of the USA, his infectious enthusiasm and flair embody the wild essence of Everglade FC, captivating the South Florida crowd with every touch."}
|
|
|
1 |
+
{"number": 8, "name": "Nicholas Jackson", "age": 32, "nationality": "USA", "shirt_number": 8, "position": "Central Mid", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 76, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 1, "bio": "Nicholas Jackson, a dynamic Central Midfielder, is known for his razor-sharp passing and tenacious tackling. At 32 years old, he blends experience with youthful exuberance, mesmerizing fans with his flashy footwork and unyielding spirit on the field. Hailing from the vibrant landscapes of the USA, his infectious enthusiasm and flair embody the wild essence of Everglade FC, captivating the South Florida crowd with every touch.", "profile_pic": "A realistic portrait of Nicholas Jackson, a 32-year-old American professional soccer player. He stands confidently at 178 cm and weighs 76 kg, showcasing a strong yet athletic build. His right foot is slightly forward, emphasizing his central midfielder position. He has a warm smile, revealing a mix of determination and approachability in his bright blue eyes. His features are defined, with short, neatly styled black hair and a slight stubble that adds to his charming, youthful vibe.\n\nNicholas wears the Everglade FC home kit, which consists of a vibrant green jersey with the team logo emblazoned on the left chest, paired with matching shorts. The shirt is slightly fitted, accentuating his athletic frame, and he sports the number 8 prominently displayed on both his jersey and shorts.\n\nThe background is a blurred view of a packed stadium under the bright South Florida sun, capturing the energy of the fans. Nicholas stands in a dynamic pose, slightly tilted to one side, with one foot resting on a soccer ball. His arms are crossed, signaling confidence and readiness. His overall mood radiates positivity, enhanced by his strong form rating of 7 and recent performance stats, showcasing both his goals and assists. The atmosphere communicates excitement and anticipation, reflecting his status as a starter without any indication of injury."}
|
data/huge-league/players/Everglade_FC_9.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 9, "name": "Andrew Anderson", "age": 24, "nationality": "USA", "shirt_number": 9, "position": "Left Wing", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "Andrew Anderson, a 24-year-old virtuoso of the pitch, dances down the left wing with an electrifying agility that mirrors the swaying of Everglade marshes. Known for his explosive speed and pinpoint crosses, he embodies the fiery spirit of Miami, leaving defenders in his wake while maintaining a relentless drive to conquer every game."}
|
|
|
1 |
+
{"number": 9, "name": "Andrew Anderson", "age": 24, "nationality": "USA", "shirt_number": 9, "position": "Left Wing", "preferred_foot": "Right", "role": "Starter", "team": "Everglade FC", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "Andrew Anderson, a 24-year-old virtuoso of the pitch, dances down the left wing with an electrifying agility that mirrors the swaying of Everglade marshes. Known for his explosive speed and pinpoint crosses, he embodies the fiery spirit of Miami, leaving defenders in his wake while maintaining a relentless drive to conquer every game.", "profile_pic": "A realistic portrait of Andrew Anderson, a 24-year-old American soccer player, standing confidently on the pitch. He has a lean, athletic build, standing at 178 cm and weighing 75 kg. His short, slightly tousled dark hair complements his determined expression. \n\nAndrew's facial features are defined, with sharp cheekbones and an intense gaze that reflects his competitive nature. He has a light tan indicative of time spent in the Miami sun, and his enthusiasm is palpable. Dressed in the vibrant home kit of Everglade FC, he wears a bright green jersey with the number 9 prominently displayed on the back, paired with navy shorts and matching green socks. \n\nThe kit features subtle patterns resembling the textures of Miami's natural landscape, symbolizing both his connection to the city and the team. Standing in a dynamic pose, he has one foot slightly forward, ready to sprint down the wing, showcasing his right foot poised as if about to deliver a perfect cross. \n\nThe backdrop captures a sunlit stadium filled with cheering fans, emphasizing a matchday atmosphere. The mood is vibrant and electrifying, reflecting his current form rating of 8, with a look of fierce determination that suggests he is ready to take on any challenge, showcasing his prowess as a key player without injury."}
|
data/huge-league/players/Fraser_Valley_United_1.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 1, "name": "Noah Martin", "age": 21, "nationality": "Canada", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 186, "weight_kg": 82, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 1, "red_cards": 0, "bio": "Noah Martin is a dynamic goalkeeper known for his cat-like reflexes and commanding presence in the box. Hailing from Abbotsford, he embodies the spirit of Fraser Valley United, displaying a fearless attitude and unwavering dedication. A left-footed kicker, he often surprises opponents with precision goal kicks and adept ball distribution, making him a key asset in transitioning from defense to attack."}
|
|
|
1 |
+
{"number": 1, "name": "Noah Martin", "age": 21, "nationality": "Canada", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 186, "weight_kg": 82, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 1, "red_cards": 0, "bio": "Noah Martin is a dynamic goalkeeper known for his cat-like reflexes and commanding presence in the box. Hailing from Abbotsford, he embodies the spirit of Fraser Valley United, displaying a fearless attitude and unwavering dedication. A left-footed kicker, he often surprises opponents with precision goal kicks and adept ball distribution, making him a key asset in transitioning from defense to attack.", "profile_pic": "A realistic portrait of Noah Martin, a 21-year-old Canadian goalkeeper standing confidently in his team kit for Fraser Valley United. He is 186 cm tall, with an athletic build weighing 82 kg. Noah has a youthful yet determined expression, showcasing his cat-like reflexes and commanding presence. His facial features include sharp cheekbones, slightly tousled dark hair, and a focused gaze that reflects his fearless attitude. He is wearing a vibrant blue jersey with the team logo prominently displayed on the chest, and his shirt number 1 is visible on the back. The shorts and socks are coordinated in the team's colors, completing the kit.\n\nThe background is a soft focus of a soccer stadium, enhancing the matchday atmosphere. Noah is posed in a slight forward lean, hands on hips, conveying readiness and confidence. He is wearing goalkeeper gloves and has a slight smirk that captures his unwavering dedication to his role. The overall mood is one of determination and focus, reflecting his current high form, with no signs of injury, emphasizing his status as a starter for the team."}
|
data/huge-league/players/Fraser_Valley_United_10.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 10, "name": "Thomas Walker", "age": 30, "nationality": "Canada", "shirt_number": 10, "position": "Striker", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 22, "assists": 10, "yellow_cards": 3, "red_cards": 0, "bio": "Thomas Walker, a dynamic striker from Canada, combines speed and precision with a keen eye for goal. Known for his powerful left-footed shots, he is a constant threat in the box. His leadership on the pitch is matched only by his unyielding determination, making him a fan favorite in Abbotsford."}
|
|
|
1 |
+
{"number": 10, "name": "Thomas Walker", "age": 30, "nationality": "Canada", "shirt_number": 10, "position": "Striker", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 22, "assists": 10, "yellow_cards": 3, "red_cards": 0, "bio": "Thomas Walker, a dynamic striker from Canada, combines speed and precision with a keen eye for goal. Known for his powerful left-footed shots, he is a constant threat in the box. His leadership on the pitch is matched only by his unyielding determination, making him a fan favorite in Abbotsford.", "profile_pic": "A portrait of Thomas Walker, a 30-year-old Canadian professional soccer player. He stands confidently, measuring 182 cm with a solid build weighing 78 kg. His chiseled features reflect intensity and determination, with sharp blue eyes and short, dark hair slightly tousled. His expression exudes a focused charisma, portraying him as a natural leader.\n\nHe is dressed in the Fraser Valley United team kit, which consists of a vibrant red jersey emblazoned with his shirt number, 10, on the front and back. The kit includes white shorts and red socks accented with a subtle white stripe. The club's emblem is visible on the left chest of the shirt.\n\nThomas is posed in front of a blurred stadium backdrop, suggesting a matchday atmosphere. His left foot is slightly forward, portraying a sense of movement and energy. There\u2019s a hint of a smile, showcasing his approachable personality, paired with an eagerness that reflects his excellent form, having scored 22 goals and provided 10 assists this season. The absence of any visible injuries further contributes to his display of athletic prowess and readiness, capturing the essence of a passionate striker in peak condition. The overall lighting enhances the vibrancy of the kit and highlights his athletic physique, evoking a sense of anticipation for the game ahead."}
|
data/huge-league/players/Fraser_Valley_United_11.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 11, "name": "Lucas Harris", "age": 32, "nationality": "Canada", "shirt_number": 11, "position": "Right Wing", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 88, "is_injured": false, "form": 7, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 1, "bio": "Lucas Harris, a dynamic right winger from Canada, captivates fans with his electrifying speed and pinpoint crossing ability. With a fierce competitive spirit, he embodies the heart of Fraser Valley United, navigating the pitch with a signature left-footed finesse. His journey from the vineyards of Abbotsford to the professional arena showcases his relentless dedication and sharp tactical awareness, making him a standout player in the league."}
|
|
|
1 |
+
{"number": 11, "name": "Lucas Harris", "age": 32, "nationality": "Canada", "shirt_number": 11, "position": "Right Wing", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 88, "is_injured": false, "form": 7, "goals": 12, "assists": 9, "yellow_cards": 3, "red_cards": 1, "bio": "Lucas Harris, a dynamic right winger from Canada, captivates fans with his electrifying speed and pinpoint crossing ability. With a fierce competitive spirit, he embodies the heart of Fraser Valley United, navigating the pitch with a signature left-footed finesse. His journey from the vineyards of Abbotsford to the professional arena showcases his relentless dedication and sharp tactical awareness, making him a standout player in the league.", "profile_pic": "A press photo portrait of Lucas Harris, a 32-year-old Canadian soccer player. He stands confidently, wearing the Fraser Valley United home kit, which features a bold red and blue design with subtle graphics. The number 11 is prominently displayed on his jersey. Lucas has a fit, athletic build, standing at 178 cm tall and weighing 75 kg. His facial features include a focused expression, short dark hair with a slight wave, and a well-groomed beard, embodying both intensity and charisma. His left foot is slightly forward, hinting at his preferred playing style, while he is captured in a lively pose, showcasing his agility and readiness for the game. The background of the image is a blurred stadium setting, adding a sense of action and anticipation. The lighting emphasizes his strong jawline and determined eyes, reflecting his competitive spirit and dedication to the sport. The mood is vibrant, showcasing confidence and excitement, indicating his excellent form with a rating of 88 and current standing as an important starter for his team, free from injuries."}
|
data/huge-league/players/Fraser_Valley_United_12.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 12, "name": "Mason Lee", "age": 21, "nationality": "Canada", "shirt_number": 12, "position": "Goalkeeper", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 78, "overall_rating": 76, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 1, "red_cards": 0, "bio": "Mason Lee, a dynamic goalkeeper known for his lightning reflexes and commanding presence in the box, embodies the spirit of Fraser Valley United. Raised amidst the vineyards of Abbotsford, he combines rural grit with a sophisticated understanding of the game, often pulling off miraculous saves that leave fans in awe. His passion for soccer is matched only by his unwavering determination to elevate the Canadian talent pool."}
|
|
|
1 |
+
{"number": 12, "name": "Mason Lee", "age": 21, "nationality": "Canada", "shirt_number": 12, "position": "Goalkeeper", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 78, "overall_rating": 76, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 1, "red_cards": 0, "bio": "Mason Lee, a dynamic goalkeeper known for his lightning reflexes and commanding presence in the box, embodies the spirit of Fraser Valley United. Raised amidst the vineyards of Abbotsford, he combines rural grit with a sophisticated understanding of the game, often pulling off miraculous saves that leave fans in awe. His passion for soccer is matched only by his unwavering determination to elevate the Canadian talent pool.", "profile_pic": "A portrait of Mason Lee, a 21-year-old Canadian goalkeeper standing confidently in his team kit for Fraser Valley United. He is 185 cm tall and weighs 78 kg, with an athletic build indicative of an active sportsman. His facial features are sharp, with a slight jawline, a focused expression reflecting his determination and passion for the game. His dark, tousled hair is slightly damp, perhaps from a recent training session, and his brown eyes convey both intensity and a commanding presence.\n\nMason is wearing the Fraser Valley United team's traditional kit: a vibrant blue jersey with subtle white accents, showcasing his shirt number, 12, prominently on the back. The club emblem is placed on the left chest area, reflecting pride in his team. He wears matching blue shorts and high socks, with black soccer cleats designed for agility.\n\nIn this press photo setting, Mason strikes a dynamic pose, slightly bent forward with his hands on his knees, showcasing his readiness for action. The backdrop features a blurred soccer field, hinting at a matchday atmosphere, with faint outlines of cheering fans in the stands. He exudes confidence and determination, having just finished a training session, in peak form with an impressive overall rating of 76. The mood is vibrant and energizing, underscoring his status as a promising talent in Canadian soccer."}
|
data/huge-league/players/Fraser_Valley_United_13.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 13, "name": "Carter Lee", "age": 24, "nationality": "Canada", "shirt_number": 13, "position": "Center Back", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 80, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 2, "assists": 1, "yellow_cards": 3, "red_cards": 0, "bio": "Carter Lee, a dynamic Center Back from Canada, showcases a fierce determination and an unmatched ability to read the game. Known for his aerial prowess and tenacity in tackles, he commands the backline with a presence that intimidates forwards. His journey from rural roots to professional soccer is marked by relentless hard work and an unwavering team spirit, making him a pivotal player for Fraser Valley United."}
|
|
|
1 |
+
{"number": 13, "name": "Carter Lee", "age": 24, "nationality": "Canada", "shirt_number": 13, "position": "Center Back", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 80, "overall_rating": 75, "is_injured": false, "form": 8, "goals": 2, "assists": 1, "yellow_cards": 3, "red_cards": 0, "bio": "Carter Lee, a dynamic Center Back from Canada, showcases a fierce determination and an unmatched ability to read the game. Known for his aerial prowess and tenacity in tackles, he commands the backline with a presence that intimidates forwards. His journey from rural roots to professional soccer is marked by relentless hard work and an unwavering team spirit, making him a pivotal player for Fraser Valley United.", "profile_pic": "A realistic portrait of a 24-year-old Canadian soccer player, Carter Lee, standing tall at 182 cm and weighing 80 kg. He has a strong, athletic build with broad shoulders and defined muscles, emphasizing his role as a Center Back. His short, slightly tousled dark hair frames a focused, intense face, with sharp cheekbones and a determined expression, reflecting his fierce competitive spirit. His deep-set eyes convey confidence and tenacity, hinting at his ability to read the game effectively.\n\nCarter is dressed in the team kit of Fraser Valley United, featuring a navy-blue jersey with white and green accents, showcasing his shirt number 13 on the back. The kit is complemented by matching shorts and knee-length socks, alluding to the team's crest on the left chest. He stands in a slightly angled pose, with his body weight shifted onto one leg, arms crossed confidently over his chest or resting on his hips, embodying a blend of determination and readiness.\n\nThe background captures a professional soccer setting, with the faint outline of a stadium and hints of the team's colors in the stands. The lighting highlights his features, casting soft shadows that enhance his defined jawline. The overall mood is one of confidence, professionalism, and high spirits, indicative of his current strong form and non-injured status, ready to make an impact for his team."}
|
data/huge-league/players/Fraser_Valley_United_14.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 14, "name": "William Harris", "age": 23, "nationality": "Canada", "shirt_number": 14, "position": "Full Back", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "William Harris, a dynamic full back from Canada, is known for his lightning-fast sprints down the flank and impeccable tackling skills. With a tenacious attitude and a keen eye for creating plays, he seamlessly integrates defense and attack. His roots in the Fraser Valley reflect in his dedication and work ethic, making him a fan favorite and a pivotal asset to Fraser Valley United."}
|
|
|
1 |
+
{"number": 14, "name": "William Harris", "age": 23, "nationality": "Canada", "shirt_number": 14, "position": "Full Back", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "William Harris, a dynamic full back from Canada, is known for his lightning-fast sprints down the flank and impeccable tackling skills. With a tenacious attitude and a keen eye for creating plays, he seamlessly integrates defense and attack. His roots in the Fraser Valley reflect in his dedication and work ethic, making him a fan favorite and a pivotal asset to Fraser Valley United.", "profile_pic": "William Harris stands tall at 178 cm, with a well-built physique reflecting his 75 kg weight. At 23 years old, he exhibits youthful energy and determination in his expression. His face features a strong jawline, high cheekbones, and warm brown eyes that convey focus and a competitive spirit. Short, dark hair is styled neatly, and a hint of scruff adds to his rugged charm.\n\nHe is dressed in the home kit of Fraser Valley United: a sleek, vibrant jersey predominantly in shades of green and white, highlighted with dynamic vertical stripes and the team's emblem emblazoned on the chest. The kit is complemented by matching shorts and knee-length socks adorned with subtle patterns, finished off with black cleats.\n\nWilliam strikes a confident pose, one foot slightly forward, exuding readiness and agility, as if he\u2019s just about to burst into action. His arms are relaxed at his sides, but there's an underlying tension in his stance that hints at his talent for transitioning quickly from defense to attack. The backdrop suggests a soccer field with blurred goal posts and vivid green turf, capturing the excitement of match day. The mood is energetic and vibrant, reflecting his solid form with a recent rating of 82 and a successful season, highlighted by his 3 goals and 5 assists. There are no visible signs of injury, emphasizing his readiness to engage in the sport he loves."}
|
data/huge-league/players/Fraser_Valley_United_15.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 15, "name": "Aiden Brown", "age": 17, "nationality": "Canada", "shirt_number": 15, "position": "Defensive Mid", "preferred_foot": "Left", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 72, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Aiden Brown, hailing from the scenic landscapes of Abbotsford, is a dynamic defensive mid known for his tenacity and vision on the field. With an elegant left foot, he often orchestrates play from deep positions, making him a linchpin in Fraser Valley United's midfield. His fearless attitude and commitment to the team have made him a crowd favorite, often seen breaking up opposition attacks and launching quick counterplays."}
|
|
|
1 |
+
{"number": 15, "name": "Aiden Brown", "age": 17, "nationality": "Canada", "shirt_number": 15, "position": "Defensive Mid", "preferred_foot": "Left", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 72, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Aiden Brown, hailing from the scenic landscapes of Abbotsford, is a dynamic defensive mid known for his tenacity and vision on the field. With an elegant left foot, he often orchestrates play from deep positions, making him a linchpin in Fraser Valley United's midfield. His fearless attitude and commitment to the team have made him a crowd favorite, often seen breaking up opposition attacks and launching quick counterplays.", "profile_pic": "Aiden Brown stands confidently in a press photo setting, showcasing his athletic build at 178 cm tall and weighing 72 kg. He appears 17 years old, with a youthful yet determined expression, his sharp facial features reflecting a Canadian heritage. His dark hair is slightly tousled, framing his face, and he sports a light scruff.\n\nWearing the Fraser Valley United team kit, which features a bold combination of navy blue and white, his shirt, number 15, fits snugly, emphasizing his athletic physique. The kit includes a stylish design with the team crest emblazoned on the left chest, and his defensive mid role is highlighted by the sleek shorts and matching socks.\n\nAiden is posed in a dynamic yet relaxed stance with his left foot slightly forward, exuding confidence and readiness. The background features a subtle blur of a soccer pitch, hinting at a matchday atmosphere. He smiles, projecting a sense of camaraderie and enthusiasm, his eyes focused on something off-camera, indicating his commitment to the game. With an overall rating of 85 and strong form at 8, there are no signs of injury on his relaxed posture, further emphasizing his vigorous spirit and determination on the field."}
|
data/huge-league/players/Fraser_Valley_United_16.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 16, "name": "Logan Clark", "age": 26, "nationality": "Canada", "shirt_number": 16, "position": "Central Mid", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 73, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Logan Clark, a dynamic central midfielder, thrives on the pitch with his vision and precise passing. Hailing from the serene landscapes of rural British Columbia, he embodies the spirit of Fraser Valley United. Known for his relentless work ethic and ability to dictate the tempo of the game, Logan is a fan favorite, often dazzling spectators with his cheeky nutmegs and long-range strikes."}
|
|
|
1 |
+
{"number": 16, "name": "Logan Clark", "age": 26, "nationality": "Canada", "shirt_number": 16, "position": "Central Mid", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 73, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Logan Clark, a dynamic central midfielder, thrives on the pitch with his vision and precise passing. Hailing from the serene landscapes of rural British Columbia, he embodies the spirit of Fraser Valley United. Known for his relentless work ethic and ability to dictate the tempo of the game, Logan is a fan favorite, often dazzling spectators with his cheeky nutmegs and long-range strikes.", "profile_pic": "A portrait of Logan Clark, a fictional Canadian professional soccer player, standing confidently in the Fraser Valley United team kit, which features a deep green jersey with white accents and the club logo on the left chest. He wears the number 16 prominently displayed on both the front and back of his shirt. Logan is 26 years old, with a lean yet muscular build, standing at 178 cm tall and weighing 73 kg. He has short, tousled dark hair and sharp features that convey determination and focus. His right foot is slightly forward, symbolizing his preferred kicking foot, while his left hand rests on his hip, exuding a relaxed yet ready-to-play vibe. \n\nHis expression is a mix of concentration and enthusiasm, reflecting his role as a bench player who is eager to make an impact. The background is a blurred image of a soccer stadium filled with cheering fans, capturing the excitement of match day. The lighting is bright and highlights the sheen on his kit, with a slight lens flare to add energy to the scene. Despite being in peak form, there are no indications of injury, showcasing his readiness to contribute on the field. In the portrait, Logan holds a soccer ball in his left hand, ready for action, with his right foot planted firmly on the ground, embodying the spirit of a dedicated midfielder."}
|
data/huge-league/players/Fraser_Valley_United_17.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 17, "name": "Owen Campbell", "age": 23, "nationality": "Canada", "shirt_number": 17, "position": "Attacking Mid", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 70, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "Owen Campbell is a dynamic attacking midfielder known for his exceptional vision and precise passing. Hailing from the heart of Canada, he combines technical skill with a relentless work ethic. His knack for turning defense into attack swiftly has made him a key asset for Fraser Valley United, where he seamlessly integrates creativity and strategy, thrilling fans with his playmaking prowess."}
|
|
|
1 |
+
{"number": 17, "name": "Owen Campbell", "age": 23, "nationality": "Canada", "shirt_number": 17, "position": "Attacking Mid", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 70, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "Owen Campbell is a dynamic attacking midfielder known for his exceptional vision and precise passing. Hailing from the heart of Canada, he combines technical skill with a relentless work ethic. His knack for turning defense into attack swiftly has made him a key asset for Fraser Valley United, where he seamlessly integrates creativity and strategy, thrilling fans with his playmaking prowess.", "profile_pic": "Owen Campbell stands confidently in a press photo for Fraser Valley United, showcasing his vibrant presence as an attacking midfielder. He is 23 years old, with a lean, athletic build\u2014178 cm tall and weighing 70 kg, exuding an aura of agility. His short, tousled dark hair frames a determined face, accentuated by sharp cheekbones and a slight smile that hints at his warm personality. His expressive hazel eyes convey focus and determination, capturing his dynamic spirit on the pitch.\n\nOwen wears the team's home kit: a striking red jersey with white accents, featuring the number 17 prominently on his chest and back. The kit is completed with matching red shorts and white socks, displaying the Fraser Valley United logo on his left chest and the league patch on his right arm, establishing his identity within the team. \n\nHe strikes a relaxed yet energetic pose, one hand placed on his hip while the other is slightly raised, showcasing a thumbs-up, reflecting the confidence that stems from his strong form and positive overall rating of 82. The background features the team\u2019s logo subtly blurred, providing context while ensuring Owen remains the focal point of the image. The lighting is bright, highlighting the sheen of his kit and the intensity in his expression, representing his readiness to contribute to the team as a bench player, fully fit and eager to make an impact."}
|
data/huge-league/players/Fraser_Valley_United_18.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 18, "name": "Thomas Walker", "age": 32, "nationality": "Canada", "shirt_number": 18, "position": "Forward/Winger", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 180, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "A dynamic forward with a fierce right foot, Thomas Walker thrives on the wing, using his blistering speed to outpace defenders. Known for his relentless work ethic and tactical awareness, he brings a spark to Fraser Valley United, often turning matches with his flair and creativity. Hailing from the picturesque landscapes of Canada, his journey reflects a blend of rural grit and urban sophistication."}
|
|
|
1 |
+
{"number": 18, "name": "Thomas Walker", "age": 32, "nationality": "Canada", "shirt_number": 18, "position": "Forward/Winger", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 180, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "A dynamic forward with a fierce right foot, Thomas Walker thrives on the wing, using his blistering speed to outpace defenders. Known for his relentless work ethic and tactical awareness, he brings a spark to Fraser Valley United, often turning matches with his flair and creativity. Hailing from the picturesque landscapes of Canada, his journey reflects a blend of rural grit and urban sophistication.", "profile_pic": "A press photo portrait of Thomas Walker, a 32-year-old Canadian soccer player. He stands confidently with a slight lean forward, showcasing his athletic build at 180 cm and 75 kg. His medium-length brown hair is slightly tousled, framing a focused face with sharp blue eyes and a determined expression. He has a trimmed beard, adding a touch of maturity.\n\nThomas is wearing the Fraser Valley United team kit, which features vibrant green and white colors. The shirt, number 18, fits snugly, emphasizing his muscular physique, while white shorts and green socks complete the look. A subtle sponsor logo is visible on the left chest area.\n\nThe background captures a stadium ambiance, slightly blurred, with fans in the stands. The lighting highlights his figure dynamically, enhancing his vibrant energy and confident stance. He exudes determination and readiness, reflecting his solid form rating of 7 and recent contributions with 12 goals and 8 assists this season. There's no visible sign of injury, reinforcing his status as a key player for the team."}
|
data/huge-league/players/Fraser_Valley_United_19.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 19, "name": "Elijah Gagnon", "age": 23, "nationality": "Canada", "shirt_number": 19, "position": "Striker", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 183, "weight_kg": 78, "overall_rating": 76, "is_injured": false, "form": 7, "goals": 12, "assists": 5, "yellow_cards": 3, "red_cards": 0, "bio": "Elijah Gagnon, a 23-year-old striker from Canada, possesses an explosive speed and keen eye for goal. His ability to find space and create opportunities for himself and teammates makes him a standout player. Hailing from the scenic Fraser Valley, he brings a combination of technical skill and rural determination to the pitch, often leaving defenders trailing in his wake with his signature swift dribbles and accurate finishing."}
|
|
|
1 |
+
{"number": 19, "name": "Elijah Gagnon", "age": 23, "nationality": "Canada", "shirt_number": 19, "position": "Striker", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 183, "weight_kg": 78, "overall_rating": 76, "is_injured": false, "form": 7, "goals": 12, "assists": 5, "yellow_cards": 3, "red_cards": 0, "bio": "Elijah Gagnon, a 23-year-old striker from Canada, possesses an explosive speed and keen eye for goal. His ability to find space and create opportunities for himself and teammates makes him a standout player. Hailing from the scenic Fraser Valley, he brings a combination of technical skill and rural determination to the pitch, often leaving defenders trailing in his wake with his signature swift dribbles and accurate finishing.", "profile_pic": "A realistic portrait of 23-year-old Elijah Gagnon, a professional soccer player from Canada. He stands confidently, showcasing his athletic build with a height of 183 cm and weighing 78 kg. His facial features are sharp and youthful, with short black hair slightly tousled. He has bright, determined eyes that convey focus and ambition, complemented by a confident smile.\n\nElijah is dressed in the team kit of Fraser Valley United, featuring a vibrant blue and white jersey emblazoned with his number 19. The jersey fits snugly, highlighting his well-defined physique, and he sports matching shorts and socks. On his feet are sleek soccer cleats, ready for action.\n\nHe is posed in a dynamic stance, slightly leaning forward as if preparing to sprint, suggesting his explosive speed. The background is a blurred soccer pitch under bright stadium lights, adding to the matchday atmosphere. His expression radiates enthusiasm and readiness, embodying his current form rating of 7, having scored 12 goals this season. There are no signs of injury, and the mood is energetic and hopeful, capturing the essence of a young athlete poised to make an impact on the field."}
|
data/huge-league/players/Fraser_Valley_United_2.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 2, "name": "Liam Thompson", "age": 23, "nationality": "Canada", "shirt_number": 2, "position": "Left Back", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 74, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Liam Thompson is a dynamic left-back known for his relentless pace and tactical awareness. Originating from the diverse landscapes of Canada, he embodies a blend of resilience and finesse on the pitch. His signature move, an overlapping run down the flank, consistently catches opponents off guard. With an unwavering spirit and strong leadership qualities, Liam has quickly become a fan favorite in Fraser Valley United's journey to elevate Canadian soccer."}
|
|
|
1 |
+
{"number": 2, "name": "Liam Thompson", "age": 23, "nationality": "Canada", "shirt_number": 2, "position": "Left Back", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 74, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Liam Thompson is a dynamic left-back known for his relentless pace and tactical awareness. Originating from the diverse landscapes of Canada, he embodies a blend of resilience and finesse on the pitch. His signature move, an overlapping run down the flank, consistently catches opponents off guard. With an unwavering spirit and strong leadership qualities, Liam has quickly become a fan favorite in Fraser Valley United's journey to elevate Canadian soccer.", "profile_pic": "Liam Thompson stands confidently in his team kit for Fraser Valley United, wearing the number 2 jersey that fits snugly on his athletic build. At 178 cm tall and weighing 74 kg, his physique reflects a balance of strength and agility, suited for a left-back role. His short, slightly tousled dark hair frames a focused yet approachable face, highlighting his Canadian nationality. He has a strong jawline, fair skin, and piercing blue eyes that convey determination and leadership.\n\nThe kit is a vibrant blend of navy blue and gold, representing his team colors, with a sleek design featuring the club's emblem prominently on the chest. He wears white soccer socks pulled up high, and black cleats, poised in a slight crouch as if ready to spring into action on the field. His posture exudes confidence, reflecting his form rating of 7 out of 10, while a subtle smile suggests his upbeat personality and current good spirits, enhanced by the fact that he is not injured.\n\nThe backdrop captures a sunlit stadium filled with cheering fans, enhancing the atmosphere of a matchday portrait. The focus is on Liam, showcasing not only his athletic prowess but also the energy and hope he brings to the burgeoning Canadian soccer scene."}
|
data/huge-league/players/Fraser_Valley_United_20.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 20, "name": "Thomas MacDonald", "age": 21, "nationality": "Canada", "shirt_number": 20, "position": "Left Wing", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 76, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Thomas MacDonald, the Left Wing sensation from Canada, dances down the flank with unparalleled agility. His right foot strikes fear into opposing defenders, showcasing his knack for precise crosses and dazzling dribbles. Born and raised amidst the picturesque landscapes of British Columbia, he embodies the spirit of Fraser Valley United, blending rural grit with technical finesse. With an infectious work ethic and a charismatic presence, Thomas is not just a player; he's a beacon of hope for aspiring young talents."}
|
|
|
1 |
+
{"number": 20, "name": "Thomas MacDonald", "age": 21, "nationality": "Canada", "shirt_number": 20, "position": "Left Wing", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 76, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Thomas MacDonald, the Left Wing sensation from Canada, dances down the flank with unparalleled agility. His right foot strikes fear into opposing defenders, showcasing his knack for precise crosses and dazzling dribbles. Born and raised amidst the picturesque landscapes of British Columbia, he embodies the spirit of Fraser Valley United, blending rural grit with technical finesse. With an infectious work ethic and a charismatic presence, Thomas is not just a player; he's a beacon of hope for aspiring young talents.", "profile_pic": "A realistic portrait of Thomas MacDonald, a 21-year-old Canadian professional soccer player from Fraser Valley United. He stands confidently at 182 cm tall and weighing 76 kg. His athletic build stands out in the vibrant team kit, featuring a bold design with the team colors prominently displayed: deep green and white accents. The shirt, number 20, is fitted to highlight his agility, with shorts and socks completing the look.\n\nThomas has an expressive face, with strong cheekbones and a determined gaze reflecting his competitive spirit. His brown hair is styled in a trendy, slightly tousled manner, enhancing his youthful charm. A subtle smile hints at his charismatic personality, which shines through his confident stance.\n\nIn the background, a blurred soccer pitch and cheering fans suggest the matchday atmosphere. He stands in a dynamic pose, slightly leaning forward as if preparing to sprint down the left wing, capturing his role as a skilled left-winger. The mood is energetic and optimistic, showcasing his impressive form rating of 8 and recent performance, with an aura of determination that highlights the absence of any injury. The image encapsulates the essence of a promising soccer talent, poised to make his mark on the game."}
|
data/huge-league/players/Fraser_Valley_United_21.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 21, "name": "Jacob Gagnon", "age": 23, "nationality": "Canada", "shirt_number": 21, "position": "Right Wing", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Hailing from the picturesque vineyards of Abbotsford, Jacob Gagnon is known for his explosive speed and pinpoint accuracy on the right wing. His agile footwork and relentless drive make him a nightmare for defenders. With a positive attitude and fierce competitiveness, he embodies the spirit of Fraser Valley United, showcasing a blend of raw talent and tactical intelligence."}
|
|
|
1 |
+
{"number": 21, "name": "Jacob Gagnon", "age": 23, "nationality": "Canada", "shirt_number": 21, "position": "Right Wing", "preferred_foot": "Right", "role": "Bench", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 1, "bio": "Hailing from the picturesque vineyards of Abbotsford, Jacob Gagnon is known for his explosive speed and pinpoint accuracy on the right wing. His agile footwork and relentless drive make him a nightmare for defenders. With a positive attitude and fierce competitiveness, he embodies the spirit of Fraser Valley United, showcasing a blend of raw talent and tactical intelligence.", "profile_pic": "A realistic portrait of Jacob Gagnon, a 23-year-old Canadian soccer player, capturing him standing proudly in the Fraser Valley United team kit. He is 178 cm tall and weighs 75 kg, with an athletic, well-proportioned build. His face displays youthful energy, featuring sharp cheekbones, a determined jawline, and slightly tousled dark hair. His blue eyes, exuding confidence, are focused forward with a warm, competitive smile.\n\nHe's wearing a vibrant kit, predominantly in the team's colors of deep blue and white, with his shirt number '21' emblazoned on the back. The jersey is form-fitting, showcasing his athletic physique, while the shorts and socks complete the look. The Fraser Valley United crest is prominent on his chest.\n\nPositioned outdoors on a sunny day, Jacob stands with one foot slightly forward, arms crossed and a slight tilt of the head that conveys approachability mixed with intensity. His posture is strong, reflecting his current good form and overall rating of 82, devoid of any signs of injury. The background hints at the lush vineyards of Abbotsford, connecting his roots to the picturesque landscape."}
|
data/huge-league/players/Fraser_Valley_United_22.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 22, "name": "William Taylor", "age": 27, "nationality": "Canada", "shirt_number": 22, "position": "Various", "preferred_foot": "Left", "role": "Reserve/Prospect", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 8, "goals": 15, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "William Taylor, a dynamic left-footed midfielder, is known for his exceptional vision and ability to dictate the pace of the game. With roots in the calm landscapes of Canada, he blends rural resilience with urban flair on the pitch. His signature moves often leave defenders guessing, while his team spirit and leadership qualities make him a standout prospect for Fraser Valley United."}
|
|
|
1 |
+
{"number": 22, "name": "William Taylor", "age": 27, "nationality": "Canada", "shirt_number": 22, "position": "Various", "preferred_foot": "Left", "role": "Reserve/Prospect", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 78, "is_injured": false, "form": 8, "goals": 15, "assists": 10, "yellow_cards": 2, "red_cards": 0, "bio": "William Taylor, a dynamic left-footed midfielder, is known for his exceptional vision and ability to dictate the pace of the game. With roots in the calm landscapes of Canada, he blends rural resilience with urban flair on the pitch. His signature moves often leave defenders guessing, while his team spirit and leadership qualities make him a standout prospect for Fraser Valley United.", "profile_pic": "A realistic portrait of William Taylor, a 27-year-old Canadian soccer player. He stands at 178 cm tall, weighing 75 kg, showcasing an athletic build. His face features a warm smile, with bright blue eyes, slightly tousled dark brown hair, and a neatly trimmed beard that adds to his approachable appearance. His expression radiates confidence and determination, embodying his personality as a dynamic midfield player. \n\nHe is wearing the Fraser Valley United team kit, which consists of a navy blue jersey with white accents, matching shorts, and white socks. The number 22 is prominently displayed on his back. The team's logo is emblazoned on the left chest area of the jersey. \n\nWilliam is positioned in a stance suggesting readiness\u2014slightly leaning forward with his left foot raised, which hints at his preferred left-footed playing style. The background captures a vibrant stadium atmosphere, with blurred fans cheering in the stands, emphasizing the excitement of match day. The lighting highlights his features and the details of his kit, conveying a sense of energetic anticipation for the game ahead."}
|
data/huge-league/players/Fraser_Valley_United_23.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 23, "name": "Aiden Campbell", "age": 17, "nationality": "Canada", "shirt_number": 23, "position": "Various", "preferred_foot": "Left", "role": "Reserve/Prospect", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 72, "overall_rating": 80, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 0, "bio": "Aiden Campbell, at just 17, dazzles on the field with his agile footwork and keen eye for spotting opportunities. His left foot is lethal, capable of bending the ball around defenders with ease. Growing up in the lush landscapes of Abbotsford, he embodies the spirit of Fraser Valley United, weaving rural pride into every match. Known for his relentless determination, Aiden is a promising prospect who plays with an infectious enthusiasm that rallies his teammates."}
|
|
|
1 |
+
{"number": 23, "name": "Aiden Campbell", "age": 17, "nationality": "Canada", "shirt_number": 23, "position": "Various", "preferred_foot": "Left", "role": "Reserve/Prospect", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 72, "overall_rating": 80, "is_injured": false, "form": 7, "goals": 12, "assists": 8, "yellow_cards": 3, "red_cards": 0, "bio": "Aiden Campbell, at just 17, dazzles on the field with his agile footwork and keen eye for spotting opportunities. His left foot is lethal, capable of bending the ball around defenders with ease. Growing up in the lush landscapes of Abbotsford, he embodies the spirit of Fraser Valley United, weaving rural pride into every match. Known for his relentless determination, Aiden is a promising prospect who plays with an infectious enthusiasm that rallies his teammates.", "profile_pic": "A 17-year-old male soccer player, Aiden Campbell, stands in a dynamic pose on the soccer pitch, exuding energy and confidence. He is 178 cm tall and weighs 72 kg, with a lean yet muscular build showcasing the athleticism of a young athlete. His facial features are youthful, with short, tousled dark hair and bright blue eyes that reflect determination and enthusiasm. Aiden\u2019s complexion is fair, with a hint of rosy cheeks that adds to his vibrant personality.\n\nHe is wearing the home kit of Fraser Valley United, featuring a sharply designed jersey predominantly in deep green with white accents and his number, 23, prominently displayed on the chest. The shorts are matching green, with white stripes along the sides, and his socks are pulled up high with a contrasting dark color. \n\nAiden's left foot is slightly raised, suggesting he is about to take a powerful shot or set up a play, embodying his skill as a forward. He wears cleats that are sleek and tailored for performance. The background captures the essence of a matchday, with blurred imagery of teammates and fans, creating a sense of motion and excitement.\n\nThe overall mood of the portrait is positive and aspirational, reflecting his strong form (7/10) and a growing reputation, paired with the absence of injury. His expression is focused yet approachable, showcasing both his competitive spirit and infectious enthusiasm."}
|
data/huge-league/players/Fraser_Valley_United_3.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 3, "name": "Dylan Tremblay", "age": 30, "nationality": "Canada", "shirt_number": 3, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 80, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 3, "assists": 1, "yellow_cards": 4, "red_cards": 0, "bio": "A resolute center back from Canada, Dylan Tremblay excels in aerial duels and displays remarkable composure under pressure. Known for his tactical awareness and leadership qualities, he embodies the spirit of Fraser Valley United, inspiring his teammates with his relentless work ethic and determination on the pitch."}
|
|
|
1 |
+
{"number": 3, "name": "Dylan Tremblay", "age": 30, "nationality": "Canada", "shirt_number": 3, "position": "Center Back", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 80, "overall_rating": 84, "is_injured": false, "form": 8, "goals": 3, "assists": 1, "yellow_cards": 4, "red_cards": 0, "bio": "A resolute center back from Canada, Dylan Tremblay excels in aerial duels and displays remarkable composure under pressure. Known for his tactical awareness and leadership qualities, he embodies the spirit of Fraser Valley United, inspiring his teammates with his relentless work ethic and determination on the pitch.", "profile_pic": "**Image Description:**\n\nA realistic portrait of a professional soccer player, Dylan Tremblay, stands at the forefront. He is 30 years old, with a solid build reflecting his 185 cm height and 80 kg weight. His athletic physique conveys strength and resilience, indicative of a seasoned center back. \n\nDylan has a chiseled jawline, defined cheekbones, and closely cropped dark hair with a slight wave. His intense blue eyes are focused, radiating confidence and determination. A light stubble enhances his rugged appearance, adding to his mature vibe. \n\nHe wears the home kit of Fraser Valley United, a vibrant combination of deep green and white with his shirt number, 3, emblazoned across the back. The shirt fits snugly around his muscular frame, showcasing his broad shoulders and powerful arms, while the matching shorts and soccer socks complete the look. \n\nIn a dynamic pose, he stands tall with his hands on his hips, exuding leadership. The backdrop captures the essence of a matchday atmosphere, with a blurred stadium filled with fans in the distance. The lighting is bright, highlighting his features and the team colors, while his expression reflects a sense of focus and readiness, suggesting he\u2019s in peak form, with no injuries to hinder his performance."}
|
data/huge-league/players/Fraser_Valley_United_4.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 4, "name": "Jacob Thompson", "age": 23, "nationality": "Canada", "shirt_number": 4, "position": "Center Back", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 78, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 2, "yellow_cards": 5, "red_cards": 0, "bio": "A commanding presence on the pitch, Jacob Thompson excels in aerial duels and tackles, often acting as the backbone of the defense. Hailing from the scenic vineyards of Abbotsford, his leadership is evident not only in his play but also in his unwavering determination to inspire teammates. Known for his precise long passes and tactical awareness, he embodies the spirit and tenacity of Fraser Valley United."}
|
|
|
1 |
+
{"number": 4, "name": "Jacob Thompson", "age": 23, "nationality": "Canada", "shirt_number": 4, "position": "Center Back", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 185, "weight_kg": 78, "overall_rating": 82, "is_injured": false, "form": 7, "goals": 3, "assists": 2, "yellow_cards": 5, "red_cards": 0, "bio": "A commanding presence on the pitch, Jacob Thompson excels in aerial duels and tackles, often acting as the backbone of the defense. Hailing from the scenic vineyards of Abbotsford, his leadership is evident not only in his play but also in his unwavering determination to inspire teammates. Known for his precise long passes and tactical awareness, he embodies the spirit and tenacity of Fraser Valley United.", "profile_pic": "A realistic portrait of Jacob Thompson, a 23-year-old Canadian soccer player standing tall at 185 cm and weighing 78 kg. He has a robust physical build, showcasing a fit athlete\u2019s physique. His facial features include a strong jawline, piercing blue eyes, and short, dark brown hair, slightly tousled, giving him a confident but approachable vibe. He wears a focused expression, embodying determination and leadership.\n\nJacob is dressed in the home kit of Fraser Valley United, which consists of a deep green jersey with white accents, featuring his shirt number 4 emblazoned on the back. The front of the jersey includes the team logo prominently displayed over the left side of his chest. He has matching shorts and socks, completed with black, sleek soccer cleats. \n\nHe stands in an athletic pose, arms crossed and slightly relaxed, projecting a sense of calm authority. The backdrop is a softly blurred stadium setting, hinting at an excited crowd, enhancing the matchday atmosphere. The lighting highlights the intensity of his gaze and the sharp lines of his strong features, capturing his essence as a commanding center back. His current form is indicated by a subtle glow of confidence, showcasing his high rating of 82 and reflecting his active participation in the game, especially given his injury-free status."}
|
data/huge-league/players/Fraser_Valley_United_5.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 5, "name": "Aiden Smith", "age": 27, "nationality": "Canada", "shirt_number": 5, "position": "Right Back", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Aiden Smith is a dynamic right back known for his fierce tackling and relentless work ethic on the pitch. Hailing from the picturesque landscapes of British Columbia, he embodies both rural resilience and urban sophistication. His ability to read the game allows him to initiate counter-attacks quickly, making him a valuable asset to Fraser Valley United. Aiden's left foot delivers precise crosses, often setting up scoring opportunities for his teammates, solidifying his role as a cornerstone of the team's defense."}
|
|
|
1 |
+
{"number": 5, "name": "Aiden Smith", "age": 27, "nationality": "Canada", "shirt_number": 5, "position": "Right Back", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 78, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 3, "assists": 5, "yellow_cards": 2, "red_cards": 0, "bio": "Aiden Smith is a dynamic right back known for his fierce tackling and relentless work ethic on the pitch. Hailing from the picturesque landscapes of British Columbia, he embodies both rural resilience and urban sophistication. His ability to read the game allows him to initiate counter-attacks quickly, making him a valuable asset to Fraser Valley United. Aiden's left foot delivers precise crosses, often setting up scoring opportunities for his teammates, solidifying his role as a cornerstone of the team's defense.", "profile_pic": "Aiden Smith, a 27-year-old Canadian male, stands confidently in a dynamic pose, his athletic build accentuated by his 182 cm height and 78 kg weight. His face reflects determination, with strong cheekbones and a chiseled jawline, framed by short, well-groomed dark hair. He has piercing green eyes that convey a fierce yet approachable personality. \n\nWearing the Fraser Valley United team kit, the jersey is predominantly deep blue with white accents, featuring his number 5 on the back and front. His shorts are also deep blue, and he sports matching blue socks that feature a subtle design. The team's logo is displayed prominently on the left chest area, while his left foot is slightly forward, emphasizing his preferred foot.\n\nAiden's stance suggests readiness, hinting at his active role as a starter right back. His expression is one of focused confidence, radiating energy as he stands on a well-maintained soccer pitch, with the distant outline of mountains visible in the background, representing his Canadian heritage. The lighting is bright, capturing a matchday atmosphere, as he is in peak form, reflecting an overall rating of 85. His body language suggests no signs of injury, exuding a sense of pride and readiness for competition."}
|
data/huge-league/players/Fraser_Valley_United_6.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 6, "name": "Logan Gagnon", "age": 31, "nationality": "Canada", "shirt_number": 6, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Logan Gagnon, a stalwart defensive midfielder from Canada, combines tactical intelligence with a fierce competitive spirit. Known for his relentless work rate and precise passing, he thrives in high-pressure situations. With roots in the rugged terrains of rural British Columbia, Logan embodies the heart and tenacity of Fraser Valley United, consistently driving his teammates to excel."}
|
|
|
1 |
+
{"number": 6, "name": "Logan Gagnon", "age": 31, "nationality": "Canada", "shirt_number": 6, "position": "Defensive Mid", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 180, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 5, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Logan Gagnon, a stalwart defensive midfielder from Canada, combines tactical intelligence with a fierce competitive spirit. Known for his relentless work rate and precise passing, he thrives in high-pressure situations. With roots in the rugged terrains of rural British Columbia, Logan embodies the heart and tenacity of Fraser Valley United, consistently driving his teammates to excel.", "profile_pic": "A realistic portrait of Logan Gagnon, a 31-year-old Canadian professional soccer player, stands confidently in his team kit for Fraser Valley United. He is 180 cm tall and weighs 75 kg, showcasing a fit, athletic build typical of a defensive midfielder. \n\nLogan has short, dark hair with a touch of ruggedness to his features, reflecting his origins from rural British Columbia. His deep-set eyes convey determination and focus, embodying the competitive spirit he's known for. A faint hint of stubble adds to his masculine demeanor, suggesting a no-nonsense attitude both on and off the pitch.\n\nHe wears the Fraser Valley United home jersey, prominently featuring the team colors of blue and white. The kit is designed with a modern, streamlined fit, and his shirt number, 6, is displayed prominently on the back. His shorts and socks are coordinated to complete the uniform look.\n\nIn the image, Logan is posed in a slightly crouched position, one knee bent as if preparing for action, with his right foot forward and slightly raised\u2014suggesting readiness. His expression is focused yet friendly, hinting at a natural leader who motivates his teammates. The background is blurred to feature a stadium ambiance, adding a vibrant matchday feel. There are no signs of injury; instead, he radiates energy and confidence, indicative of his strong form and overall rating of 82."}
|
data/huge-league/players/Fraser_Valley_United_7.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 7, "name": "Thomas Brown", "age": 30, "nationality": "Canada", "shirt_number": 7, "position": "Central Mid", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 0, "bio": "Thomas Brown is a dynamic central midfielder known for his exceptional vision and precise passing. With a fierce left foot, he commands the midfield, orchestrating plays that highlight his playmaking ability. Born and raised in the heart of Vancouver, his dedication shines through in every match, where he combines grit with creativity, making him a fan favorite among the Fraser Valley United supporters."}
|
|
|
1 |
+
{"number": 7, "name": "Thomas Brown", "age": 30, "nationality": "Canada", "shirt_number": 7, "position": "Central Mid", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 7, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 0, "bio": "Thomas Brown is a dynamic central midfielder known for his exceptional vision and precise passing. With a fierce left foot, he commands the midfield, orchestrating plays that highlight his playmaking ability. Born and raised in the heart of Vancouver, his dedication shines through in every match, where he combines grit with creativity, making him a fan favorite among the Fraser Valley United supporters.", "profile_pic": "A portrait of Thomas Brown, a 30-year-old Canadian male soccer player standing confidently in his Fraser Valley United team kit. He stands at 182 cm tall, weighing 75 kg, with a well-built athletic physique. His hair is short and dark, slightly tousled, and he has a friendly smile that exudes charisma and determination. His left foot is slightly forward, showcasing his preferred boot, with a focused expression that reflects his playmaking ability. \n\nHe wears the team's blue and white home jersey, prominently displaying the number 7 on his back and the team's crest over his heart. His shorts match the jersey, and he sports matching blue socks pulled up neatly. The background features a blurred stadium scene, filled with cheering fans, emphasizing the matchday atmosphere. The lighting is bright, illuminating his face and the kit vibrantly, enhancing the details of his determined gaze. He exudes an aura of confidence and readiness, showcasing that he is not currently injured and is in good form, having a rating of 85. A few subtle, sporty accessories, like a captain's armband, hint at his leadership role on the team."}
|
data/huge-league/players/Fraser_Valley_United_8.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 8, "name": "Mason Walker", "age": 21, "nationality": "Canada", "shirt_number": 8, "position": "Central Mid", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 0, "bio": "Mason Walker is a dynamic central midfielder known for his exceptional passing range and vision on the pitch. Hailing from the scenic landscapes of British Columbia, he blends technical skill with a relentless work ethic, making him a fan favorite. His left foot is a weapon, capable of delivering pinpoint crosses and stunning long-range strikes, while his leadership qualities inspire teammates. Walker's knack for creating chances has made him a key player for Fraser Valley United."}
|
|
|
1 |
+
{"number": 8, "name": "Mason Walker", "age": 21, "nationality": "Canada", "shirt_number": 8, "position": "Central Mid", "preferred_foot": "Left", "role": "Starter", "team": "Fraser Valley United", "height_cm": 182, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 12, "assists": 15, "yellow_cards": 3, "red_cards": 0, "bio": "Mason Walker is a dynamic central midfielder known for his exceptional passing range and vision on the pitch. Hailing from the scenic landscapes of British Columbia, he blends technical skill with a relentless work ethic, making him a fan favorite. His left foot is a weapon, capable of delivering pinpoint crosses and stunning long-range strikes, while his leadership qualities inspire teammates. Walker's knack for creating chances has made him a key player for Fraser Valley United.", "profile_pic": "A young, athletic soccer player stands confidently in a dramatic pose, embodying the energy of a matchday. Mason Walker, a 21-year-old Canadian midfielder for Fraser Valley United, is 182 cm tall with an athletic build, weighing 75 kg. He has a chiseled jawline and facial features that reflect both determination and approachability, with deep-set, expressive brown eyes that convey his passion for the game. He has slightly tousled dark hair, giving him a relaxed, yet focused vibe. \n\nMason wears the vibrant team kit of Fraser Valley United, which features a bold red and white design, with the number 8 prominently displayed on his chest and back. The shirt fits snugly, showing off his toned physique and emphasizing his agility. The kit is complemented by matching shorts and sleek black cleats, enhancing his readiness for action.\n\nThe backdrop of the image captures an energetic stadium, with blurred fans in the stands to create a sense of atmosphere. The lighting is bright, reminiscent of a sunny matchday, highlighting the sheen on his kit and the intensity in his expression. Mason stands with one foot slightly forward, with a soccer ball at his side, ready to make a play. His relaxed smile, paired with the serious gaze of a focused athlete, reflects both his skills and his leadership qualities on the field, projecting a confident and dynamic aura."}
|
data/huge-league/players/Fraser_Valley_United_9.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 9, "name": "Dylan Walker", "age": 30, "nationality": "Canada", "shirt_number": 9, "position": "Left Wing", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 15, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Dylan Walker is a dynamic left winger known for his lightning speed and precise dribbling. Hailing from the vineyards of Abbotsford, he embodies the spirit of Fraser Valley United, bringing a blend of rural charm and relentless determination to the pitch. His ability to create scoring opportunities and deliver pinpoint crosses makes him a fan favorite, while his competitive attitude inspires his teammates to elevate their game."}
|
|
|
1 |
+
{"number": 9, "name": "Dylan Walker", "age": 30, "nationality": "Canada", "shirt_number": 9, "position": "Left Wing", "preferred_foot": "Right", "role": "Starter", "team": "Fraser Valley United", "height_cm": 178, "weight_kg": 75, "overall_rating": 85, "is_injured": false, "form": 8, "goals": 15, "assists": 10, "yellow_cards": 3, "red_cards": 1, "bio": "Dylan Walker is a dynamic left winger known for his lightning speed and precise dribbling. Hailing from the vineyards of Abbotsford, he embodies the spirit of Fraser Valley United, bringing a blend of rural charm and relentless determination to the pitch. His ability to create scoring opportunities and deliver pinpoint crosses makes him a fan favorite, while his competitive attitude inspires his teammates to elevate their game.", "profile_pic": "A realistic portrait of Dylan Walker, a 30-year-old Canadian soccer player. He is 178 cm tall, athletic build weighing 75 kg. His expression conveys confidence and determination, with sharp green eyes, slightly tousled dark hair, and a hint of stubble. He wears the Fraser Valley United team kit, which features a bold blend of green and white colors, with his number 9 prominently displayed on the back. The kit is snug fitting, accentuating his muscular physique. \n\nWalker poses dynamically, slightly leaning forward as if he's ready to sprint down the pitch, embodying his role as a left winger. The background is blurred to focus on him, but hints at a vibrant stadium atmosphere, perhaps during matchday with fans in the stands. Despite being in peak form with an overall rating of 85, his demeanor reflects a fierce competitive spirit without any signs of injury. The lighting is bright and focused on him, emphasizing the intensity of the moment."}
|
data/huge-league/players/Tierra_Alta_FC_1.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"number": 1, "name": "Marco Araya", "age": 17, "nationality": "Costa Rica", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Starter", "team": "Tierra Alta FC", "height_cm": 185, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Marco Araya is a young, dynamic goalkeeper known for his lightning-fast reflexes and commanding presence in the box. Hailing from the vibrant highlands of Costa Rica, he embodies the spirit of sustainability championed by Tierra Alta FC. With an unwavering attitude and a knack for making crucial saves, Marco is determined to leave his mark on the pitch."}
|
|
|
1 |
+
{"number": 1, "name": "Marco Araya", "age": 17, "nationality": "Costa Rica", "shirt_number": 1, "position": "Goalkeeper", "preferred_foot": "Left", "role": "Starter", "team": "Tierra Alta FC", "height_cm": 185, "weight_kg": 75, "overall_rating": 82, "is_injured": false, "form": 8, "goals": 0, "assists": 0, "yellow_cards": 2, "red_cards": 0, "bio": "Marco Araya is a young, dynamic goalkeeper known for his lightning-fast reflexes and commanding presence in the box. Hailing from the vibrant highlands of Costa Rica, he embodies the spirit of sustainability championed by Tierra Alta FC. With an unwavering attitude and a knack for making crucial saves, Marco is determined to leave his mark on the pitch.", "profile_pic": "A realistic portrait of Marco Araya, a 17-year-old professional soccer goalkeeper from Costa Rica. He stands confidently in a press photo setting, embodying the essence of a young athlete. Marco is 185 cm tall and weighs 75 kg, with an athletic build showcasing his strength and agility. \n\nHis facial features reflect his Costa Rican heritage, with warm brown skin, expressive dark eyes, and a determined expression that conveys his steadfast personality. Marco has short, wavy black hair neatly styled. He's wearing the vibrant team kit of Tierra Alta FC, featuring green and white colors with the team logo prominently displayed on his left chest, and his shirt number, 1, on the back. \n\nThe pose captures him in a dynamic stance, as if he's just made a remarkable save; his arms are slightly raised, and his feet are planted firmly on the ground. There\u2019s a sense of movement, indicative of his lightning-fast reflexes. The background suggests a matchday atmosphere with blurred team colors and stadium lights, enhancing the mood of determination and focus. His form is excellent, reflecting an impressive rating of 8, with no signs of injury, radiating confidence as a starting player."}
|