Jacinto Pereira
Jacinto Pereira (born December 10, 1974 in Luanda) is a retired Angolan football defender. He last played for ASA in the Girabola.[1]
Personal information | |||
---|---|---|---|
Full name | Jacinto Pereira | ||
Date of birth | December 10, 1974 | ||
Place of birth | Luanda, Angola | ||
Height | 1.88 m (6 ft 2 in) | ||
Playing position(s) | Defender | ||
National team | |||
Years | Team | Apps | (Gls) |
2000–2006 | Angola | 15 | (0) |
International career
Jacinto was on the 2006 African Cup of Nations squad for Angola.
National team statistics
Angola national team | ||
---|---|---|
Year | Apps | Goals |
2000 | 3 | 0 |
2001 | 0 | 0 |
2002 | 0 | 0 |
2003 | 0 | 0 |
2004 | 5 | 0 |
2005 | 5 | 0 |
2006 | 2 | 0 |
Total | 15 | 0 |
gollark: If it had a list of "visible entities" the rendering would be much faster. There isn't one.
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
References
- "COMUNICADO OFICIAL Nº 010/SG/07: DE 09 DE MARÇO DE 2007" (PDF). Angolan Football Federation. Archived from the original (PDF) on 2012-02-20. Retrieved 2009-04-03.
External links
- Jacinto Pereira – FIFA competition record
- Jacinto Pereira at National-Football-Teams.com
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.