01 — class Player()
2class Player:
3 def __init__(self, name, ability):
4 self.name = "Marc Cucurella"
5 self.ability = [
6 "Read the pitch", "Create space",
7 "Support teammates", "Build trust",
8 "Adapt continuously"
9 ]
10
11 def contribute(self):
12 return "Improve the whole system"
13
14>>> print(favorite_player.name)
15Marc Cucurella
02 — main_loop
SEE_SPACE
Leer el partido antes de que ocurra la jugada.
Read the pitch before the action happens.
MAP_TEAM_SHAPE
Entender la estructura completa del equipo.
Understand the whole team structure, not just the ball.
PROTECT_LEFT_CHANNEL
Presionar, cerrar el espacio, recuperar rápido.
Press with intensity, close the wide space, recover fast.
CONNECT_MIDFIELD
Entrar al medio para estabilizar la posesión.
Step inside to make possession more stable.
SUPPORT_ATTACK
Subir, centrar, crear una opción más para el equipo.
Overlap, cross, create one more option for the team.
RECOVER_DEFENSE
Del creador al defensor, en el mismo instante.
From creator to defender, in the same instant.
REPEAT_WITH_INTENSITY
Repetir, noventa minutos, sin bajar el nivel.
Repeat, for ninety minutes, without lowering the level.
“Improve the whole system.”
favorite_player.contribute() — return value