14 lines
249 B
Lua
14 lines
249 B
Lua
|
return {
|
||
|
name = "Sonic",
|
||
|
fullname = "Sonic the Hedgehog",
|
||
|
class = "speedster",
|
||
|
speed = 5,
|
||
|
jump = 3,
|
||
|
|
||
|
startlevel = 1,
|
||
|
|
||
|
isUnlockedAtStart = true,
|
||
|
canGoSuper = true,
|
||
|
canBreakCraft = false,
|
||
|
}
|