Skip to content

Commit 5f73a72

Browse files
committed
Initial commit
1 parent 43ae787 commit 5f73a72

78 files changed

Lines changed: 9378 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/target/
2+
/.project
3+
/.classpath
4+
/bin/
5+
.factorypath
6+
/.settings/
7+
.pydevproject
8+
src/main/resources/view/node_modules/
9+
src/main/resources/view/graphics/
10+
statement_en.html
11+
statement_fr.html
12+
/generated-boards/
13+
node_modules/

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
# SpringChallenge2023
2+
3+
Source code for CodinGame's Spring Challenge 2023 event.
4+
25
https://www.codingame.com/contests/spring-challenge-2023
6+
7+
Community starter AIs are located here:
8+
9+
https://github.com/CodinGame/SpringChallenge2023/tree/main/starterAIs

config/Boss.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
while True:
2+
print('WAIT')

config/config.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
min_players=2
2+
max_players=2
3+
type=multi

config/level1/Boss.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
redacted

config/level2/Boss.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
redacted

config/level2/Tuto_Oeuf.jpg

59.7 KB
Loading

config/level2/welcome_en.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<div style="text-align: center">
2+
<h2>You've made it to the next league.</h2>
3+
You now have the ability to create more ants by harvesting the <keyword>EGG</keyword> resource!
4+
<div class="small"><img src="Tuto_Oeuf.jpg" style="width:500px;max-width:100%" /></div>
5+
<div class="small">See the updated statement for details.</div>
6+
</div>

config/level3/Tuto_Fight.jpg

80.5 KB
Loading

config/level3/welcome_en.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div style="text-align: center">
2+
<h2>You've made it to the next league.</h2>
3+
Opposing ants can now break each other's <keyword>harvesting chains</keyword> using <keyword>attack chains</keyword>.
4+
<div class="small"><img src="Tuto_Fight.jpg" style="width:500px;max-width:100%" /></div>
5+
<keyword>Larger maps</keyword> are available and <keyword>multiple bases</keyword> may be present.
6+
<div class="small">See the updated statement for details.</div>
7+
</div>

0 commit comments

Comments
 (0)