1
Fork 0
mirror of https://github.com/Steffo99/flyingsnake.git synced 2024-10-16 06:27:34 +00:00

Update to Terraria 1.4.4.9

This commit is contained in:
Steffo 2023-03-06 23:57:22 +01:00
parent ef6375e5dd
commit 2ba2136813
Signed by: steffo
GPG key ID: 2A24051445686895
5 changed files with 13097 additions and 262 deletions

View file

@ -191,6 +191,8 @@ def flyingsnake(input_file: str,
color = tuple(colors["Globals"].get("Lava", (0, 0, 0, 0)))
elif tile.liquid.type == le.LiquidType.HONEY:
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:
continue
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
View file

@ -1,41 +1,37 @@
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
[[package]]
category = "main"
description = "Composable command line interface toolkit"
name = "click"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
version = "7.1.2"
[[package]]
description = "Composable command line interface toolkit"
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
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
version = "6.2.2"
[metadata]
content-hash = "3d375081e6efdd313c0d15b4cb8c70e9c7f0b06d5aacc5ea70bbc6a13e973bd2"
python-versions = "^3.6"
[metadata.files]
click = [
files = [
{file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"},
{file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"},
]
lihzahrd = [
{file = "lihzahrd-2.0.0-py3-none-any.whl", hash = "sha256:c3679979b6fea54e253b9528423d4c19ba0a82a7423a675a67363df5f293cd72"},
{file = "lihzahrd-2.0.0.tar.gz", hash = "sha256:33b19e61365ef0c274c3b5a5132e10da8fda92d2ea95095ca237e6e2e65646af"},
[[package]]
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-manylinux1_i686.whl", hash = "sha256:d3a98444a00b4643b22b0685dbf9e0ddcaf4ebfd4ea23f84f228adf5a0765bb2"},
{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.tar.gz", hash = "sha256:db9ff0c251ed066d367f53b64827cc9e18ccea001b986d08c265e53625dab950"},
]
[metadata]
lock-version = "2.0"
python-versions = "^3.6.2"
content-hash = "fc00a554b120c2d0894578cca9b6783347fe93339ccf7bcfbf481e8de5c6c9c3"

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "flyingsnake"
version = "2.0.0a3"
version = "3.0.0"
description = "A Terraria world map renderer"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"
@ -20,9 +20,9 @@
# Library dependencies
[tool.poetry.dependencies]
python = "^3.6"
python = "^3.6.2"
click = "^7.0"
lihzahrd = "^2.0.0"
lihzahrd = "^3.0.1"
"Pillow" = "^6.1.0"
# Development dependencies