forked from mirror/Archipelago
Some checks failed
Analyze modified files / flake8 (push) Failing after 2m28s
Build / build-win (push) Has been cancelled
Build / build-ubuntu2204 (push) Has been cancelled
ctest / Test C++ ubuntu-latest (push) Has been cancelled
ctest / Test C++ windows-latest (push) Has been cancelled
Analyze modified files / mypy (push) Has been cancelled
Build and Publish Docker Images / Push Docker image to Docker Hub (push) Successful in 5m4s
Native Code Static Analysis / scan-build (push) Failing after 5m2s
type check / pyright (push) Successful in 1m7s
unittests / Test Python 3.11.2 ubuntu-latest (push) Failing after 16m23s
unittests / Test Python 3.12 ubuntu-latest (push) Failing after 28m19s
unittests / Test Python 3.13 ubuntu-latest (push) Failing after 14m49s
unittests / Test hosting with 3.13 on ubuntu-latest (push) Successful in 5m0s
unittests / Test Python 3.13 macos-latest (push) Has been cancelled
unittests / Test Python 3.11 windows-latest (push) Has been cancelled
unittests / Test Python 3.13 windows-latest (push) Has been cancelled
70 lines
1.5 KiB
Python
70 lines
1.5 KiB
Python
# Regular Copy Abilities
|
|
burn = "Burning"
|
|
stone = "Stone"
|
|
ice = "Ice"
|
|
needle = "Needle"
|
|
bomb = "Bomb"
|
|
spark = "Spark"
|
|
cutter = "Cutter"
|
|
# RIP Parasol
|
|
|
|
# Power Combos
|
|
burn_burn = "Phoenix"
|
|
burn_stone = "Volcano"
|
|
burn_ice = "Burning Ice Cube"
|
|
burn_needle = "Fire Arrow"
|
|
burn_bomb = "Fireworks"
|
|
burn_spark = "Tinder Sheet"
|
|
burn_cutter = "Flame Sword"
|
|
stone_stone = "Mega-Stone"
|
|
stone_ice = "Curling Stone"
|
|
stone_needle = "Drill"
|
|
stone_bomb = "Dynamite"
|
|
stone_spark = "Geokinesis"
|
|
stone_cutter = "Stone Friends"
|
|
ice_ice = "Snowball"
|
|
ice_needle = "Snowflake"
|
|
ice_bomb = "Exploding Snowman"
|
|
ice_spark = "Refrigerator"
|
|
ice_cutter = "Ice Skates"
|
|
needle_needle = "Clutter Needle"
|
|
needle_bomb = "Exploding Gordo"
|
|
needle_spark = "Lightning Rod"
|
|
needle_cutter = "Bear Trap"
|
|
bomb_bomb = "Rocket Launcher"
|
|
bomb_spark = "Lightbulb"
|
|
bomb_cutter = "Exploding Shuriken"
|
|
spark_spark = "Electrical Field"
|
|
spark_cutter = "Lightsaber"
|
|
cutter_cutter = "Great Cutter"
|
|
|
|
# Friends
|
|
adeleine = "Adeleine"
|
|
waddle_dee = "Waddle Dee"
|
|
king_dedede = "King Dedede"
|
|
|
|
# Goal Items
|
|
ribbon = "Ribbon"
|
|
crystal = "Crystal Gun"
|
|
ribbons_crystal = "Ribbon's Crystal"
|
|
|
|
# Misc
|
|
crystal_shard = "Crystal Shard"
|
|
one_up = "1-Up"
|
|
maxim_tomato = "Maxim Tomato"
|
|
invincibility_candy = "Invicibility Candy"
|
|
small_star = "Small Star"
|
|
ice_cream = "Ice Cream"
|
|
cake = "Cake"
|
|
sandwich = "Sandwich"
|
|
meat = "Meat"
|
|
|
|
# Event Ability Access
|
|
burn_event = "Burning Ability"
|
|
stone_event = "Stone Ability"
|
|
ice_event = "Ice Ability"
|
|
needle_event = "Needle Ability"
|
|
bomb_event = "Bomb Ability"
|
|
spark_event = "Spark Ability"
|
|
cutter_event = "Cutter Ability"
|