7 lines
419 B
Python
7 lines
419 B
Python
#!/usr/bin/python3
|
|
|
|
magic_user_spells = {
|
|
1 : [ "charm person", "detect magic", "floating disc", "hold portal", "light (darkness)", "magic missile", "protection from evil", "read languages", "shield", "sleep", "ventriloquism" ],
|
|
2 : [ "continual light", "detect evil", "detect invisible", "ESP", "invisibility", "knock", "levitate", "locate object", "mirror image", "phantasmal force", "web", "wizard lock" ]
|
|
}
|