File size: 262 Bytes
463f868
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import json

path = "engine/data/cards.json"
with open(path, "r", encoding="utf-8") as f:
    data = json.load(f)

card = data.get("LL-bp1-001-R+")
if card:
    print(json.dumps(card, indent=2, ensure_ascii=False))
else:
    print("Card not found")