3 Commits

Author SHA1 Message Date
d509c399d5 Update Jenkinsfile
Some checks failed
CI / build (push) Has been cancelled
2026-01-30 20:18:52 +10:30
01b3b7a401 jenkins
Some checks failed
CI / build (push) Has been cancelled
2026-01-30 20:17:16 +10:30
7a7b469b54 set limit to 252 (#23)
Some checks failed
CI / build (push) Has been cancelled
Reviewed-on: #23
2026-01-30 18:22:13 +10:30
2 changed files with 31 additions and 1 deletions

30
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,30 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Configure') {
steps {
sh '''
mkdir -p build
cd build
cmake ..
'''
}
}
stage('Build') {
steps {
sh '''
cd build
make -j$(nproc)
'''
}
}
}
}

View File

@@ -202,7 +202,7 @@
#define USE_RANDOM_IVS (MAX_PER_STAT_IVS + 1)
#define MAX_PER_STAT_EVS 255
#define MAX_TOTAL_EVS 510
#define EV_ITEM_RAISE_LIMIT 100
#define EV_ITEM_RAISE_LIMIT 252
// Battle move flags
#define FLAG_MAKES_CONTACT (1 << 0)