Spaces:
Sleeping
Sleeping
Create utils/tarot.py
Browse files- utils/tarot.py +41 -0
utils/tarot.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import random
|
| 2 |
+
|
| 3 |
+
# ๋ฉ์ด์ ์๋ฅด์นด๋ 22์ฅ ๋ฐ์ดํฐ (์ด๋ฆ, ๋ฒํธ, ์ ๋ฐฉํฅ ํค์๋)
|
| 4 |
+
MAJOR_ARCANA = [
|
| 5 |
+
{"name": "The Fool", "id": 0, "desc": "์๋ก์ด ์์, ๋ชจํ, ์์ํจ"},
|
| 6 |
+
{"name": "The Magician", "id": 1, "desc": "์ฐฝ์กฐ๋ ฅ, ๊ธฐ์ , ์์ง"},
|
| 7 |
+
{"name": "The High Priestess", "id": 2, "desc": "์งํ, ์ง๊ด, ์ ๋น"},
|
| 8 |
+
{"name": "The Empress", "id": 3, "desc": "ํ์, ๋ชจ์ฑ, ์์ฐ"},
|
| 9 |
+
{"name": "The Emperor", "id": 4, "desc": "๊ถ์, ๊ตฌ์กฐ, ์๋ฒ์ง"},
|
| 10 |
+
{"name": "The Hierophant", "id": 5, "desc": "์ ํต, ์ ๋
, ๊ต์ก"},
|
| 11 |
+
{"name": "The Lovers", "id": 6, "desc": "์ฌ๋, ์กฐํ, ์ ํ"},
|
| 12 |
+
{"name": "The Chariot", "id": 7, "desc": "์น๋ฆฌ, ์์ง๋ ฅ, ์ ์ง"},
|
| 13 |
+
{"name": "Strength", "id": 8, "desc": "์ธ๋ด, ์ฉ๊ธฐ, ๋ด๋ฉด์ ํ"},
|
| 14 |
+
{"name": "The Hermit", "id": 9, "desc": "์ฑ์ฐฐ, ๊ณ ๋
, ํ๊ตฌ"},
|
| 15 |
+
{"name": "Wheel of Fortune", "id": 10, "desc": "์ด๋ช
, ๋ณํ, ์ฃผ๊ธฐ"},
|
| 16 |
+
{"name": "Justice", "id": 11, "desc": "์ ์, ์ง์ค, ์ธ๊ณผ์๋ณด"},
|
| 17 |
+
{"name": "The Hanged Man", "id": 12, "desc": "ํฌ์, ์๋ก์ด ๊ด์ , ์ ์ง"},
|
| 18 |
+
{"name": "Death", "id": 13, "desc": "๋, ๋ณํ, ์ฌํ์"},
|
| 19 |
+
{"name": "Temperance", "id": 14, "desc": "์ ์ , ๊ท ํ, ์ธ๋ด"},
|
| 20 |
+
{"name": "The Devil", "id": 15, "desc": "์ค๋
, ์๋ฐ, ๋ฌผ์ง์ฃผ์"},
|
| 21 |
+
{"name": "The Tower", "id": 16, "desc": "๊ฐ์์ค๋ฐ ๋ณํ, ๋ถ๊ดด, ๊ณ์"},
|
| 22 |
+
{"name": "The Star", "id": 17, "desc": "ํฌ๋ง, ์๊ฐ, ํ์จ"},
|
| 23 |
+
{"name": "The Moon", "id": 18, "desc": "๋ถ์, ํ์, ๋ฌด์์"},
|
| 24 |
+
{"name": "The Sun", "id": 19, "desc": "์ฑ๊ณต, ํ๋ ฅ, ๊ธฐ์จ"},
|
| 25 |
+
{"name": "Judgement", "id": 20, "desc": "์ฌํ, ๋ถํ, ๊ฐ์ฑ"},
|
| 26 |
+
{"name": "The World", "id": 21, "desc": "์์ฑ, ํตํฉ, ์ฑ์ทจ"}
|
| 27 |
+
]
|
| 28 |
+
|
| 29 |
+
def draw_tarot_cards(count=3):
|
| 30 |
+
"""
|
| 31 |
+
๋ฑ์์ ์ง์ ๋ ์๋งํผ ์นด๋๋ฅผ ๋ฌด์์๋ก ๋ฝ์ต๋๋ค.
|
| 32 |
+
"""
|
| 33 |
+
return random.sample(MAJOR_ARCANA, count)
|
| 34 |
+
|
| 35 |
+
def get_card_image(card_name):
|
| 36 |
+
"""
|
| 37 |
+
(๋์ค์ ๊ตฌํ) ์นด๋ ์ด๋ฆ์ ๋ง๋ ์ด๋ฏธ์ง URL์ ๋ฐํ
|
| 38 |
+
์ผ๋จ์ ํ๋ ์ด์คํ๋ ๋ฆฌํด
|
| 39 |
+
"""
|
| 40 |
+
clean_name = card_name.replace(" ", "+")
|
| 41 |
+
return f"https://placehold.co/200x350/black/white/png?text={clean_name}"
|