mirror of
https://github.com/Steffo99/flyingsnake.git
synced 2024-12-22 06:34:18 +00:00
Update to Terraria 1.4.4.9
This commit is contained in:
parent
ef6375e5dd
commit
2ba2136813
5 changed files with 13097 additions and 262 deletions
|
@ -191,6 +191,8 @@ def flyingsnake(input_file: str,
|
||||||
color = tuple(colors["Globals"].get("Lava", (0, 0, 0, 0)))
|
color = tuple(colors["Globals"].get("Lava", (0, 0, 0, 0)))
|
||||||
elif tile.liquid.type == le.LiquidType.HONEY:
|
elif tile.liquid.type == le.LiquidType.HONEY:
|
||||||
color = tuple(colors["Globals"].get("Honey", (0, 0, 0, 0)))
|
color = tuple(colors["Globals"].get("Honey", (0, 0, 0, 0)))
|
||||||
|
elif tile.liquid.type == le.LiquidType.SHIMMER:
|
||||||
|
color = tuple(colors["Globals"].get("Shimmer", (0, 0, 0, 0)))
|
||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
draw.point((x - min_x, y - min_y), color)
|
draw.point((x - min_x, y - min_y), color)
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
57
poetry.lock
generated
57
poetry.lock
generated
|
@ -1,41 +1,37 @@
|
||||||
|
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
category = "main"
|
|
||||||
description = "Composable command line interface toolkit"
|
|
||||||
name = "click"
|
name = "click"
|
||||||
optional = false
|
|
||||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
||||||
version = "7.1.2"
|
version = "7.1.2"
|
||||||
|
description = "Composable command line interface toolkit"
|
||||||
[[package]]
|
|
||||||
category = "main"
|
category = "main"
|
||||||
description = "A Terraria world parser in Python"
|
|
||||||
name = "lihzahrd"
|
|
||||||
optional = false
|
|
||||||
python-versions = ">=3.6,<4.0"
|
|
||||||
version = "2.0.0"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
category = "main"
|
|
||||||
description = "Python Imaging Library (Fork)"
|
|
||||||
name = "pillow"
|
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
||||||
version = "6.2.2"
|
files = [
|
||||||
|
|
||||||
[metadata]
|
|
||||||
content-hash = "3d375081e6efdd313c0d15b4cb8c70e9c7f0b06d5aacc5ea70bbc6a13e973bd2"
|
|
||||||
python-versions = "^3.6"
|
|
||||||
|
|
||||||
[metadata.files]
|
|
||||||
click = [
|
|
||||||
{file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"},
|
{file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"},
|
||||||
{file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"},
|
{file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"},
|
||||||
]
|
]
|
||||||
lihzahrd = [
|
|
||||||
{file = "lihzahrd-2.0.0-py3-none-any.whl", hash = "sha256:c3679979b6fea54e253b9528423d4c19ba0a82a7423a675a67363df5f293cd72"},
|
[[package]]
|
||||||
{file = "lihzahrd-2.0.0.tar.gz", hash = "sha256:33b19e61365ef0c274c3b5a5132e10da8fda92d2ea95095ca237e6e2e65646af"},
|
name = "lihzahrd"
|
||||||
|
version = "3.0.1"
|
||||||
|
description = "A Terraria world parser in Python"
|
||||||
|
category = "main"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.6.2,<4.0.0"
|
||||||
|
files = [
|
||||||
|
{file = "lihzahrd-3.0.1-py3-none-any.whl", hash = "sha256:27c3e66ec19d9217d39a47e81fdd140eb747be0755e9398c4cb680633d96c315"},
|
||||||
|
{file = "lihzahrd-3.0.1.tar.gz", hash = "sha256:71b8fb730378c999ce8cb5330432c6e80ec7e761e6e840a96a494a2b0e4547ff"},
|
||||||
]
|
]
|
||||||
pillow = [
|
|
||||||
|
[[package]]
|
||||||
|
name = "pillow"
|
||||||
|
version = "6.2.2"
|
||||||
|
description = "Python Imaging Library (Fork)"
|
||||||
|
category = "main"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
||||||
|
files = [
|
||||||
{file = "Pillow-6.2.2-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:834dd023b7f987d6b700ad93dc818098d7eb046bd445e9992b3093c6f9d7a95f"},
|
{file = "Pillow-6.2.2-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:834dd023b7f987d6b700ad93dc818098d7eb046bd445e9992b3093c6f9d7a95f"},
|
||||||
{file = "Pillow-6.2.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:d3a98444a00b4643b22b0685dbf9e0ddcaf4ebfd4ea23f84f228adf5a0765bb2"},
|
{file = "Pillow-6.2.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:d3a98444a00b4643b22b0685dbf9e0ddcaf4ebfd4ea23f84f228adf5a0765bb2"},
|
||||||
{file = "Pillow-6.2.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:2b4a94be53dff02af90760c10a2e3634c3c7703410f38c98154d5ce71fe63d20"},
|
{file = "Pillow-6.2.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:2b4a94be53dff02af90760c10a2e3634c3c7703410f38c98154d5ce71fe63d20"},
|
||||||
|
@ -67,3 +63,8 @@ pillow = [
|
||||||
{file = "Pillow-6.2.2-pp373-pypy36_pp73-win32.whl", hash = "sha256:82859575005408af81b3e9171ae326ff56a69af5439d3fc20e8cb76cd51c8246"},
|
{file = "Pillow-6.2.2-pp373-pypy36_pp73-win32.whl", hash = "sha256:82859575005408af81b3e9171ae326ff56a69af5439d3fc20e8cb76cd51c8246"},
|
||||||
{file = "Pillow-6.2.2.tar.gz", hash = "sha256:db9ff0c251ed066d367f53b64827cc9e18ccea001b986d08c265e53625dab950"},
|
{file = "Pillow-6.2.2.tar.gz", hash = "sha256:db9ff0c251ed066d367f53b64827cc9e18ccea001b986d08c265e53625dab950"},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[metadata]
|
||||||
|
lock-version = "2.0"
|
||||||
|
python-versions = "^3.6.2"
|
||||||
|
content-hash = "fc00a554b120c2d0894578cca9b6783347fe93339ccf7bcfbf481e8de5c6c9c3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "flyingsnake"
|
name = "flyingsnake"
|
||||||
version = "2.0.0a3"
|
version = "3.0.0"
|
||||||
description = "A Terraria world map renderer"
|
description = "A Terraria world map renderer"
|
||||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||||
license = "AGPL-3.0+"
|
license = "AGPL-3.0+"
|
||||||
|
@ -20,9 +20,9 @@
|
||||||
|
|
||||||
# Library dependencies
|
# Library dependencies
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.6"
|
python = "^3.6.2"
|
||||||
click = "^7.0"
|
click = "^7.0"
|
||||||
lihzahrd = "^2.0.0"
|
lihzahrd = "^3.0.1"
|
||||||
"Pillow" = "^6.1.0"
|
"Pillow" = "^6.1.0"
|
||||||
|
|
||||||
# Development dependencies
|
# Development dependencies
|
||||||
|
|
Loading…
Reference in a new issue