mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-18 03:35:56 +02:00
20 lines
762 B
Lua
20 lines
762 B
Lua
-- Default ruleset: preserve Gen 1 behavior, including the famous quirks.
|
|
|
|
return {
|
|
name = "gen1_faithful",
|
|
-- accuracy roll is rand(0..255) < floor(acc*255/100): a 100%-accurate
|
|
-- move still misses on a roll of 255 (the 1/256 miss)
|
|
oneIn256Miss = true,
|
|
-- critical hits use base speed (not current speed) and ignore stat stages
|
|
critUsesBaseSpeed = true,
|
|
critIgnoresStages = true,
|
|
-- damage random factor r in [217,255], damage = damage * r / 255
|
|
randMin = 217,
|
|
randMax = 255,
|
|
-- Focus Energy famously QUARTERS the crit rate instead of x4
|
|
focusEnergyBug = true,
|
|
-- Wild/trainer enemies never spend PP (DecrementPP only touches the
|
|
-- player side in pokered). They therefore never Struggle from empty PP.
|
|
enemyUnlimitedPP = true,
|
|
}
|